@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satoshi:wght@400;500;700&display=swap');

:root {
    --primary-color: #ffffff;
    --secondary-color: #a0a0a0;
    --bg-dark: #0D1117;
    --bg-section: #050505;
    --border-color: rgba(255, 255, 255, 0.1);
    --main-font: 'Satoshi', Arial, sans-serif;
    --heading-font: 'Space Grotesk', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--main-font);
}

html, body {
    height: 100%;
    overflow-x: hidden;
    font-family: var(--main-font);
}

html {
    scroll-behavior: smooth;
    /* scroll-snap-type: y mandatory; */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: #0D1117;
    color: #fff;
    cursor: none;
    line-height: 1.6;
    min-height: 100dvh;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease-out;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.2s ease-out;
    transform: translate(-50%, -50%);
}

.cursor.hover {
    transform: scale(3) translate(-15%, -15%);
}

.cursor-follower.hover {
    transform: scale(1.4) translate(-35%, -35%);
    border-color: var(--primary-color);
}


/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    background: transparent;
    transition: background 0.3s ease;
}

.nav.scrolled {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}

.nav-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    margin-top: 5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    margin-left: 3rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-slogan {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.nav-menu-btn {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.nav-menu-btn span {
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100dvh;
    min-height: 100dvh;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-main-image, .hero-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('slider1.jpg');
    background-size: cover;
    background-position: center;
}

.hero-main-image {
    z-index: 1;
    filter: grayscale(0.5) brightness(0.6);
}

.hero-reflection {
    z-index: 0;
    transform: scaleY(-1);
    top: 55%;
    filter: blur(5px) brightness(0.3);
    opacity: 0.5;
}

.hero.active .hero-main-image {
    transform: scale(1);
}

.hero-content {
    z-index: 2;
    text-align: center;
    margin-top: 80px; /* nav yüksekliği kadar boşluk bırak */
}

.hero-logo {
    max-width: 30%;
    height: auto;
    max-height: 90vh;
    margin-top: 15rem;
}

.artist-name {
    font-size: clamp(4rem, 20vw, 18rem);
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
    mix-blend-mode: overlay;
    text-shadow: 0 0 100px rgba(0,0,0,0.5);
}

.hero-scroll-down {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
}
.scroll-down-btn:hover, .scroll-down-btn:focus {
    opacity: 1;
    transform: translateY(4px) scale(1.08);
}
.scroll-down-btn svg {
    display: block;
    stroke: #fff;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
}

.hero-social-left, .hero-social-right {
    position: absolute;
    bottom: 2rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-social-left {
    left: 15rem;
}

.hero-social-right {
    right: 15rem;
}

.social-icon {
    color: var(--primary-color);
    font-size: 1rem;
    margin: 0 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.copyright, .website-by {
    font-size: 0.7rem;
    color: var(--secondary-color);
    margin-left: 0;
    text-align: center;
    opacity: 0.7;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.mouse span {
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* Section Base */
.section {
    /* scroll-snap-align: start; */
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 100dvh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    line-height: 1;
}

/* .section > * {
    max-height: 100%;
    overflow: auto;
} */

/* Tour Section */
.tour-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-list {
    border-top: 1px solid var(--border-color);
}

.tour-item {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.tour-item:hover {
    background-color: rgba(255,255,255,0.03);
}

.tour-date, .tour-event, .tour-location {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: normal;
}

.tour-event {
    font-weight: 700;
    color: var(--primary-color);
}

.tour-location {
    color: var(--secondary-color);
}

.tour-links {
    display: flex;
    gap: 1rem;
    justify-self: end;
}

.tour-rsvp, .tour-ticket {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.tour-ticket {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.tour-ticket:hover {
    background: transparent;
    color: var(--primary-color);
}

.tour-rsvp:hover {
     background: var(--primary-color);
    color: var(--bg-dark);
}

.see-all-btn {
    display: block;
    width: fit-content;
    margin: 3rem auto 0;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.see-all-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Music Section */
.music {
    position: relative;
    height: auto;
    min-height: auto;
    justify-content: flex-start;
    padding: 150px 0 100px;
}
.music-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.music-content {
    position: relative;
    z-index: 1;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    flex: 1 1 auto;
    overflow-y: auto;
    max-height: 100%;
}

.spotify-embed {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0 20px;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.release-item {
    background: #10131a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.release-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.release-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

.release-info {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.release-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.release-artist {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.listen-now-btn {
    display: inline-block;
    text-decoration: none;
    color: var(--bg-dark);
    background: var(--primary-color);
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    margin-top: auto;
}

.listen-now-btn:hover {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: calc(0.7rem - 1px) calc(1.5rem - 1px);
}

.music-item {
    text-align: center;
}

.music-cover {
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.music-item:hover .music-cover {
    transform: scale(1.05);
}

.music-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.music-item p {
    color: var(--secondary-color);
    line-height: normal;
}

/* Videos Section */
.videos-title {
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #bfc3c7;
    text-align: center;
    margin-bottom: 0.5rem;
    margin-top: 0;
    line-height: 1;
}
.videos-center-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
}
.video-main-item {
    position: relative;
    width: 90vw;
    max-width: 1100px;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0.15em 0.9em;
    cursor: pointer;
    letter-spacing: 0.12em;
    transition: transform 0.18s cubic-bezier(.4,0,.2,1), color 0.2s;
    z-index: 2;
    opacity: 0.85;
    box-shadow: none;
}
.video-play-btn:hover {
    color: #fff;
    background: none;
    transform: translate(-50%, -50%) scale(1.18);
}
.video-info {
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.0) 100%);
    padding: 2rem 0 1.2rem 0;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
}
.video-title-main {
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #dbe6ea;
    font-size: 1.3em;
}
.video-info h4 {
    color: #bfc3c7;
    font-size: 1.2em;
    font-weight: 700;
    margin: 0;
}
.video-next-btn {
    background: none;
    border: none;
    color: #bfc3c7;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5em;
    transition: color 0.2s;
    margin-left: 1.5rem;
}
.video-next-btn:hover {
    color: #0ff;
}
@media (max-width: 900px) {
    .videos-center-box {
        flex-direction: column;
        gap: 1.5rem;
    }
    .video-main-item {
        width: 98vw;
        max-width: 100vw;
        border-radius: 12px;
    }
    .video-next-btn {
        margin-left: 0;
        align-self: flex-end;
    }
    .releases-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding: 1rem;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .releases-grid::-webkit-scrollbar {
        display: none;
    }
    .release-item {
        flex: 0 0 45%;
    }
    .release-info {
        padding: 1rem;
    }
    .release-title {
        font-size: 1rem;
    }
    .release-artist {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    .listen-now-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }
}

/* About Section */
.about {
    height: auto;
    min-height: auto;
    padding: 120px 0;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text .section-title {
    text-align: left;
}

.about-text p {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 50ch;
    line-height: 1.6;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 2px solid var(--primary-color);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}

.booking-btn .btn-text {
    z-index: 2;
}

.booking-btn .btn-icon {
    z-index: 2;
    transition: transform 0.3s ease;
}

.booking-btn:hover {
    color: var(--primary-color);
}

.booking-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-section);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    z-index: 1;
}

.booking-btn:hover::before {
    transform: translateX(0);
}

.booking-btn.copied {
    background-color: #28a745; /* Yeşil renk */
    border-color: #28a745;
    color: var(--primary-color);
}

.booking-btn.copied .btn-text {
    animation: fadeOut 0.3s forwards;
}

.booking-btn.copied .btn-icon {
    display: none;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.about-image {
    width: 100%;
    border-radius: 15px;
    height: 70vh;
    background-size: cover;
    background-position: center;
}

/* Çift scroll fix */
.music-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-slogan {
        display: none;
    }
    .tour-content {
        padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        margin-top: 1.5rem;
        text-align: center;
        display: block;
        opacity: 1;
    }
    .tour-list {
        border-top: none;
        margin-top: 0;
    }
    .tour-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.7rem;
        padding: 1.1rem 0.2rem;
        font-size: 0.98rem;
        border-bottom: 1px solid var(--border-color);
    }
    .tour-date, .tour-event, .tour-location {
        font-size: 0.98rem;
        display: block;
        margin-bottom: 0.2rem;
    }
    .tour-links {
        justify-self: center;
        gap: 0.5rem;
    }
    .see-all-btn {
        margin: 2rem auto 0;
        font-size: 0.95rem;
        padding: 0.7rem 1.5rem;
    }
    .nav-content {
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }
    .logo {
        margin-left: 0;
    }
    .nav-menu-btn {
        margin-right: 0;
    }
    .hero-social-left, .hero-social-right, .footer-social {
        gap: 1.2rem;
    }
    .social-icon {
        font-size: 1.25rem;
        margin: 0 0.5rem;
    }
    .hero-logo {
        margin-top: 48vh;
        max-width: 60vw;
        max-height: 22vh;
    }
    .releases-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding: 1rem;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .releases-grid::-webkit-scrollbar {
        display: none;
    }
    .release-item {
        flex: 0 0 60%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }

    .about-text {
        text-align: center;
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-image {
        height: 50vh;
        order: 2; /* Ensure image is second on mobile */
    }

    .banner-zoom-section {
        display: none !important;
    }

    .music {
        padding-bottom: 5rem;
    }

    .videos {
        padding-top: 5rem;
    }
}

@media (max-width: 600px) {
    .section {
        /* padding: 6rem 1.5rem; */
        height: auto;
        min-height: 100vh;
        padding: 100px 1.5rem;
    }
    .hero {
        min-height: 100vh;
        padding-top: 0;
        padding-bottom: 0;
    }
    .artist-name {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
        margin-top: 1.2rem;
    }
    .hero-logo {
        margin-top: 35vh;
        max-width: 75vw;
        max-height: 18vh;
    }
    .hero-content .nav-slogan {
        font-size: 1rem;
        margin-top: 0.7rem;
    }
    .hero-social-left, .hero-social-right {
        bottom: 1rem;
    }
    .hero-social-left {
        left: 1rem;
    }
    .hero-social-right {
        right: 1rem;
    }
    .copyright, .website-by {
        display: none;
    }
    .tour-content {
        padding: 1.2rem 0.2rem 1rem 0.2rem;
    }
    .tour-item {
        padding: 0.7rem 0.1rem;
        font-size: 0.93rem;
    }
    .tour-date, .tour-event, .tour-location {
        font-size: 0.93rem;
    }
    .nav-content {
        padding-left: 0;
        padding-right: 0;
    }
    .logo-img {
        height: 28px;
    }
    .social-icon {
        font-size: 1.25rem;
        margin: 0 0.5rem;
    }
    .release-item {
        flex: 0 0 70%;
    }
}

/* Mobilde mouse cursor efektlerini gizle */
@media (hover: none) and (pointer: coarse) {
    .cursor, .cursor-follower {
        display: none !important;
    }
}

/* Hero açılış animasyonu */
.hero-content, .hero-logo, .hero .nav-slogan {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.hero.active .hero-content, .hero.active .hero-logo, .hero.active .nav-slogan {
    opacity: 1;
    transform: translateY(0) scale(1);
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 12, 18, 0.98);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
}
.fullscreen-menu.active {
    opacity: 1;
    pointer-events: auto;
}
.fullscreen-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}
.fullscreen-menu li {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.fullscreen-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    opacity: 0.85;
}
.fullscreen-menu a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

/* Menü açıkken arka plan scroll kapalı */
body.menu-open {
    overflow: hidden;
}

.menu-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.menu-close-btn:hover {
    opacity: 1;
}
@media (max-width: 600px) {
    .fullscreen-menu ul {
        gap: 1.5rem;
    }
    .fullscreen-menu li {
        font-size: 1.3rem;
    }
    .menu-close-btn {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }
}

.site-footer {
    width: 100%;
    background: #10131a;
    color: #bfc3c7;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 2.5rem 5vw 1.2rem 5vw;
    position: relative;
    z-index: 10;
    min-height: 90px;
    font-size: 1rem;
    box-sizing: border-box;
}
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.footer-social-left {
    align-items: flex-start;
}
.footer-social-right {
    align-items: flex-end;
}
.footer-center-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    font-size: 1.1rem;
    color: #bfc3c7;
    opacity: 0.7;
    text-align: center;
}
@media (max-width: 900px) {
    .site-footer {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 2vw 1rem 2vw;
    }
    .footer-social-left, .footer-social-right {
        align-items: center;
    }
    .footer-center-text {
        margin: 0.5rem 0;
    }
}

.video-iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
}

h1, h2, h3, h4, h5, h6, .section-title {
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: 0.05em;
}

p, li, a, span, div, input, textarea, button {
    font-family: var(--main-font);
}

.banner-zoom-section {
    width: 100vw;
    min-height: 60vh;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.banner-zoom-img {
    width: 100vw;
    height: 100%;
    max-width: 100vw;
    background: url('Banner2.jpg') center center/cover no-repeat;
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
    transform: scale(0.5);
    opacity: 0.5;
    will-change: transform, opacity;
}
@media (max-width: 900px) {
    .banner-zoom-section {
        min-height: 22vh;
        height: 22vh;
    }
    .banner-zoom-img {
        border-radius: 10px;
    }
}