* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F3EFE9; /* Lighter cream/beige from screenshot */
    color: #747e5e; /* Olive/brownish grey */
    line-height: 1.6;
}

h1, h2, h3, .cinzel {
    font-family: 'Cinzel', serif; /* Truly elegant world-class heading font */
    text-transform: uppercase;
    font-weight: 400;
}

.cursive {
    font-family: 'Pinyon Script', cursive; /* Extremely beautiful, elegant cursive font */
    font-size: 3rem;
    color: #747e5e;
    display: block;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: #747e5e;
}

/* Navbar */
.navbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    
    padding: 10px 5%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #F3EFE9; /* Prevents text from showing through when scrolling */
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 5px 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 33.33%;
}

.nav-row {
    display: flex;
    gap: 30px;
}

.nav-right {
    align-items: center;
    display: flex;
    gap: 30px;
    
    width: 33.33%;
    justify-content: flex-end;
}

.nav-link {
    font-family: 'Oswald', sans-serif; text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.nav-logo {
    align-items: center;
    display: flex;
    justify-content: center;
    
    width: 33.33%;
}

.nav-logo img {
    height: 180px; 
    object-fit: contain;
    transition: height 0.4s ease;
}

.navbar.scrolled .nav-logo img {
    height: 100px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 220px 5% 30px; /* Reduced bottom padding to reduce gap */
}

.hero-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.hero-left {
    align-items: flex-start;
    width: 40%;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.4;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #747e5e;
    align-self: flex-start;
    padding-left: 0;
}

.hero-img-1 {
    width: 100%;
    max-width: 300px;
    margin-left: 10%;
}

.hero-img-1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-right {
    width: 55%;
}

.hero-img-2 {
    width: 100%;
}

.hero-img-2 img {
    width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: cover;
}

.hero-bottom-text {
    margin-top: 40px;
    text-align: center;
    width: 100%;
    padding-left: 10%;
}

.hero-bottom-text h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    color: #747e5e;
}

/* Approach Section */
.approach {
    position: relative;
    padding: 80px 5% 100px; /* Reduced top padding */
    text-align: center;
    background-image: url('newheralycelint/capturingMoment.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    margin-top: 20px; /* Greatly reduced gap! */
}

.approach-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(243, 239, 233, 0.5); /* Lighter overlay */
}

.approach-content {
    position: relative;
    z-index: 1;
    color: #2f2f2f;
}

.approach-content .cursive {
    color: #2f2f2f;
}

.approach h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2f2f2f;
}

.approach-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.approach-images img {
    width: 25%;
    height: 300px;
    object-fit: cover;
}

.approach p {
    max-width: 600px;
    margin: 0 auto 40px auto; /* Added 40px bottom margin for gap */
    font-size: 1rem;
    color: #2f2f2f;
}

/* DESKTOP ONLY: Reorder elements so pictures are in the middle and text at the end */
@media (min-width: 1025px) {
    .approach-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .approach-content .cursive {
        order: 1;
    }
    .approach-content h2 {
        order: 2;
        margin-bottom: 50px;
    }
    .approach-images {
        order: 3;
        margin-bottom: 40px; /* Space between pictures and text */
        width: 100%; 
        max-width: 1000px; /* Gives them a nice wide space to fill */
    }
    .approach-images img {
        width: 32%; /* Increased width from 25% */
        height: 380px; /* Increased height slightly to keep them looking elegant and not squished */
    }
    .approach-content p {
        order: 4;
        margin: 0 auto; /* Remove bottom margin since it's the last element now */
    }
}

/* About Section */
.about {
    align-items: flex-start; /* Changed from center to align text manually */
    display: flex;
    padding: 100px 10%;
    gap: 50px;
    background-color: #F3EFE9;
}

.about-images {
    width: 50%;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-main-img {
    width: 65%;
    height: auto;
    object-fit: cover;
}

.about-sub-img {
    width: 30%;
    height: auto;
    object-fit: cover;
}

.about-text {
    width: 50%;
    margin-top: 12vw; /* Pushes the text down to align exactly below the 2nd (small) image */
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #747e5e;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #747e5e;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #747e5e;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Banner */
.season-banner {
    background-image: url('newheralycelint/IMG_0432.jpg');
    background-size: cover; /* Fills the space so there are no black bars */
    background-position: center;
    padding: 120px 5%;
    text-align: left;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
}

.season-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Removed the heavy black gradient that looked like a crop, replaced with a light transparent overlay just so text is readable */
    background: rgba(0, 0, 0, 0.2);
}

.season-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.season-subtitle {
    font-size: 0.9rem; /* Slightly smaller */
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 400;
}

.season-lines h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 300;
}

