/* ===========================
   PREMIUM FASHION DESIGNER WEBSITE
   Color Palette: Blush Pink, Beige, White, Rose Gold, Black
   =========================== */

/* === ROOT VARIABLES === */
:root {
    /* Colors */
    --blush-pink: #f4c7d2;
    --blush-pink-light: #fce4ec;
    --blush-pink-dark: #e8a0b4;
    --beige: #f5f0e8;
    --beige-dark: #e8dcc8;
    --rose-gold: #b76e79;
    --rose-gold-light: #d4a5b1;
    --rose-gold-dark: #8f5661;
    --charcoal: #2c2c2c;
    --black: #1a1a1a;
    --white: #ffffff;
    --cream: #faf8f4;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--black);
}

.nav-menu {
    display: flex;
    gap: 2.1rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--rose-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* === PAGE SECTIONS === */
.page-section {
    display: none;
    padding-top: 80px;
    min-height: 100vh;
}

.page-section.active {
    display: block;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rose-gold);
    display: block;
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--charcoal);
    max-width: 600px;
    margin: 0 auto;
}

/* === BUTTONS === */
.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--rose-gold);
    border: 2px solid var(--rose-gold);
}

.btn-secondary:hover {
    background-color: var(--rose-gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* === HERO BANNER === */
.hero-banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
} */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures video fills screen without stretching */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Darkens video so text pops */
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(247, 231, 239, 0.92), rgba(245, 240, 232, 0.88));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* === PORTFOLIO PREVIEW === */
.portfolio-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blush-pink);
    margin-bottom: 1rem;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.view-btn {
    background-color: var(--white);
    color: var(--black);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.view-btn:hover {
    background-color: var(--rose-gold);
    color: var(--white);
}

/* === SERVICES MINI SECTION === */
.services-mini {
    background: linear-gradient(135deg, var(--blush-pink-light), var(--beige));
    padding: 5rem 0;
}

.services-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.service-mini-card {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.service-mini-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-mini-card i {
    font-size: 3.5rem;
    color: var(--rose-gold);
    margin-bottom: 1.5rem;
}

.service-mini-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-mini-card p {
    color: var(--charcoal);
    line-height: 1.8;
}

.services-cta {
    text-align: center;
}

/* === WHY CHOOSE ME === */
.why-choose {
    padding: 5rem 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-choose-text h2 {
    margin-bottom: 2rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.why-feature i {
    font-size: 1.8rem;
    color: var(--rose-gold);
    flex-shrink: 0;
}

.why-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.why-feature p {
    color: var(--charcoal);
}

.why-choose-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-choose-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* === TESTIMONIALS SLIDER === */
.testimonials-slider-section {
    background: linear-gradient(135deg, var(--beige), var(--blush-pink-light));
    padding: 5rem 0;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto 3rem;
    min-height: 400px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.6s ease;
}

.testimonial-content {
    background-color: var(--white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.stars i {
    color: var(--rose-gold);
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-family: var(--font-accent);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--rose-gold);
}

.testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.95rem;
    color: var(--rose-gold);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.slider-btn {
    background-color: var(--white);
    color: var(--rose-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    background-color: var(--rose-gold);
    color: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(183, 110, 121, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--rose-gold);
    width: 35px;
    border-radius: 10px;
}

/* === INSTAGRAM SECTION === */
.instagram-section {
    padding: 5rem 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(183, 110, 121, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.instagram-cta {
    text-align: center;
}

.instagram-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

/* === ABOUT PAGE === */
/* === CREATIVE ABOUT HERO === */
/* === CREATIVE ABOUT HERO === */
.about-hero {
    position: relative;
    min-height: 90vh; /* Taller for dramatic effect */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 0;
    background-color: var(--cream);
    z-index: 1;
}

/* 1. Background Watermark */
.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 25vw; /* Massive responsive text */
    font-weight: 900;
    color: rgba(183, 110, 121, 0.03); /* Extremely subtle Rose Gold */
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
    letter-spacing: -5px;
    line-height: 1;
}

/* 2. Visual Side (Image) */
.about-hero-visual {
    position: relative;
    width: 45%;
    height: 700px;
    margin-right: 5%; /* Push left to allow overlap */
    z-index: 1;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Optional: Rounded top-left/bottom-right for style */
    border-radius: 100px 0 100px 0; 
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.2, 1, 0.3, 1);
    filter: contrast(1.05);
}

/* Hover Effect: Zoom Image */
.about-hero:hover .image-wrapper img {
    transform: scale(1.1);
}

/* Decorative Floating Frame */
.floating-frame {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--rose-gold);
    z-index: -1;
    border-radius: 100px 0 100px 0;
    transition: transform 0.6s ease;
}

/* Hover Effect: Move Frame */
.about-hero:hover .floating-frame {
    transform: translate(-20px, -20px);
}

/* 3. Text Side */
.about-hero-text {
    position: relative;
    width: 40%;
    margin-left: -10%; /* Creates the overlap effect */
    z-index: 2;
}

.text-card {
    padding: 4rem;
    border-left: 5px solid var(--rose-gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.designer-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rose-gold);
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.designer-name {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-gold), transparent);
    margin-bottom: 2rem;
}

.designer-bio {
    font-family: var(--font-accent); /* Cormorant Garamond */
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--charcoal);
    font-style: italic;
    margin-bottom: 2rem;
}

.signature {
    font-family: 'Herr Von Muellerhoff', cursive; /* Or your script font */
    font-size: 3rem;
    color: var(--rose-gold-dark);
    opacity: 0.8;
    transform: rotate(-5deg);
}

/* === RESPONSIVE BREAKPOINTS === */

/* Tablet & Small Laptop (1024px and down) */
@media (max-width: 1024px) {
    .about-hero {
        padding: 4rem 2rem;
    }
    .designer-name {
        font-size: 3.5rem;
    }
    .about-hero-visual {
        height: 600px;
    }
}

/* Mobile (768px and down) */
@media (max-width: 768px) {
    .about-hero {
        flex-direction: column;
        height: auto;
        padding-top: 2rem;
    }

    /* Stack Image */
    .about-hero-visual {
        width: 100%;
        height: 500px;
        margin-right: 0;
        margin-bottom: -50px; /* Pull text card up into image */
    }

    .image-wrapper, .floating-frame {
        border-radius: 0; /* Simpler shape for mobile */
    }

    .floating-frame {
        top: 20px;
        left: 20px;
        width: calc(100% - 40px);
    }

    /* Stack Text */
    .about-hero-text {
        width: 90%;
        margin-left: 0;
    }

    .text-card {
        padding: 2.5rem;
        text-align: center;
        border-left: none;
        border-top: 5px solid var(--rose-gold); /* Move accent to top */
    }

    .accent-line {
        margin: 0 auto 2rem auto; /* Center the line */
    }

    .designer-name {
        font-size: 2.8rem;
    }

    .designer-bio {
        font-size: 1.2rem;
    }

    /* Hide Watermark on small screens to prevent overflow */
    .hero-watermark {
        display: none;
    }
}

/* === ABOUT INTRODUCTION === */

.about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-story-content h2 {
    margin-bottom: 2rem;
}

.about-story-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.about-story-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* === MISSION & PHILOSOPHY === */
.mission-philosophy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.mission-card,
.philosophy-card {
    background: linear-gradient(135deg, var(--blush-pink-light), var(--beige));
    padding: 3.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.mission-card i,
.philosophy-card i {
    font-size: 3.5rem;
    color: var(--rose-gold);
    margin-bottom: 1.5rem;
}

.mission-card h3,
.philosophy-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mission-card p,
.philosophy-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
}

/* === BEHIND THE SCENES === */
.behind-scenes {
    margin-bottom: 5rem;
}

.bts-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bts-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.bts-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.bts-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* === ACHIEVEMENTS === */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.achievement-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border-top: 4px solid var(--rose-gold);
    transition: var(--transition-smooth);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.achievement-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.achievement-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.achievement-card p {
    color: var(--rose-gold);
    font-size: 0.95rem;
}

/* === PORTFOLIO PAGE === */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    background-color: var(--white);
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--beige-dark);
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--rose-gold);
    color: var(--white);
    border-color: var(--rose-gold);
    transform: translateY(-2px);
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.portfolio-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-item-overlay {
    opacity: 1;
}

.portfolio-item-category {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blush-pink);
    margin-bottom: 0.8rem;
}

