/* RESET & VARIABLES */
:root {
    /* Palette Cal & Lily */
    --c-pink-hero: #FDB0B8;
    /* The main pink background */
    --c-blue-primary: #2c42af;
    /* The deep royal blue for text and footer bg */
    --c-blue-light: #8BA8E8;
    /* Lighter blue for subtitles in dark section */
    --c-white: #FFFFFF;
    --c-orange: #FF5A36;
    /* Marquee orange-red */
    --c-cream: #FFF5F2;
    /* Light background for middle section */
    --c-pink-sticker: #FCA5B3;

    /* Fonts */
    --font-display: 'Montserrat', sans-serif;
    /* Heavy Geometric */
    --font-script: 'Yellowtail', cursive;
    /* Retro Script */
    --font-body: 'DM Sans', sans-serif;
    /* Clean Sans */
}

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

body {
    font-family: var(--font-body);
    background-color: var(--c-cream);
    color: var(--c-blue-primary);
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

/* -----------------------------
1. HEADER & HERO (Pink Section)
----------------------------- */
header {
    background-color: var(--c-pink-hero);
    padding: 2rem 4rem;
    padding-top: 260px;
    /* Increased space to clear fixed nav */
    position: relative;
    /* Back to relative */
    border-bottom: 2px solid transparent;
}

/* Nav */
nav {
    display: flex;
    justify-content: center;
    gap: 4rem;
    align-items: center;
    padding: 0.8rem 2rem;
    /* Balanced padding */
    margin-bottom: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    /* Initial transparent */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1100;
}

.nav-scrolled {
    background-color: #FFFFFF !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c-blue-primary);
}

.header-logo img {
    height: 65px;
    /* Base height */
    width: auto;
    transform: scale(1.6);
    /* Visually massive increase */
    position: relative;
    z-index: 10;
    margin-left: 10px;
    /* Slight offset for scale */
}

/* Hero Container */
.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 100px;
    /* Explicit push from fixed nav */
    padding-bottom: 6rem;
    position: relative;
    /* For floating elements */
    min-height: 500px;
}

/* STATS SECTION */
.stats-section {
    background-color: var(--c-cream-light);
    padding: 6rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    /* Responsive wrap */
}

/* Image Column */
.stats-image-col {
    flex: 1;
    min-width: 300px;
}

.stats-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* Optional: rotate or shadow to match vibe */
    transform: rotate(-2deg);
    box-shadow: 20px 20px 0px rgba(230, 165, 165, 0.2);
}

/* Content Column */
.stats-content-col {
    flex: 1;
    min-width: 300px;
}

.stats-title {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.1;
    color: var(--c-blue-primary);
    /* Dark Blue */
    margin-bottom: 2rem;
}

.stats-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: var(--c-blue-primary);
    opacity: 0.9;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
}

.stat-item {
    margin-bottom: 1rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--c-blue-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--c-blue-light);
    color: var(--c-blue-primary);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }

    .stats-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .stats-desc {
        text-align: center;
    }

    .stats-grid {
        text-align: center;
    }
}

/* Center Content */
.hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
    max-width: 1200px;
    position: relative;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 4rem;
    /* Adjusted for single line */
    line-height: 0.9;
    color: var(--c-blue-primary);
    text-transform: uppercase;
}

.hero-script {
    font-family: var(--font-script);
    font-size: 4.5rem;
    /* Larger */
    color: var(--c-blue-primary);
    transform: rotate(-5deg);
    margin: 0.5rem 0;
}

.hero-location {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-blue-light);
    color: var(--c-blue-primary);
    opacity: 0.8;
}

.btn-white {
    margin-top: 2rem;
    background-color: var(--c-white);
    color: var(--c-blue-primary);
    padding: 1rem 3rem;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
}

.btn-white:hover {
    transform: scale(1.05);
}

