/* =========================
   ROOT VARIABLES (60-30-10)
========================= */
:root {
    --primary-light: #e8d1a7;
    /* 60% */
    --primary-mid: #966743;
    /* 30% */
    --primary-dark: #542e1a;
    /* 10% */

    --white: #ffffff;
    --black: #000000;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-light);
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   HEADER (GLASS EFFECT)
========================= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    will-change: backdrop-filter;
    transform: translateZ(0);

    box-shadow: 0 8px 25px rgba(22, 102, 186, 0.08);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

/* LOGO */
.logo h2 {
    color: var(--primary-dark);
    letter-spacing: 1px;
    position: relative;
}

/* subtle glow */
.logo h2::after {
    content: "";
    position: absolute;
    width: 40%;
    height: 6px;
    background: var(--primary-mid);
    left: 0;
    bottom: -8px;
    border-radius: 10px;
    filter: blur(6px);
}

/* =========================
   NAV LINKS (PREMIUM HOVER)
========================= */
.nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: 0.3s;
}

/* GLOW LINE */
.nav a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -6px;
    left: 50%;
    background: linear-gradient(90deg,
            var(--primary-mid),
            var(--primary-dark));
    transition: 0.4s;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* HOVER EFFECT */
.nav a:hover {
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.nav a:hover::before {
    width: 100%;
}

/* ACTIVE LINK */
.nav a.active {
    color: var(--primary-dark);
}

.nav a.active::before {
    width: 100%;
}

/* =========================
   BOOK BUTTON (LUXURY SHINE)
========================= */
.book-btn {
    position: relative;
    background: linear-gradient(135deg,
            var(--primary-dark),
            var(--primary-mid));
    color: var(--white);
    border: none;
    padding: 12px 22px;
    border-radius: 30px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s;
}

/* shine animation */
.book-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-25deg);
}

.book-btn:hover::before {
    animation: shine 0.7s forwards;
}

@keyframes shine {
    100% {
        left: 150%;
    }
}

.book-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 25px rgba(22, 102, 186, 0.3);
}

/* RIGHT SIDE */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* =========================
   HAMBURGER (ANIMATED)
========================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 5px;
    transition: 0.3s;
}

/* animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================
   MOBILE MENU
========================= */
@media (max-width: 768px) {

    .nav {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        transition: 0.4s ease;
    }

    .nav ul {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }

    .nav.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .book-btn {
        display: none;
    }
}


/* ======================================
   LOGO IMAGE
====================================== */

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Tablet */

@media (min-width:900px) {

    .logo img {
        height: 80px;
    }

}

/* Mobile */

@media (max-width:768px) {

    .logo img {
        height: 60px;
    }

}

/* Small Mobile */

@media (max-width:480px) {

    .logo img {
        height: 55px;
    }

}


/* =========================
   HERO (CINEMATIC STYLE)
========================= */


.hero-main {
    background: var(--primary-dark);
    color: var(--primary-light);
    font-family: 'Roboto', sans-serif;
}

/* HEADING */
.hero-heading {
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(-2000px);
    text-align: center;

    font-size: clamp(20px, 4vw, 55px);
    line-height: 1.3;
    opacity: 0.1;
    white-space: normal;
    width: 95vw;
}

.hero-heading {
    text-shadow: 0 0 20px rgba(122, 179, 239, 0.4);
}

/* CONTAINER */
.hero-zoom-container {
    height: 100vh;
    overflow: hidden;
    position: relative;
    perspective: 100vh;
}

