/* Genel Sayfa Stili */
body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: relative;
}

/* Video Arka Planı */
#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Açılış Overlay (Kararma Efekti) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    animation: fadeOut 4s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* İçerik Kutusu */
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    opacity: 0;
    animation: fadeIn 3s 4s forwards;
    position: relative;
    z-index: 1;
    padding: 20px; /* Üstten ve alttan boşluk ekleyelim */
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Aslan Görseli */
.aslan {
    width: auto; /* Genişliği otomatik ayarla */
    max-width: 95vw; /* Maksimum genişlik */
    height: 80vh;
    max-height: 95vh; /* Maksimum yükseklik */
    filter: contrast(1.4) brightness(0.7);
}

/* Slogan */
.slogan {
    font-size: 2em;
    margin-top: 20px;
    opacity: 0;
    animation: fadeInText 2.5s 5s forwards;
}

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}

/* Buton */
.footer {
    position: fixed;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.contact-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #ffcc00;
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    border-radius: 10px;
    opacity: 0;
    animation: fadeInButton 2s 6s forwards;
    transition: transform 0.3s ease;
}

.contact-button:hover {
    transform: scale(1.1);
}

@keyframes fadeInButton {
    to {
        opacity: 1;
    }
}

/* Laptop ve daha büyük ekranlar için düzenlemeler */
@media (min-width: 769px) and (max-width: 1024px) {
    .content {
        padding: 40px; /* Laptop ekranlarında daha fazla boşluk */
    }

    .aslan {
        max-width: 80vw; /* Laptop ekranlarında daha büyük görünmesi için */
        max-height: 60vh;
    }

    .slogan {
        font-size: 1.8em;
    }
}

/* Mobilde Responsive Düzenlemeler */
@media (max-width: 768px) {
    .aslan {
        max-width: 100vw; /* Mobilde daha büyük görünmesi için genişliği artırdık */
        max-height: 60vh; /* Yüksekliği azalttık */
    }

    .slogan {
        font-size: 1.5em;
    }

    .contact-button {
        font-size: 1em;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .aslan {
        max-width: 100vw; /* Çok küçük ekranlarda tam genişlik */
        max-height: 50vh; /* Yüksekliği daha da azalttık */
    }

    .slogan {
        font-size: 1.2em;
    }

    .contact-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}