.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -5px;
    margin-bottom: 0; /* ensure no gap below hero */
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw; /* 110vw'den 120vw'ye */
    height: 150vh; /* 130vh'den 150vh'ye */
    transform: translate(-50%, -42%) scale(1.4); /* 1.3'ten 1.4'e */
    object-fit: cover;
    z-index: 1;
    border: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-style: italic;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        height: 65vh; /* header/top-bar telafi */
    }

    .hero-video {
        width: 180vw; /* 160vw'den 180vw'ye */
        height: 190vh; /* 170vh'den 190vh'ye */
        top: 50%;
        transform: translate(-50%, -50%) scale(1.5); /* 1.3'ten 1.5'e */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 55vh; /* header/top-bar telafi */
    }

    .hero-video {
        width: 250vw; /* 220vw'den 250vw'ye */
        height: 260vh; /* 230vh'den 260vh'ye */
        top: 50%;
        transform: translate(-50%, -50%) scale(1.6); /* 1.4'ten 1.6'ya */
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}