/* ITEMS */
.hero-zoom-item {
    position: absolute;
    transform-origin: center;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-zoom-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* LAYERS */
.hero-zoom-item[data-layer="3"] {
    opacity: 0.6;
    z-index: 3;
}

.hero-zoom-item[data-layer="2"] {
    opacity: 0.4;
    z-index: 2;
}

.hero-zoom-item[data-layer="1"] {
    opacity: 0.2;
    z-index: 1;
}

/* SAME POSITIONS (IMPORTANT FOR ANIMATION) */
.hero-zoom-item:nth-child(2) {
    left: 15vw;
    top: 21%;
    width: 11vw;
}

.hero-zoom-item:nth-child(3) {
    left: 29%;
    top: 15%;
    width: 9vw;
}

.hero-zoom-item:nth-child(4) {
    left: 36%;
    top: 3%;
    width: 11vw;
}

.hero-zoom-item:nth-child(5) {
    right: 30%;
    top: 11%;
    width: 7vw;
}

.hero-zoom-item:nth-child(6) {
    right: 7%;
    top: 28%;
    width: 13vw;
}

.hero-zoom-item:nth-child(7) {
    right: 3%;
    bottom: 32%;
    width: 5vw;
}

.hero-zoom-item:nth-child(8) {
    left: 16%;
    bottom: 13%;
    width: 10vw;
}

.hero-zoom-item:nth-child(9) {
    left: 29%;
    bottom: 24%;
    width: 6vw;
}

.hero-zoom-item:nth-child(10) {
    left: 7%;
    bottom: 46%;
    width: 5vw;
}

.hero-zoom-item:nth-child(11) {
    right: 15%;
    bottom: 5%;
    width: 15vw;
}

.hero-zoom-item:nth-child(12) {
    right: 38%;
    bottom: 10%;
    width: 8vw;
}

.hero-zoom-item:nth-child(13) {
    right: 4%;
    top: 5%;
    width: 6vw;
}

/* SECOND SECTION */

.hero-section-stick {
    background-color: var(--primary-mid) !important;
    color: var(--primary-dark) !important;
    font-family: 'Playfair Display', serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;
}

/* ✨ BACKGROUND IMAGE STYLE */
.hero-section-stick {
    font-family: 'Playfair Display', serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;
}

/* 🔥 FULL WIDTH BACKGROUND IMAGE */
.hero-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 120%;
    /* slightly bigger for better coverage */
    max-width: none;

    transform: translate(-50%, -50%) translateZ(0);
    will-change: transform;
    opacity: 0.07;

    object-fit: contain;

    pointer-events: none;
    z-index: 0;
}

/* TEXT */
.hero-opacity-text {
    width: 60%;
    text-align: center;
    font-size: clamp(20px, 3vw, 40px);

    position: relative;
    z-index: 1;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .hero-opacity-text {
        width: 90%;
    }

    .hero-bg-image {
        width: 180%;
        /* bigger for mobile coverage */
        opacity: 0.05;
    }
}


/* =========================
   SERVICES SECTION
========================= */
.services {
    padding: 100px 0;
    background: var(--primary-light);
}

/* HEADER */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: auto;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* =========================
   CARDS GRID
========================= */
.cards {
    display: grid;
    gap: 20px;
}

@media (min-width: 600px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =========================
   CARD
========================= */

/* =========================
   CARD (FINAL OPTIMIZED)
========================= */
.card {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    cursor: pointer;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    /* 🔥 PERFORMANCE BOOST */
    transform: translateZ(0);
}

/* IMAGE */
.card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.4s ease;
}

/* DARK GRADIENT */
.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.2),
            transparent);
    z-index: 1;
    transition: 0.3s;
}

/* COLOR OVERLAY */
.color-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(122, 179, 239, 0.6),
            rgba(22, 102, 186, 0.7));
    opacity: 0;
    transition: 0.3s;
    z-index: 2;
}

/* SHINE EFFECT */
.shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-150%) skewX(-25deg);
    z-index: 3;
}

/* CONTENT */
.content {
    position: relative;
    z-index: 4;
    padding: 20px;
    width: 100%;

    transform: translateY(60%);
    transition: transform 0.35s ease;
}