.btn-primary {
    background-color: #ff9fb4;
    color: white;
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    /* Wavy Border */
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* Floating Vertical Contact Button */
/* Better Floating Button Approach to stick to edge */
/* Better Floating Button Approach (Left Side) */
.floating-contact-btn {
    position: fixed;
    top: 50%;
    left: 0 !important;
    /* Enforce Left */
    right: auto !important;

    /* Center vertically */
    transform: translateY(-50%) rotate(180deg);

    /* Use writing mode for reliable vertical text */
    writing-mode: vertical-rl;
    text-orientation: mixed;

    background: var(--c-blue-primary);
    color: white;
    padding: 30px 15px;
    /* Swapped padding for vertical */

    font-family: var(--font-display);
    font-weight: bold;
    border-radius: 0 15px 15px 0;
    /* Rounded on the outward side (right) */
    z-index: 9999;
    margin: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* -----------------------------
2. MARQUEE STRIP
----------------------------- */
.marquee-strip {
    background-color: var(--c-orange);
    color: var(--c-white);
    padding: 0.8rem 0;
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.marquee-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* -----------------------------
3. GARDEN EXPERIENCE (Cards)
----------------------------- */
.experience-section,
.services-section {
    background-color: var(--c-white);
    padding: 6rem 2rem 8rem 2rem;
    /* Increased bottom padding */
    text-align: center;
    position: relative;
    /* For z-index stack */
    z-index: 5;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--c-blue-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4rem;
}

/* Cards Grid */
.cards-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: stretch;
    /* Stretch to equal height */
}

.arch-card {
    flex: 1;
    /* Grow to fill space equally */
    min-width: 300px;
    /* Minimum width before wrapping */
    max-width: 350px;
    /* Cap width */
    display: flex;
    flex-direction: column;
    position: relative;
    /* Context for popup */
}

/* Cleaned up Arch Image & Popup Styles */
/* Container allows popup to stick out */
/* Cleaned up Card Image & Popup Styles */
/* Container allows popup to stick out */
.card-image {
    width: 100%;
    height: 350px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    position: relative;
    z-index: 1;
}

/* Image styling */
.card-image img,
.card-image .icon-container {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 150px 150px 0 0;
    /* Restored Arch Shape */
    border: 2px solid var(--c-blue-primary);
    border-bottom: none;
    transition: transform 0.3s ease;
    display: flex;
    /* For icon centering */
}

/* Card Overlay - Offset Popup Style */
.card-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -30px;
    left: -30px;
    background-color: var(--c-blue-primary);
    color: var(--c-white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    z-index: 20;
    border-radius: 2px;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.1);
    transform: scale(0.9) translate(10px, 10px);
}

.arch-card:hover .card-overlay {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translate(0, 0);
}

.arch-card:hover .card-image img,
.arch-card:hover .card-image .icon-container {
    /* No scale on hover so popup is key */
    transform: none;
}

.card-box {
    border: 2px solid var(--c-blue-primary);
    padding: 1.5rem;
    background-color: transparent;
    transition: all 0.3s ease;
    flex-grow: 1;
    /* Push footer down if needed, fill height */
    z-index: 1;
}

.card-overlay h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: var(--c-pink-hero);
}

.card-overlay p.intro {
    font-weight: 700;
    font-size: 0.85rem;
    /* Reduced from 1.1rem */
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.card-overlay p {
    font-size: 0.75rem;
    /* Reduced from 0.9rem */
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.card-overlay ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0.5rem;
}

.card-overlay li {
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
    padding-left: 0.8rem;
    position: relative;
    line-height: 1.3;
}

.card-overlay li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--c-pink-sticker);
}

.card-overlay p.outro {
    font-size: 0.75rem;
    font-style: italic;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.5rem;
}

.arch-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.arch-card:hover .arch-image img {
    transform: scale(1.1);
}

.card-box {
    border: 2px solid var(--c-blue-primary);
    padding: 1.5rem;
    background-color: transparent;
    transition: all 0.3s ease;
}

.card-box h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.arch-card:hover .card-box h3 {
    color: var(--c-pink-hero);
}

.card-box p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Hover / Active styled card (First one usually) */
.arch-card.active .card-box,
.arch-card:hover .card-box {
    background-color: var(--c-blue-primary);
    color: var(--c-white);
}

/* -----------------------------
4. FARMER & FLORIST (Blue Wave)
----------------------------- */
.farmer-section {
    position: relative;
    background-color: var(--c-blue-primary);
    color: var(--c-white);
    padding-bottom: 0;
    /* Remove padding so image touches bottom */
}

/* Scalloped Top SVG */
.wave-top {
    width: 100%;
    height: 50px;
    /* Matched to SVG height */
    background-color: transparent;
    /* Changed from cream to transparent */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.wave-svg {
    position: absolute;
    top: 0;
    /* Align to top */
    left: 0;
    width: 100%;
    height: 100%;
    fill: var(--c-white);
    /* White color to look like part of previous section */
    transform: rotate(180deg);
    /* Flip to hang down */
}

.farmer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 8rem;
    /* Space for wave */
    gap: 4rem;
    align-items: end;
    /* Align items to bottom so image sits flush */
}

