/* Genel Sayfa Stili */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e0f7fa; /* Açık Mavi Arka Plan */
    color: #333;
    overflow: hidden;
}

/* Arka Plan Videosu */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

/* Hero İçeriği */
.hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 100px 20px;
}

.logo {
    width: 350px; /* Logoyu büyüttük */
    margin-bottom: 20px;
}

/* İletişim Bilgileri */
.phone, .address, .btn {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    color: white;
    text-decoration: none;
}

.btn {
    display: inline-block;
    background-color: #0277bd;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
}

.btn:hover {
    background-color: #01579b;
}