/* TEXT */
.title {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.copy {
    color: #eee;
    font-size: 14px;
    margin-top: 10px;
    opacity: 0;
    transition: 0.3s;
}

/* BUTTON */
.btn {
    margin-top: 15px;
    padding: 8px 18px;
    border: none;
    border-radius: 20px;
    background: white;
    color: var(--primary-dark);
    cursor: pointer;
    font-weight: 500;

    opacity: 0;
    transition: 0.3s;
}

/* =========================
   🔥 HOVER EFFECTS
========================= */

/* image zoom */
.card:hover img {
    transform: scale(1.12);
}

/* overlay glow */
.card:hover .color-overlay {
    opacity: 1;
}

/* shimmer */
.card:hover .shine {
    animation: shineMove 0.7s forwards;
}

@keyframes shineMove {
    100% {
        transform: translateX(250%) skewX(-25deg);
    }
}

/* content reveal */
.card:hover .content {
    transform: translateY(0);
}

.card:hover .copy,
.card:hover .btn {
    opacity: 1;
}

/* glow shadow */
.card:hover {
    box-shadow:
        0 15px 40px rgba(22, 102, 186, 0.3),
        0 0 20px rgba(122, 179, 239, 0.4);
}

/* =========================
   VIEW ALL BUTTON
========================= */
.view-all {
    text-align: center;
    margin-top: 50px;
}

.view-btn {
    background: linear-gradient(135deg,
            var(--primary-dark),
            var(--primary-mid));
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.view-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(22, 102, 186, 0.3);
}



/* scroll animation starts here index page  */

.mk-container {
    max-width: 1440px;
    padding: 2rem;
    margin: auto;
}

.mk-spacer {
    height: 30vh;
}

.mk-arch {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1100px;
    margin: auto;
}

/* LEFT */
.mk-left {
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.mk-info {
    height: 100vh;
    display: grid;
    place-items: center;
    max-width: 360px;
}

/* TEXT */
.mk-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--primary-dark);
}

.mk-content p {
    margin: 10px 0 25px;
    color: #333;
}

.mk-btn {
    background: var(--primary-dark);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
}

/* RIGHT */
.mk-right {
    position: relative;
    width: 100%;
    max-width: 540px;
    height: 100vh;
}

.mk-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateZ(0);
    /* Add hardware accel */
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    will-change: transform;
}

.mk-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: clip-path;
    transform: translateZ(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mk-arch {
        flex-direction: column;
    }

    .mk-left,
    .mk-right {
        display: contents;
    }

    .mk-img {
        position: static;
        transform: none;
        height: 300px;
        margin-bottom: 20px;
    }

    .mk-info {
        height: auto;
        padding: 20px 0;
    }
}


/* ==========================================================================
   Testimonial Section
   ========================================================================== */
.testimonial-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden; 
    padding: 20px 0;
}

.testi-track {
    display: flex;
    width: 100%;
}

.testi-card {
    flex: 0 0 100%;
    background: var(--primary-light);
    border-radius: 20px;
    padding: 50px 60px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(22, 102, 186, 0.05);
    opacity: 0;
    transform: scale(0.9);
}

.testi-quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--primary-mid);
    line-height: 0.5;
    margin-bottom: 20px;
}

.testi-stars {
    margin-bottom: 20px;
}