/* Full height image container */
.farmer-img-container {
    position: relative;
    width: 100%;
    /* Use full width of column */
    height: 100%;
    /* Stretch to match section/grid height */
    margin: 0;
    /* Remove centering margin */
    display: flex;
    /* Ensure img child stretches */
}

.farmer-img {
    width: 100%;
    height: 100%;
    /* Fill the container */
    min-height: 600px;
    /* Ensure a good minimum height */
    object-fit: cover;
    display: block;
    border-radius: 8px;
    /* Optional: slight roundness if desired, or keep sharp */
}

/* Star/Burst Sticker */
.sticker-star {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    background-color: var(--c-pink-sticker);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    transform: rotate(-15deg);
    z-index: 20;
    animation: rotate 10s infinite linear;
}

.name-logo {
    height: 3.5rem;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: -0.5rem;
    /* Negative margin to pull closer */
    margin-top: 0;
    transform: translateY(5px);
}

.sticker-text {
    font-family: var(--font-script);
    color: #9F2C3E;
    font-size: 1.2rem;
    line-height: 1.1;
    transform: rotate(15deg);
    /* Counter sticker rotation */
}

/* Text Side */
.farmer-text h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 5rem;
    /* Larger "Bonjour !" */
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--c-blue-light);
    /* Light blue for "Bonjour !" */
}

.farmer-text h2 .subtitle {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.4em;
    /* Smaller relative to title */
    line-height: 1.2;
    color: var(--c-white);
    /* White for "Je suis" */
    font-weight: 700;
}

.farmer-text h2 .name-highlight {
    color: var(--c-pink-hero);
    font-family: var(--font-script);
    font-weight: 400;
    /* Script doesn't need bold usually */
    font-size: 1.5em;
    /* Increase size to match reference */
    margin-left: 0.3rem;
    /* Small gap */
    display: inline-block;
    /* Required for transform */
    transform: rotate(-6deg);
    /* Tilt effect */
}


.farmer-text {
    align-self: center;
    /* Keep text centered vertically even though grid is bottom-aligned */
    padding-bottom: 4rem;
    /* Add some breathing room for text if needed */
}

.farmer-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 500px;
}

.btn-light {
    background-color: #EEE4E0;
    /* Off-white pinkish */
    color: var(--c-blue-primary);
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    margin-top: 1rem;
    display: inline-block;
    /* Wavy Border */
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
}

.btn-light:hover {
    transform: scale(1.05);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 900px) {

    .header-grid,
    .farmer-content,
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-img {
        height: 300px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 3rem;
    }

    nav {
        justify-content: center;
    }
}

/* FOOTER */
/* (Old footer rule removed/closed) */

/* FOOTER PRO & FUN */
.footer-pro {
    background-color: var(--c-blue-primary);
    color: var(--c-white);
    position: relative;
    padding-top: 0;
    /* Remove padding as wave handles transition */
    overflow: hidden;
}

/* WAVE SEPARATOR */
.footer-wave-separator {
    width: 100%;
    line-height: 0;
    background-color: transparent;
    /* Shows Body/Cream BG */
    margin-bottom: -1px;
    /* Fix sub-pixel gap */
}

.footer-wave-separator svg {
    display: block;
    width: 100%;
    height: auto;
    min-height: 50px;
}

.footer-wave-separator path {
    fill: var(--c-blue-primary) !important;
}

/* Group Left Styling */
.footer-group-left {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-group-left .sub-col {
    flex: 1;
}

.footer-grid {
    max-width: 1400px;
    width: 100%;
    /* Ensure full width usage */
    margin: 0 auto;
    padding: 2rem 4rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    /* 3 Columns: Info Group (wide), Map, Game */
    gap: 3rem;
    align-items: start;
}

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

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

    .footer-group-left {
        flex-direction: column;
        gap: 2rem;
    }
}

.footer-col h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--c-pink-hero);
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn-footer {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--c-orange);
    color: var(--c-white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.3s;
}

.btn-footer:hover {
    transform: scale(1.05);
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--c-white);
    text-decoration: underline;
    font-weight: 500;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.8rem;
}

.footer-nav a {
    color: var(--c-white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--c-pink-hero);
}

/* GAME STYLES */
#game-container {
    width: 100%;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    cursor: crosshair;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#target-star {
    position: absolute;
    font-size: 2rem;
    color: var(--c-orange);
    user-select: none;
    transition: all 0.2s ease-out;
    /* Smooth movement */
    cursor: pointer;
}

#score-board {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: monospace;
    font-size: 0.9rem;
    pointer-events: none;
}

