﻿/* 🔥 SAYFA FRAME */
.page-wrapper {
    padding: 30px;
    height: 100vh;
}

/* 🔥 TEK PARÇA GÖRÜNÜM */
.hero {
    position: relative;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    /* Gradient arka plan */
}


    .hero video {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 25px;
        overflow: hidden;
        object-fit: cover;
    }

/* HERO CONTENT */
.content {
    position: absolute;
    left: 40px;
    bottom: 120px;
    color: white;
}

/* 🖱️ MOUSE ANİMASYON */
.mouse {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
}

    .mouse::after {
        content: "";
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 8px;
        background: white;
        border-radius: 2px;
        animation: scroll 1.5s infinite;
    }

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 10px);
    }
}










/* --- HERO VIDEO START --- */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.thumbnailPc, .thumbnailMobile,
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.thumbnailMobile {
    display: none;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.circle {
    position: absolute;
    width: 85px;
    height: 85px;
    border: 2px solid #ccc;
    border-radius: 50%;
    /* top: -30px; */
    /* left: -30px; */
}

/* --- HERO VIDEO END --- */










/* --- ZONE START --- */
.hero .navbarZone {
    background-image: radial-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1px);
    background-size: 24px 24px;
    position: absolute;
    content: '';
    height: 100px;
    background-color: var(--dark);
    width: 50%;
    top: 0;
    left: 0;
    border-bottom-right-radius: 24px;
    z-index: 1;
}

    .hero .navbarZone::before,
    .hero .navbarZone::after {
        position: absolute;
        content: '';
        width: 24px;
        aspect-ratio: 1;
        background: radial-gradient(circle 24px at bottom right, transparent 98%, var(--dark)) bottom right;
    }

    .hero .navbarZone:before {
        top: 0;
        right: -24px;
    }

    .hero .navbarZone:after {
        left: 0;
        bottom: -24px;
    }





.hero .mauseZone {
    background-image: radial-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1px);
    background-size: 24px 24px;
    position: absolute;
    content: '';
    height: 100px;
    background-color: var(--dark);
    width: 10%;
    bottom: 0;
    right: 0;
    border-top-left-radius: 24px;
    z-index: 1;
}

    .hero .mauseZone::before,
    .hero .mauseZone::after {
        position: absolute;
        content: '';
        width: 24px;
        aspect-ratio: 1;
        background: radial-gradient(circle 24px at top left, transparent 98%, var(--dark)) top left;
    }

    .hero .mauseZone:before {
        bottom: 0;
        left: -24px;
    }

    .hero .mauseZone:after {
        right: 0;
        top: -24px;
    }
/* --- ZONE END --- */










/* --- MOBİLE START --- */
@media all and (max-width: 800px) and (min-width: 50px) {
    .thumbnailMobile {
        display: block;
    }

    .thumbnailPc {
        display: none;
    }

    .navbar {
        justify-content: space-between;
    }
    .page-wrapper{
        padding: 0;
    }
}