.testi-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.6;
    color: var(--primary-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testi-name {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
}

.testi-role {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Controls */
.testi-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.testi-btn {
    background: transparent;
    border: 1px solid var(--primary-mid);
    color: var(--primary-dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testi-btn:hover {
    background: var(--primary-mid);
    color: var(--white);
    transform: translateY(-3px);
}

.testi-dots {
    display: flex;
    gap: 10px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: 0.3s ease;
}

.testi-dot.active {
    background: var(--primary-dark);
    transform: scale(1.3);
}

@media (max-width: 600px) {
    .testi-card {
        padding: 40px 25px;
    }
    .testi-text {
        font-size: 18px;
    }
}

/* ==========================================================================
   Impact Stats Section
   ========================================================================== */
.stats-section {
    position: relative;
    padding: 6rem 0;
    /* Appetizing dark background with a fixed image overlay for a parallax-like feel */
    background: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=600&q=80') center center / cover no-repeat fixed;
    color: #fff;
    text-align: center;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Warm, dark gradient overlay to ensure perfect text contrast */
    /* background: linear-gradient(135deg, rgba(84, 46, 26, 0.95) 0%, rgba(127, 76, 36, 0.85) 100%); */
    background: linear-gradient(135deg,
            rgba(84, 46, 26, 0.5) 0%,
            /* primary-dark */
            rgba(127, 76, 36, 0.85) 100%
            /* primary-mid */
        );
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    /* Keep above overlay */
}

.stat-card {
    padding: 2rem;
    border-right: 1px solid rgba(232, 209, 167, 0.2);
}

.stat-card:last-child {
    border-right: none;
}

.stat-number-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-family: var(--font-heading);
    color: var(--color-primary-60);
    /* Gold/cream pop */
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
}

.stat-suffix {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    margin-left: 0.1rem;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(232, 209, 167, 0.2);
    }

    .stat-card:nth-child(even) {
        border-right: none;
    }

    .stat-card:nth-child(odd) {
        border-right: 1px solid rgba(232, 209, 167, 0.2);
    }

    .stat-card:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(232, 209, 167, 0.2) !important;
    }

    .stat-card:last-child {
        border-bottom: none !important;
    }
}

/* =========================
   Footer
========================= */


.lux-footer {
    background: var(--primary-dark);
    padding: 80px 0 30px;
    color: #fff;
}

/* ✅ 80% WIDTH CENTERED */
.lux-footer-container {
    width: 80%;
    margin: auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

/* BRAND */
.lux-footer-brand h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 34px;
}

.lux-footer-brand p {
    margin-top: 12px;
    color: var(--primary-light);
    line-height: 1.6;
}

/* LINKS */
.lux-footer-links h4,
.lux-footer-contact h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.lux-footer-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
    position: relative;
}

/* ✨ UNDERLINE ANIMATION */
.lux-footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: var(--primary-mid);
    transition: 0.3s;
}

.lux-footer-links a:hover::after {
    width: 100%;
}

.lux-footer-links a:hover {
    color: var(--primary-light);
}

/* CONTACT */
.lux-footer-contact p {
    margin-bottom: 8px;
    color: var(--primary-light);
}

/* SOCIAL */
.lux-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.lux-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-light);
    cursor: pointer;
    transition: 0.3s;
}

/* 💎 CLEAN HOVER */
.lux-social a:hover {
    background: var(--primary-mid);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* BOTTOM */
.lux-footer-bottom {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* 📱 RESPONSIVE */
@media (max-width: 900px) {
    .lux-footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .lux-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        width: 90%;
    }

    .lux-social {
        justify-content: center;
    }
}

/* ==========================================================
   ABOUT PAGE - ARTIST BIO
========================================================== */
.about-main {
    background: var(--white);
}

.artist-bio {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bio-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(22, 102, 186, 0.15);
    transform: translateZ(0);
    /* Hardware accel */
    will-change: transform;
}

.bio-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transform: scale(1.1);
    transition: transform 0.8s ease;
}

.bio-img-wrapper:hover .bio-img {
    transform: scale(1);
}

/* A soft sweeping overlay for the initial entrance */
.bio-img-overlay {
    position: absolute;
    inset: 0;
    background: var(--primary-light);
    transform-origin: left;
    z-index: 2;
}

.bio-text {
    padding-right: 20px;
}

.bio-subtitle {
    color: var(--primary-mid);
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
}

.bio-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
}

.bio-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.bio-signature {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-style: italic;
    color: var(--primary-mid);
    margin-top: 30px;
    opacity: 0;
}


/* ==========================================================
   ABOUT PAGE - MASONRY WORK GALLERY
========================================================== */
.artist-work {
    padding: 80px 0 120px;
    background: var(--primary-light);
}

.work-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.work-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.work-header p {
    color: #666;
}

.masonry-grid {
    column-count: 3;
    column-gap: 25px;
}

.work-item {
    break-inside: avoid;
    margin-bottom: 25px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #000;

    /* Hardware acceleration */
    transform: translateZ(0);
    will-change: transform;
    opacity: 0;
    /* For GSAP entrance */
    transform: translateY(40px);
}