/* REVIEWS SECTION */
.reviews-section {
    position: relative;
    background-color: var(--c-cream);
    color: var(--c-blue-primary);
    padding: 8rem 2rem 6rem;
    text-align: center;
}

.wave-reviews-top {
    width: 100%;
    height: 50px;
    background-color: transparent;
    position: absolute;
    top: -49px;
    /* Move up to overlap previous section */
    left: 0;
    z-index: 20;
    /* High z-index to cover the image */
}

.wave-svg-reviews {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    /* No rotation: bumps point UP */
}

.reviews-container {
    max-width: 900px;
    /* Wider for the stack */
    margin: 0 auto;
    position: relative;
    padding-bottom: 2rem;
}

/* CAROUSEL BASE */
.reviews-carousel {
    position: relative;
    width: 100%;
}

.reviews-track-container {
    position: relative;
    width: 100%;
    /* Fixed height needed for absolute slides */
    height: 700px;
    /* Increased from 500px for mobile safety */
    margin-bottom: 2rem;
}

.reviews-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    width: 100%;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: rotate(5deg) translateX(20px);
    /* Start hidden state */
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-slide.current-slide {
    opacity: 1;
    transform: rotate(0deg) translateX(0);
    z-index: 10;
    pointer-events: all;
}

/* Stacked Paper Effect */
.review-card {
    background-color: var(--c-white);
    border: 2px solid var(--c-blue-primary);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    position: relative;
    max-width: 700px;
    margin: 2rem auto;
    /* Space for the tilt */
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* The tilted papers behind */
.review-card::before,
.review-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--c-white);
    border: 2px solid var(--c-blue-primary);
    border-radius: 12px;
    z-index: -1;
    transition: transform 0.3s ease;
}

.review-card::before {
    transform: rotate(-2deg);
}

.review-card::after {
    transform: rotate(2deg);
    z-index: -2;
}

.review-card .stars {
    color: var(--c-orange);
    font-size: 2rem;
    /* Bigger stars */
    margin-bottom: 1.5rem;
    letter-spacing: 5px;
}

.review-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--c-blue-primary);
    /* Blue text */
    font-weight: 500;
}

.review-author {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--c-pink-hero);
    text-transform: uppercase;
    font-size: 1rem;
}

/* HEADER & NAV */
header {
    background-image: url('hero_pink_bg.jpg');
    background-size: cover;
    background-position: center top;
    position: relative;
    /* Ensure text is readable */
}


/* CAROUSEL CONTROLS */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* HAMBURGER & MOBILE NAV */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1200;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--c-blue-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Open state for hamburger */
.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, -6px);
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    /* Override nav layout for mobile */
    nav {
        justify-content: space-between;
        /* Logo left, Hamburger right */
        padding: 0.5rem 1.5rem;
        /* Adjust padding */
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        z-index: 1100;
        /* Behind hamburger (1200) */
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        opacity: 0;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        font-size: 1.5rem;
        /* Bigger formatting for mobile */
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-script {
        font-size: 3rem;
    }

    .reviews-container .sticker-star {
        display: none;
    }
}

.carousel-btn {
    background: var(--c-white);
    border: 2px solid var(--c-blue-primary);
    color: var(--c-blue-primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* PORTFOLIO SECTION */
.portfolio-section {
    padding: 6rem 2rem;
    background-color: var(--c-white);
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

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

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(28, 72, 162, 0.9), transparent);
    padding: 2rem 1.5rem;
    color: var(--c-white);
    text-align: left;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: var(--c-pink-hero);
}

.portfolio-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.btn-portfolio {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--c-orange);
    color: var(--c-white);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    align-self: flex-start;
}

.carousel-btn:hover {
    background: var(--c-blue-primary);
    color: var(--c-white);
}

.carousel-dots {
    display: flex;
    gap: 0.8rem;
}

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

.dot.current-slide {
    background: var(--c-blue-primary);
    transform: scale(1.2);
}

/* STICKER STAR CUSTOM POSITION FOR REVIEWS */
.reviews-container .sticker-star {
    position: absolute;
    top: -40px;
    right: 5%;
    transform: rotate(15deg);
    z-index: 20;
    pointer-events: none;
}

/* Flying Star Animation */
.flying-star {
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
    font-size: 2.5rem;
    color: var(--c-pink-hero);
    z-index: 100;
    opacity: 0;
}

@keyframes fly-out {
    0% {
        transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(0) rotate(var(--rot));
        opacity: 0;
    }
}

.copyright-bar {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--c-white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}