:root {
    --blush: #f2d7d5;
    --rose: #e8b4b8;
    --mauve: #c9a9c7;
    --lavender: #d5c6e0;
    --cream: #fff8f6;
    --soft-white: #fffdfb;
    --warm-gray: #8a7e82;
    --deep-plum: #4a3347;
    --text: #3d2b3a;
    --text-light: #7a6b77;
    --gold-accent: #d4a574;
    --sage: #c5d5cb;
}

.overflow-hidden {
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: linear-gradient(135deg, var(--cream), var(--blush));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    font-weight: 300;
    justify-content: center;
    align-items: center;
    color: var(--deep-plum);
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.preloader-line {
    width: 120px;
    height: 1px;
    background: var(--rose);
    margin-top: 20px;
    animation: expandLine 1.5s ease forwards 0.5s;
    transform: scaleX(0);
}

.preloader-sub {
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 15px;
    opacity: 0;
    animation: fadeInUp 2s ease forwards 0.8s;
}

/* Counter styling */
.preloader .counter-wrapper {
    font-family: 'Playfair Display', serif;
    /* Tamara current font mujab */
    font-size: 2.2rem;
    font-weight: 300;
    color: #555;
    margin-top: 20px;
    text-align: center;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 2s ease forwards 0.8s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
        /* Niche thi sharu thase */
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        /* Potani jagya par aavse */
    }
}

/*.preloader .loader {
    position: fixed;
    inset: 0;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 9999;
        transition: opacity 1s ease, visibility 1s ease;
    }

    /* Loader Text 
    .loader-content {
    font-size: 40px;
    font-family: Arial, sans-serif;
    animation: fadeInUp 1.2s ease-out forwards;
    }

    /* Animation 
    @keyframes fadeInUp {
    0% { transform: translateY(40px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
    }*/


/* Your provided Fade animation */
@keyframes fadeInUp {
    from {
        opacity: 1;
        transform: translateY(20px);
    }

    to {
        opacity: 0;
        transform: translateY(0);
    }
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    to {
        transform: scaleX(1);
    }
}



/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--rose);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
}

.cursor-ring {
    width: 35px;
    height: 35px;
    border: 1.5px solid var(--mauve);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition:
        transform 0.3s ease,
        width 0.3s ease,
        height 0.3s ease;
    transform: translate(-50%, -50%);
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(255, 248, 246, 0.9);
    backdrop-filter: blur(20px);
    padding: 15px 50px;
    box-shadow: 0 2px 30px rgba(74, 51, 71, 0.05);
}

.nav-logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--deep-plum);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.nav-logo span {
    font-weight: 600;
    color: var(--rose);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rose);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--deep-plum);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 1.5px;
    background: var(--deep-plum);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--cream), var(--blush));
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    text-decoration: none;
    color: var(--deep-plum);
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--rose);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg,
            var(--cream) 0%,
            var(--blush) 40%,
            var(--lavender) 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-shapes .circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.hero-bg-shapes .circle:nth-child(1) {
    width: 500px;
    height: 500px;
    background: var(--rose);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-bg-shapes .circle:nth-child(2) {
    width: 300px;
    height: 300px;
    background: var(--mauve);
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-bg-shapes .circle:nth-child(3) {
    width: 200px;
    height: 200px;
    background: var(--sage);
    top: 50%;
    left: 50%;
    animation: float 12s ease-in-out infinite 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.hero-tag {
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 2.5s;
}

.hero-name {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--deep-plum);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 2.8s;
}

.hero-name em {
    font-style: italic;
    color: var(--rose);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.15em;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 3.1s;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 40px;
    border: 1px solid var(--rose);
    background: transparent;
    color: var(--deep-plum);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 3.4s;
}

.hero-cta:hover {
    background: var(--rose);
    color: white;
}

.hero-cta svg {
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(5px);
}

.hero-music {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 2s ease forwards 2.5s;
}


/* 1. Main Button Style */
.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* Original Gradient */
    background: linear-gradient(135deg, #ff9bad, #fc73a9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(252, 115, 169, 0.3);

    /* Entrance Animation */
    opacity: 0;
    animation: fadeInUp 1s ease forwards 3.4s;
}

/* 2. Continuous Ripple (Always Active) */
.play-button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    /* Always running now */
    animation: ripple 2.5s infinite ease-out;
    opacity: 0.6;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* 3. Enhanced Hover Effect */
.play-button:hover {
    transform: scale(1.15);
    /* Background color change on hover */
    background: linear-gradient(135deg, #fc73a9, #ff5e9e);
    box-shadow: 0 12px 25px rgba(248, 104, 188, 0.6);
}

/* 4. Icon Styling */
#playIcon,
#pauseIcon {
    width: 32px;
    height: 32px;
    color: white;
    position: relative;
    pointer-events: none;
    display: block;
}

#playIcon{
    left: 2px;
}

.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 48%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    gap: 8px;
    margin-top: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 3.7s;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--rose), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }
}

/* ===== SECTION STYLES ===== */
section {
    padding: 100px 50px;
}

.section-tag {
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 15px;
}