.work-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
    will-change: transform;
}

.work-item:hover .work-img {
    transform: scale(1.08);
}

/* Bottom gradient indicating title */
.work-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    z-index: 1;
    pointer-events: none;
    transition: 0.4s;
}

.work-item:hover::after {
    opacity: 0;
}

.work-glass-bg {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(22, 102, 186, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-item:hover .work-glass-bg {
    opacity: 1;
}

.work-info {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 25px;
    pointer-events: none;
}

.work-title {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 0px;
    transition: 0.4s ease;
}

.work-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: 0.4s ease;
}

.work-item:hover .work-title {
    margin-bottom: 10px;
}

.work-item:hover .work-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

/* MASONRY RESPONSIVE */
@media (max-width: 900px) {
    .masonry-grid {
        column-count: 2;
    }

    .bio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        column-count: 1;
    }

    .bio-text {
        padding-right: 0;
    }

    .bio-title {
        font-size: 36px;
    }
}

/* ==========================================================
   SERVICES PAGE - 3D DECK
========================================================== */
.services-main {
    background: var(--primary-light);
    color: var(--black);
}

.services-intro {
    padding: 120px 0 80px;
    text-align: center;
}

.services-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: var(--primary-dark);
}

.services-intro p {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
}

/* =========================
   SIMPLE SERVICES GRID
========================= */
.simple-services {
    padding: 100px 0;
    background: var(--primary-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    
    /* GSAP Starter values */
    opacity: 0;
    transform: translateY(40px);
}

.service-card:hover {
    transform: translateY(-8px) !important; /* GSAP will fight this otherwise, override */
    box-shadow: 0 20px 40px rgba(84, 46, 26, 0.15); /* Tint shadow with primary-dark */
}

.sc-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.sc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .sc-img img {
    transform: scale(1.08); /* Elegant slow zoom on hover */
}

.sc-content {
    padding: 35px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sc-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.sc-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.sc-content .book-btn {
    align-self: flex-start; /* Keep button from stretching */
    padding: 10px 24px;
}

.services-outro {
    padding: 120px 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .sc-img {
        height: 250px;
    }
}

/* ==========================================================
   GALLERY PAGE - BENTO GRID & STICKY INFO
========================================================== */
.gallery-main {
    background: var(--white);
    padding-bottom: 80px;
}

.gallery-event {
    padding: 100px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-event:last-child {
    border-bottom: none;
}

.event-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.layout-reverse {
    flex-direction: row-reverse;
}

.event-info-wrapper {
    flex: 0 0 35%;
    position: relative;
}

.event-info {
    position: sticky;
    top: 150px;
    /* Accounts for the sticky header height */
}

.event-date {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-mid);
    font-weight: 600;
    margin-bottom: 15px;
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.event-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.event-media {
    flex: 1;
}

/* BENTO GRID */
.bento-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 250px;
}

.bento-item {
    border-radius: 20px;
    overflow: hidden;
    background: #f0f0f0;

    /* Hardware acceleration for GSAP parallax */
    transform: translateZ(0);
    will-change: transform, opacity;
}

.bento-item img,
.bento-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.bento-item:hover img,
.bento-item:hover video {
    transform: scale(1.05);
}

/* CONFIG 1: Video spans Left side, Images on Right and Bottom */
.config-1 .bento-video {
    grid-column: span 8;
    grid-row: span 2;
}

.config-1 .bento-img-1 {
    grid-column: span 4;
    grid-row: span 1;
}

.config-1 .bento-img-2 {
    grid-column: span 4;
    grid-row: span 1;
}

.config-1 .bento-img-3 {
    grid-column: span 12;
    grid-row: span 1;
}

/* Spans entire full width row */

/* CONFIG 2: Video spans Right side */
.config-2 .bento-img-1 {
    grid-column: span 12;
    grid-row: span 1;
}

.config-2 .bento-video {
    grid-column: span 5;
    grid-row: span 2;
}

.config-2 .bento-img-2 {
    grid-column: span 7;
    grid-row: span 1;
}

.config-2 .bento-img-3 {
    grid-column: span 7;
    grid-row: span 1;
}

/* RESPONSIVE GALLERY */
@media (max-width: 992px) {
    .event-container {
        flex-direction: column;
        gap: 40px;
    }

    .layout-reverse {
        flex-direction: column;
    }

    .event-info {
        position: static;
    }

    .event-title {
        font-size: 36px;
    }

    .bento-grid {
        grid-template-columns: repeat(1, 1fr);
        grid-auto-rows: 300px;
    }

    .bento-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .bento-video {
        grid-row: span 2 !important;
        /* Video gets double height on mobile for emphasis */
    }
}

/* ==========================================================
   CONTACT PAGE - FREAKY INTERACTIVE LAYOUT
========================================================== */
.contact-main {
    background: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
}

/* SECTION 1: HERO */
.contact-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-text-wrap {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(60px, 12vw, 150px);
    line-height: 0.9;
    color: var(--white);
    text-transform: uppercase;
}

/* GSAP staggers wrapping */
.word-wrap,
.char-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.word,
.char {
    display: inline-block;
    transform: translateY(100%) skewY(10deg);
    will-change: transform;
    color: var(--primary-mid);
}

.char {
    color: var(--white);
}

.relative {
    position: relative;
}

/* Rotating Badge styling tied to scroll */
.rotating-badge {
    position: absolute;
    right: 5%;
    bottom: -150px;
    width: 250px;
    height: 250px;
    z-index: 10;
    will-change: transform;
}

.rotating-badge svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-mid);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
}