/* Testimonials */
.testimonials {
    padding: 100px 5% 30px; /* Reduced bottom padding */
    text-align: center;
    background-color: #F3EFE9;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    animation: fade 0.5s ease-in-out;
}

.testimonial.active {
    display: block;
}

@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.quote {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #2f2f2f;
    font-style: normal;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.author {
    font-size: 1rem;
    letter-spacing: 2px;
}

/* Slider Controls */
.slider-controls {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #d1cdc4;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #747e5e;
}

/* Moments */
.moments {
    align-items: center;
    display: flex;
    padding: 30px 5% 100px; /* Reduced top padding */
    gap: 40px;
    background-color: #F3EFE9;
}

.moments-img-left, .moments-img-right {
    width: 30%;
}

.moments-img-left img, .moments-img-right img {
    width: 100%;
    height: auto;
}

.moments-center {
    width: 40%;
    text-align: center;
    background-color: #EAE6DF;
    padding: 60px 40px;
}

.moments-center h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #747e5e;
}

.moments-center p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.btn-line {
    display: inline-block;
    padding: 10px 0;
    border-bottom: 1px solid #747e5e;
    letter-spacing: 2px;
}

/* Contact CTA */
.contact-cta {
    background-image: url('newheralycelint/AM5A6932.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 10%; /* Greatly reduced top and bottom gap */
    position: relative;
    color: white;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.cta-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-left {
    width: 50%;
}

.cta-left h2 {
    font-size: 3rem;
    margin-bottom: 0;
    line-height: 1.2;
}

.cta-right {
    width: 50%;
    text-align: left;
}

.cta-right p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.btn-solid {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.btn-solid:hover {
    background-color: white;
    color: black;
}

/* Footer */
.footer {
    padding: 60px 5% 30px; /* Reduced top gap below get in touch */
    background-color: #F3EFE9;
}

.footer-top {
    align-items: center;
    display: flex;
    justify-content: space-between;
    
    margin-bottom: 80px;
}

.footer-text {
    width: 30%;
}

.footer-text .cursive {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer-text h2 {
    font-size: 1.8rem;
    color: #747e5e;
    letter-spacing: 2px;
}

.insta-feed {
    width: 65%;
    display: flex;
    gap: 15px;
}

.insta-feed img {
    width: calc(25% - 15px); /* 4 images across */
    height: 250px;
    object-fit: cover;
}

.insta-feed img:nth-child(5),
.insta-feed img:nth-child(6) {
    display: none; /* Hide the last 2 images on desktop */
}

.footer-bottom {
    align-items: center;
    display: flex;
    justify-content: space-between;
    
    border-top: 1px solid #e0ddd5;
    padding-top: 20px;
}

.social-icons {
    display: flex;
    gap: 20px;
    font-weight: bold;
    color: #747e5e;
}

.copyright {
    font-size: 0.9rem;
    color: #747e5e;
}

/* Services Section */
.services {
    padding: 100px 5%;
    background-color: #F3EFE9;
    text-align: center;
}

.services-title {
    font-size: 3rem;
    color: #747e5e;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #EAE6DF;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 3px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #747e5e;
}

.service-card .price {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery {
    padding: 100px 5%;
    background-color: #EAE6DF;
    text-align: center;
}

.gallery-title {
    font-size: 3rem;
    color: #747e5e;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Hamburger Menu (hidden on desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 40px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background-color: #747e5e;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
        top: 35px; /* Keeps the toggle securely at the top right corner, exactly in the center of the 70px header! */
        transform: translateY(-50%);
        right: 20px;
        position: absolute;
    }

    .navbar {
        align-items: center;
        justify-content: center;
        position: fixed;
        flex-direction: row; 
        padding: 0 5%;
        height: 70px;
        background-color: #F3EFE9;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    
    .navbar.scrolled {
        padding: 0 5%;
        box-shadow: none;
    }

    .nav-logo img, .navbar.scrolled .nav-logo img {
        height: 141px; 
        margin-top: 0; 
    }
    
    .nav-left, .nav-right {
    align-items: center;
        display: none;
        width: 100%;
        flex-direction: column;
        
        text-align: center;
        margin-top: 20px;
    }

    .nav-row {
        flex-direction: column;
        gap: 15px;
    }

    .navbar.mobile-open {
        height: 100vh;
        flex-direction: column; 
        justify-content: center; /* Centers the links perfectly in the middle of the screen */
        padding-top: 0;
    }

    .navbar.mobile-open .nav-link {
        font-size: 1.4rem; /* Makes the links bigger and easier to read! */
    }

    .navbar.mobile-open .nav-logo {
        display: none; /* Hide logo when menu is open as requested */
    }

    .navbar.mobile-open .nav-left, 
    .navbar.mobile-open .nav-right {
    align-items: center;
        display: flex;
    }
    
    /* Hamburger Animation */
    .navbar.mobile-open .hamburger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .navbar.mobile-open .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .navbar.mobile-open .hamburger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 70px 5% 10px; /* Keep top 70px, but use 10px bottom to reduce gap */
    }
    .hero-content {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
    .hero-left, .hero-right {
        width: 100%;
    }
    .hero-subtitle {
        align-self: center;
        padding-left: 0;
        margin-bottom: 20px;
    }
    .hero-img-1 {
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-bottom-text {
        padding-left: 0;
    }
    
    .approach-images {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .approach-images img {
        width: 31%;
        max-width: none;
        height: 200px; /* Increased height as requested! */
        object-fit: cover; /* Ensures the images don't stretch weirdly */
    }
    
    .about {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        padding: 50px 5%;
    }
    .about-images, .about-text {
        width: 100%;
        margin-top: 0; /* Reset desktop margin */
    }
    .about-images {
        display: flex;
        flex-direction: row;
        gap: 15px;
        margin-bottom: 30px;
        justify-content: flex-start;
    }
    .about-main-img {
        width: 65%;
    }
    .about-sub-img {
        width: 30%;
    }
    .season-banner {
        padding: 80px 5%; /* adjusted padding so it's not too short for cover */
        background-position: center; 
        background-size: cover; 
    }
    
    .season-subtitle {
        font-size: 0.65rem; /* Made even smaller */
        margin-bottom: 20px;
    }

    .season-lines h2 {
        font-size: 0.95rem; /* Made smaller */
        margin-bottom: 10px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .moments {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 20px 5% 50px;
        gap: 10px; /* OVERRIDE DESKTOP GAP TO PREVENT WRAPPING */
    }
    .moments-center {
        order: 1;
        width: 100%;
        margin-bottom: 0px; /* Adjusted gap to image */
        padding: 40px 20px;
    }
    .moments-center h2 {
        font-size: 2.2rem !important; 
        line-height: 1.1;
    }
    .moments-img-left {
        order: 2;
        width: calc(50% - 5px); /* Exactly half minus half the gap */
    }
    .moments-img-right {
        order: 3;
        width: calc(50% - 5px); /* Exactly half minus half the gap */
    }
    .moments-img-left img, .moments-img-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 4/5; /* Make sure both images are exactly the same height */
    }
    
    .footer-top {
    align-items: center;
        flex-direction: column;
        text-align: center;
    }
    .footer-text, .insta-feed {
        width: 100%;
    }
    .footer-text {
        margin-bottom: 40px;
    }
    .insta-feed {
        display: flex;
        flex-wrap: wrap;
        gap: 10px; /* Use gap for consistent spacing between all items */
        justify-content: center; /* Center the collage */
        margin-top: 30px;
    }
    .insta-feed img {
        width: calc(50% - 5px); /* Exactly half minus half the gap */
        height: auto;
        aspect-ratio: 1/1; /* Enforce square collage look */
        margin-bottom: 0; /* Let gap handle spacing */
    }
    .insta-feed img:nth-child(5),
    .insta-feed img:nth-child(6) {
        display: block; /* Show the extra images on mobile! */
    }
    
    .contact-cta {
        padding: 50px 5%; /* Even smaller gap on mobile */
    }
    .cta-container {
        flex-direction: column;
        gap: 30px;
    }
    .cta-left, .cta-right {
        width: 100%;
        text-align: left; /* Keep left alignment as requested */
    }
    .cta-left h2 {
        font-size: 2rem; /* Ensure it's readable on mobile */
        margin-bottom: 10px;
    }
}

/* World-Class Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Premium Cinematic Scroll-Reveal System
   Used on: Index page + About (Get To Know Me) page
   Pure opacity/transform/filter transitions toggled by a single class
   (.is-visible) via IntersectionObserver in each page's script. Nothing here
   changes layout, size, spacing or document flow — only how elements
   fade/slide/scale into view as the user scrolls, in a heading -> text ->
   image storytelling order per section.
   ========================================================================== */
.reveal {
    opacity: 0;
    transition-property: opacity, transform, filter;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
}

/* Headings: gentle rise with a soft focus-in blur for an editorial feel */
.reveal-heading {
    transform: translateY(40px);
    filter: blur(6px);
}

/* Body copy: a lighter, quicker rise so it reads as "content following the headline" */
.reveal-text {
    transform: translateY(24px);
    transition-duration: 0.9s;
}

/* Buttons / links: small, crisp pop-in after their related copy */
.reveal-cta {
    transform: translateY(16px);
    transition-duration: 0.75s;
}

/* Images: soft cinematic settle — subtle zoom-out + rise, slightly longer */
.reveal-image {
    transform: translateY(32px) scale(1.035);
    transition-duration: 1.2s;
}

/* Directional image variants for side-by-side storytelling sections */
.reveal-left {
    transform: translateY(18px) translateX(-50px);
    transition-duration: 1.15s;
}

.reveal-right {
    transform: translateY(18px) translateX(50px);
    transition-duration: 1.15s;
}

/* Simple fade only, no movement — used for full-bleed backdrops */
.reveal-fade {
    transform: none;
    transition-duration: 1.1s;
}

/* Stagger delay utilities — applied alongside .reveal to sequence a section */
.d-0 { --reveal-delay: 0ms; }
.d-1 { --reveal-delay: 110ms; }
.d-2 { --reveal-delay: 220ms; }
.d-3 { --reveal-delay: 330ms; }
.d-4 { --reveal-delay: 440ms; }
.d-5 { --reveal-delay: 550ms; }
.d-6 { --reveal-delay: 660ms; }
.d-7 { --reveal-delay: 770ms; }
.d-8 { --reveal-delay: 880ms; }
.d-9 { --reveal-delay: 990ms; }

@media (max-width: 768px) {
    /* Shorter throws + quicker cadence so mobile scrolling never feels held up */
    .reveal-heading { transform: translateY(24px); filter: blur(4px); }
    .reveal-text { transform: translateY(16px); }
    .reveal-cta { transform: translateY(12px); }
    .reveal-image { transform: translateY(20px) scale(1.02); }
    .reveal-left { transform: translateY(14px) translateX(-24px); }
    .reveal-right { transform: translateY(14px) translateX(24px); }

    .d-0 { --reveal-delay: 0ms; }
    .d-1 { --reveal-delay: 70ms; }
    .d-2 { --reveal-delay: 140ms; }
    .d-3 { --reveal-delay: 210ms; }
    .d-4 { --reveal-delay: 280ms; }
    .d-5 { --reveal-delay: 350ms; }
    .d-6 { --reveal-delay: 420ms; }
    .d-7 { --reveal-delay: 490ms; }
    .d-8 { --reveal-delay: 560ms; }
    .d-9 { --reveal-delay: 630ms; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-heading,
    .reveal-text,
    .reveal-cta,
    .reveal-image,
    .reveal-left,
    .reveal-right,
    .reveal-fade {
        transition: none !important;
        transform: none !important;
        filter: none !important;
        opacity: 1 !important;
    }
}

@media (max-width: 600px) {
    .nav-row, .nav-left, .nav-right {
    align-items: center;
        flex-direction: column;
        gap: 15px;
    }
    .hero-bottom-text h1, .banner h2, .about-text h2, .approach h2, .moments-center h2, .cta-left h2 {
        font-size: 1.5rem;
    }
    .cursive {
        font-size: 2.2rem;
        white-space: nowrap; /* Prevents it from breaking into two lines */
    }
    .banner {
        padding: 100px 20px;
    }
    .insta-feed img {
        width: calc(50% - 5px); /* Forces 2 per row instead of 1 */
        margin-bottom: 10px;
    }
    .footer-bottom {
    align-items: center;
        flex-direction: column;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}