.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--deep-plum);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-line {
    width: 60px;
    height: 1px;
    background: var(--rose);
    margin-bottom: 40px;
}

/* ===== ABOUT ===== */
.about {
    background: var(--soft-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* .about-image-wrapper {
    margin-right: 20px;
    position: relative;
    }
    .about-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--blush), var(--lavender));
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    position: relative;
    }
    Make about section images grayscale by default and colored on hover 
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);  Default Grayscale 
    -webkit-filter: grayscale(100%);
    transition: filter 0.6s ease, -webkit-filter 0.6s ease, transform 0.6s ease;
    will-change: filter, transform;
    }

    .about-image:hover img {
    filter: none;
    -webkit-filter: none;
    transform: scale(1.02);
    }
    .about-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 5rem;
    color: rgba(74, 51, 71, 0.12);
    font-weight: 300;
    }
    .about-image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--rose);
    border-radius: 200px 200px 20px 20px;
    z-index: -1;
    opacity: 0.4;
    } */

.about-image-wrapper {
    margin-right: 20px;
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--blush), var(--lavender));
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    position: relative;
}

/* Image default grayscale */
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter 8s ease;
    will-change: filter;
}

.about-image .reveal :left {
    opacity: 0;
    animation: fadeInUp 2s ease forwards 1.8s;
}

/* Scroll par active thay tyare color */
.about-image.active img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 5rem;
    color: rgba(74, 51, 71, 0.12);
    font-weight: 300;
}

.about-image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--rose);
    border-radius: 200px 200px 20px 20px;
    z-index: -1;
    opacity: 0.4;
}

/* Moves the element 50px to the right along the x-axis */
.about-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 300;
}

.about-signature {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--rose);
    margin-top: 30px;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(232, 180, 184, 0.3);
}

.stat-item h3 span {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--deep-plum);
}

.stat-item span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    display: inline-block;
}

/* ===== PORTFOLIO ===== */
.portfolio {
    background: linear-gradient(180deg, var(--cream), var(--soft-white));
}

.portfolio-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.portfolio-header .section-line {
    margin: 0 auto 40px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Portfolio images should fill the card (no side gaps). Other
        image areas (media, gallery) keep contain to avoid cropping */
.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center;
    display: block;
    background: linear-gradient(135deg, var(--blush), var(--lavender));
}

.media-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center;
    object-position: top;
    display: block;
    background: linear-gradient(135deg, var(--blush), var(--lavender));
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center;
    display: block;
    background: linear-gradient(135deg, var(--blush), var(--lavender));
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition:
        filter 420ms ease,
        -webkit-filter 420ms ease,
        transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, filter;
    transform-origin: center center;
    backface-visibility: hidden;
}

.gallery-item:hover img,
.gallery-item:active img,
.gallery-item.hover-zoom img {
    transform: scale(1.06);
    filter: none;
    -webkit-filter: none;
}

.portfolio-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    group: true;
    background: linear-gradient(135deg, var(--blush), var(--lavender));
}

.portfolio-card:nth-child(2) {
    background: linear-gradient(135deg, var(--sage), var(--blush));
}

.portfolio-card:nth-child(3) {
    background: linear-gradient(135deg, var(--lavender), var(--rose));
}

.portfolio-card:nth-child(4) {
    background: linear-gradient(135deg, var(--mauve), var(--sage));
}

.portfolio-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    color: rgba(74, 51, 71, 0.2);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(74, 51, 71, 0.85) 0%,
            transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 0;

}

.portfolio-overlay h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    color: white;
    ;
    font-weight: 400;
    margin-bottom: 5px;
}

.portfolio-overlay span {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--blush);
}

/* ===== MEDIA ===== */
.media {
    background: var(--soft-white);
    /* keep left and right padding equal for consistent layout */
    padding: 100px 0px;
}

.media-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.media-header .section-line {
    margin: 0 auto 40px;
}

/* Swiper container */
.media-grid.swiper {
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    padding: 0 20px;
    box-sizing: border-box;
}

.media-grid.swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.media-grid.swiper .swiper-slide {
    box-sizing: border-box;
    height: auto;
}

.media-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
    text-decoration: none;
    display: block;
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(74, 51, 71, 0.1);
}

.media-card-image {
    height: 250px;
    background: linear-gradient(135deg, var(--blush), var(--lavender));
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    justify-items: left;
}

.media-card-image svg {
    width: 40px;
    height: 40px;
    color: rgba(74, 51, 71, 0.15);
}

.media-card-body {
    padding: 25px;
}

.media-card-body .media-card-source {
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.media-card-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    color: var(--deep-plum);
    line-height: 1.4;
    margin-bottom: 15px;
}