.portfolio-item-overlay h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.portfolio-view-btn {
    background-color: var(--white);
    color: var(--black);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-view-btn:hover {
    background-color: var(--rose-gold);
    color: var(--white);
}

/* === COLLECTIONS PAGE === */
.collections-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.collection-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.collection-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.collection-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.collection-season {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blush-pink);
    margin-bottom: 1rem;
}

.collection-hero-overlay h2 {
    color: var(--white);
    font-size: 3rem;
}

.collection-info {
    padding: 3rem;
    text-align: center;
}

.collection-info p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

/* === SERVICES PAGE === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.service-card {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--blush-pink-light), var(--beige));
    border: 3px solid var(--rose-gold);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.service-icon i {
    font-size: 4rem;
    color: var(--rose-gold);
}

.service-card h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-card p {
    text-align: center;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-price {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rose-gold);
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: var(--charcoal);
}

.service-features i {
    color: var(--rose-gold);
    font-size: 1.1rem;
}

/* === DESIGN PROCESS === */
.design-process {
    background: linear-gradient(135deg, var(--blush-pink-light), var(--beige));
    padding: 5rem;
    border-radius: 20px;
    margin-bottom: 5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: var(--rose-gold);
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
}

/* === SERVICES CTA === */
.services-cta-section {
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
    padding: 5rem;
    border-radius: 20px;
    text-align: center;
}