.badge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: var(--primary-mid);
    border-radius: 50%;
}

/* SECTION 2: PORTAL */
.contact-portal {
    padding: 150px 0 200px;
    background: var(--primary-dark);
}

.portal-flex {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.portal-left {
    flex: 1;
}

.portal-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--white);
    margin-bottom: 20px;
}

.portal-left p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    max-width: 400px;
}

.freaky-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.freaky-link {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    color: var(--white);
    text-decoration: none;
    position: relative;
    width: fit-content;
    padding-bottom: 5px;
    transition: color 0.4s ease;
    display: inline-block;
    will-change: transform;
    /* Helps magnetic movement */
}

.freaky-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-mid);
    transition: width 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.freaky-link:hover {
    color: var(--primary-mid);
}

.freaky-link:hover::after {
    width: 100%;
}

/* RIGHT: GLASS FORM */
.portal-right {
    flex: 1;
    width: 100%;
}

.glass-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.input-group {
    position: relative;
    margin-bottom: 40px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
}

.input-group textarea {
    resize: none;
}

.input-group label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: 0.3s ease all;
}

/* FLOATING LABEL LOGIC */
.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label,
.input-group textarea:focus~label,
.input-group textarea:not(:placeholder-shown)~label,
.active-label {
    /* Keep active for input=date */
    top: -20px;
    font-size: 12px;
    color: var(--primary-mid);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--primary-mid);
    transition: 0.4s ease;
}

.input-group input:focus~.input-border,
.input-group textarea:focus~.input-border {
    width: 100%;
}

/* Hide native browser date placeholder icon if possible */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: var(--primary-mid);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.3s ease, background 0.3s ease;
    margin-top: 10px;
    will-change: transform;
}

.submit-btn:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .portal-flex {
        flex-direction: column;
        gap: 60px;
    }

    .portal-left h2 {
        font-size: 50px;
    }

    .rotating-badge {
        width: 150px;
        height: 150px;
        right: 10%;
        bottom: -50px;
    }

    .glass-form {
        padding: 40px 30px;
    }

    .freaky-link {
        font-size: 24px;
    }
}

/* ==========================================================
   FLOATING WHATSAPP ICON
========================================================== */
.whatsapp-float {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-50%) scale(1.1);
    background-color: #1ebe57;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ==========================================================
   FLOATING WHATSAPP ICON
========================================================== */
.whatsapp-float {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-50%) scale(1.1);
    background-color: #1ebe57;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}