.media-card-excerpt {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

/* ===== GALLERY ===== */
.gallery {
    background: linear-gradient(180deg, var(--cream), var(--blush));
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.gallery-header .section-line {
    margin: 0 auto 40px;
}

.gallery-masonry {
    columns: 4;
    column-gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-placeholder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    color: rgba(74, 51, 71, 0.15);
    background: linear-gradient(135deg, var(--blush), var(--lavender));
}

.gallery-item:nth-child(odd) .gallery-placeholder {
    background: linear-gradient(135deg, var(--sage), var(--blush));
}

.gallery-item:nth-child(3n) .gallery-placeholder {
    background: linear-gradient(135deg, var(--lavender), var(--mauve));
}

.gallery-item:hover .gallery-placeholder {
    filter: brightness(1.05);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(74, 51, 71, 0);
    transition: background 0.3s ease;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram {
    background: var(--soft-white);
    text-align: center;
}

/* Media controls: arrow buttons below the slider */
.media-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
    width: 100%;
    margin: 15px auto 0;
    padding: 0 20px;
}

.media-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(74, 51, 71, 0.1);
    background: white;
    color: var(--deep-plum);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(74, 51, 71, 0.08);
    transition: all 0.3s ease;
}

.media-arrow:hover {
    background: var(--cream);
    box-shadow: 0 6px 20px rgba(74, 51, 71, 0.12);
}

.media-arrow:disabled {
    opacity: 0.4;
    pointer-events: none;
}

.media-arrow svg,
.media-arrow .size-6 {
    width: 18px;
    height: 18px;
}

.instagram-header {
    max-width: 600px;
    margin: 0 auto 60px;
}

.instagram-header .section-line {
    margin: 0 auto 40px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.insta-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--blush), var(--lavender));
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.insta-item:nth-child(2) {
    background: linear-gradient(135deg, var(--sage), var(--blush));
}

.insta-item:nth-child(3) {
    background: linear-gradient(135deg, var(--lavender), var(--rose));
}

.insta-item:nth-child(4) {
    background: linear-gradient(135deg, var(--mauve), var(--sage));
}

.insta-item:nth-child(5) {
    background: linear-gradient(135deg, var(--rose), var(--cream));
}

.insta-item:nth-child(6) {
    background: linear-gradient(135deg, var(--cream), var(--mauve));
}

.insta-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(74, 51, 71, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.insta-item:hover::after {
    background: rgba(74, 51, 71, 0.3);
}

.insta-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 3;
    transition: opacity 0.3s ease;
}

.insta-item:hover .insta-icon {
    opacity: 1;
}

.insta-icon svg {
    color: white;
    width: 24px;
    height: 24px;
}

.insta-item::before {
    display: none !important;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border: 1px solid var(--rose);
    background: transparent;
    color: var(--deep-plum);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border-radius: 50px;
}

.instagram-btn:hover {
    background: var(--rose);
    color: white;
}

/* ===== CONTACT ===== */
.contact {
    background: linear-gradient(135deg, var(--deep-plum), #5c3d59, #6b4567);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232, 180, 184, 0.08);
    top: -100px;
    right: -100px;
}

.contact::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(197, 213, 203, 0.06);
    bottom: -80px;
    left: -80px;
}

.contact-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact .section-tag {
    color: var(--blush);
}

.contact .section-title {
    color: white;
}

.contact .section-line {
    margin: 0 auto 40px;
    background: var(--rose);
}

.contact-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-bottom: 50px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 1px solid rgba(232, 180, 184, 0.3);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
}

.contact-link:hover {
    border-color: var(--rose);
    background: rgba(232, 180, 184, 0.1);
}

.contact-link svg {
    width: 18px;
    height: 18px;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(232, 180, 184, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--rose);
    background: rgba(232, 180, 184, 0.15);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    color: var(--blush);
}

/* ===== FOOTER ===== */
footer {
    background: #3a2537;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

footer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
}

footer a {
    color: var(--rose);
    text-decoration: none;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .gallery-masonry {
        columns: 3;
    }

    .media-card-image {
        height: 350px;
    }

    .media-grid.swiper {
        padding: 0 16px;
    }

    /* Line 1444 */
    .hero-scroll {
        justify-items: center;
        margin-top: 20px;
        /* Increased from 40px */
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 25px;
    }

    nav {
        padding: 15px 25px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-masonry {
        columns: 2;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    .media-card-image {
        height: 300px;
    }


    /* Line 1444 */
    .hero-scroll {
        justify-items: center;
        margin-top: 20px;
        /* Increased from 40px */
    }
}

@media (max-width: 480px) {
    .gallery-masonry {
        columns: 2;
        column-gap: 10px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        gap: 25px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .media-card-image {
        height: 200px;
    }


    /* Line 1444 */
    .hero-scroll {
        justify-items: center;
        margin-top: 20px;
        /* Increased from 40px */
    }
}

@media (max-width: 768px) {
    .contact-text {
        line-clamp: 2;
    }
}

@media(max-width:509) {
    .contact-text {
        font-size: 4rem;
    }

    .contact-text {
        line-clamp: 2;
    }
}


/* Mobile */
@media (max-width: 480px) {
    .contact-text {
        line-clamp: 3;
    }
}

/* Lightbox overlay (keeps original design unchanged) */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 92%;
    max-height: 94%;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    display: block;
    transform: scale(0.96);
    opacity: 0;
    transition:
        transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1),
        opacity 800ms ease;
    will-change: transform, opacity;
}

.lightbox-overlay.active img {
    transform: scale(1);
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 24px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background 0.15s ease;
    backdrop-filter: none;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.12);
}