.services-cta-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-cta-content p {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

/* === TESTIMONIALS PAGE === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--rose-gold);
}

.testimonial-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.testimonial-info span {
    font-size: 0.95rem;
    color: var(--rose-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
}

.testimonial-stars i {
    color: var(--rose-gold);
    font-size: 1rem;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    font-style: italic;
}

/* === BLOG PAGE === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--rose-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-content {
    padding: 2.5rem;
}

.blog-date {
    font-size: 0.9rem;
    color: var(--rose-gold);
    display: block;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--rose-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more:hover {
    gap: 1rem;
}

/* === CONTACT PAGE === */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--rose-gold);
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--charcoal);
    line-height: 1.7;
}

.social-links {
    margin-top: 3rem;
}

.social-links h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
}

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: #25D366;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* === CONTACT FORM === */
.contact-form-container {
    background: linear-gradient(135deg, var(--blush-pink-light), var(--beige));
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form,
.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--beige-dark);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose-gold);
}

.form-group textarea {
    resize: vertical;
}

/* === ADVANCED EDITORIAL MARQUEE === */
.marquee-container {
    background-color: var(--white);
    /* Clean background */
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 5;
    /* elegant double border */
    border-top: 1px solid var(--rose-gold);
    border-bottom: 1px solid var(--rose-gold);
    box-shadow: 0 10px 30px -10px rgba(183, 110, 121, 0.15);
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 0;
    /* Spacing handled by padding in items */
    animation: marquee 35s linear infinite;
    /* Hardware acceleration for smoothness */
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

/* 1. The Elegant Serif Text (Italic) */
.text-serif {
    font-family: var(--font-heading);
    /* Playfair Display */
    font-weight: 400;
    font-style: italic;
    font-size: 2rem;
    color: var(--black);
    padding-left: 2rem;
    padding-right: 0.5rem;
}

/* 2. The Modern Outline Text (The "Advanced" look) */
.text-outline {
    font-family: var(--font-body);
    /* Montserrat */
    font-weight: 800;
    font-size: 2rem;
    text-transform: uppercase;
    color: transparent;
    /* See-through */
    -webkit-text-stroke: 1px var(--rose-gold-dark);
    /* The Outline */
    padding-right: 2rem;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

/* 3. The Separator Icon */
.separator {
    font-size: 1rem;
    color: var(--rose-gold);
    opacity: 0.6;
    transform: translateY(-2px);
    /* Visual alignment */
}

/* --- INTERACTIVE HOVER EFFECTS --- */

/* Pause animation on hover for readability */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* Fill the outline text when hovering the strip */
.marquee-container:hover .text-outline {
    color: var(--rose-gold);
    /* Fills with color */
    -webkit-text-stroke: 0px transparent;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
}

/* Smooth Infinite Loop Keyframes */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Mobile Adjustments */
@media (max-width: 768px) {
    .marquee-container {
        padding: 1rem 0;
    }

    .text-serif,
    .text-outline {
        font-size: 1.2rem;
    }

    .text-serif {
        padding-left: 1rem;
    }

    .text-outline {
        padding-right: 1rem;
    }
}

/*The Process*/
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

/* The connecting line */
.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--rose-gold-light);
    z-index: 1;
}

.process-step {
    background: var(--cream);
    /* Covers the line behind the number */
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    flex: 1;
}


/* === FOOTER === */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--rose-gold-light);
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background-color: var(--rose-gold);
    transform: translateY(-5px);
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

/* === MODAL === */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background-color: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    position: relative;
    padding: 3rem;
    animation: slideUp 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--charcoal);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--rose-gold);
    transform: scale(1.1);
}

.appointment-modal-content h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.appointment-modal-content p {
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 3rem;
}

/* Cursor */
/* Hide default cursor only on non-touch devices */
@media (hover: hover) {
    body {
        cursor: none;
    }

    .cursor-dot {
        width: 5px;
        height: 5px;
        background-color: var(--black);
    }

    .cursor-outline {
        width: 30px;
        height: 30px;
        border: 1px solid var(--rose-gold);
    }

    .cursor-dot,
    .cursor-outline {
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        z-index: 9999;
        pointer-events: none;
    }
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* AOS Animation Classes */
[data-aos] {
    opacity: 0;
    transition: var(--transition-smooth);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .section-container {
        padding: 3rem 2rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-smooth);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .cta-btn {
        display: none;
    }

    /* Grid Layouts */
    .portfolio-preview-grid,
    .services-mini-grid,
    .portfolio-gallery,
    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Two Column Layouts */
    .why-choose-content,
    .about-story,
    .mission-philosophy,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-hero-image {
        width: 100%;
        height: 50%;
    }

    .about-hero-content {
        margin-left: 0;
        margin-top: 50%;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {

    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    /* Grid Layouts */
    .portfolio-preview-grid,
    .services-mini-grid,
    .portfolio-gallery,
    .services-grid,
    .blog-grid,
    .testimonials-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step::after {
        display: none;
    }

    .bts-gallery {
        grid-template-columns: 1fr;
    }

    /* Spacing */
    .section-container {
        padding: 2rem 1.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    /* Hero */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Modal */
    .modal-content {
        padding: 2rem;
    }

    .modal-close {
        top: 15px;
        right: 20px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-logo a {
        font-size: 1.5rem;
    }

    .instagram-grid {
        grid-template-columns: 1fr;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}