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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F8F6F0; /* Lighter cream/beige from screenshot */
    color: #6B6653; /* Olive/brownish grey */
    line-height: 1.6;
}

h1, h2, h3, .cinzel {
    font-family: 'Cinzel', serif;
    font-weight: 400;
}

.cursive {
    font-family: 'Alex Brush', cursive;
    font-size: 2.5rem;
    color: black;
    display: block;
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: #7A7563;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #F8F6F0; /* 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 {
    display: flex;
    gap: 30px;
    align-items: center;
    width: 33.33%;
    justify-content: flex-end;
}

.nav-link {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.nav-logo {
    display: flex;
    justify-content: center;
    align-items: 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% 100px; /* Increased top padding to account for fixed navbar */
}

.hero-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.hero-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.4;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #7A7563;
    align-self: flex-start;
    padding-left: 10%;
}

.hero-img-1 {
    width: 100%;
    max-width: 400px;
}

.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;
}

.hero-bottom-text h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    color: #5d5948;
}

/* Approach Section */
.approach {
    position: relative;
    padding: 150px 5% 100px;
    text-align: center;
    background-image: url('newheralycelint/AM5A9112.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    margin-top: 100px;
}

.approach-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4); /* Lighter overlay */
}

.approach-content {
    position: relative;
    z-index: 1;
    color: #333;
}

.approach h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #444;
}

.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;
    font-size: 1rem;
    color: #333;
}

/* About Section */
.about {
    display: flex;
    padding: 100px 10%;
    gap: 50px;
    align-items: center;
    background-color: #F8F6F0;
}

.about-images {
    width: 50%;
    position: relative;
    display: flex;
}

.about-main-img {
    width: 80%;
    height: auto;
}

.about-sub-img {
    width: 40%;
    position: absolute;
    right: 0;
    top: 20px;
}

.about-text {
    width: 50%;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #5d5948;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #6B6653;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #7A7563;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Banner */
.banner {
    background-image: url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center center;
    padding: 250px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.banner h2 {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    letter-spacing: 5px;
}

/* Testimonials */
.testimonials {
    padding: 100px 20%;
    text-align: center;
    background-color: #F8F6F0;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    min-height: 200px; /* Provides space so the layout doesn't jump */
}

.testimonial {
    display: none;
    animation: fade 1s ease-in-out;
}

.testimonial.active {
    display: block;
}

@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.quote {
    font-size: 1.3rem;
    font-style: italic;
    margin: 30px 0;
}

.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: #7A7563;
}

/* Moments */
.moments {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 40px;
    background-color: #F8F6F0;
}

.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: #EBE5DB;
    padding: 60px 40px;
}

.moments-center h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #5d5948;
}

.moments-center p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.btn-line {
    display: inline-block;
    padding: 10px 0;
    border-bottom: 1px solid #7A7563;
    letter-spacing: 2px;
}

/* Contact CTA */
.contact-cta {
    background-image: url('newheralycelint/AM5A6932.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 10%;
    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-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.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: 100px 5% 30px;
    background-color: #F8F6F0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    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: #5d5948;
    letter-spacing: 2px;
}

.insta-feed {
    width: 65%;
    display: flex;
    gap: 15px;
}

.insta-feed img {
    width: calc(25% - 15px);
    height: 250px;
    object-fit: cover;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0ddd5;
    padding-top: 20px;
}

.social-icons {
    display: flex;
    gap: 20px;
    font-weight: bold;
    color: #7A7563;
}

.copyright {
    font-size: 0.9rem;
    color: #7A7563;
}

/* Services Section */
.services {
    padding: 100px 5%;
    background-color: #F8F6F0;
    text-align: center;
}

.services-title {
    font-size: 3rem;
    color: #5d5948;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #EBE5DB;
    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: #5d5948;
}

.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: #EBE5DB;
    text-align: center;
}

.gallery-title {
    font-size: 3rem;
    color: #5d5948;
    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: #7A7563;
    transition: all 0.3s ease;
}

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

    .navbar {
        position: relative;
        flex-direction: column;
        padding: 20px 5%;
        background-color: #F8F6F0;
    }
    
    .navbar.scrolled {
        padding: 20px 5%;
        box-shadow: none;
    }

    .nav-logo img, .navbar.scrolled .nav-logo img {
        height: 100px;
    }
    
    .nav-left, .nav-right {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 20px;
    }

    .nav-row {
        flex-direction: column;
        gap: 15px;
    }

    .navbar.mobile-open .nav-left, 
    .navbar.mobile-open .nav-right {
        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: 50px 5% 50px; /* Reset padding because navbar is now relative */
    }
    .hero-content {
        flex-direction: column;
        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;
    }
    
    .approach-images {
        flex-direction: column;
        align-items: center;
    }
    .approach-images img {
        width: 100%;
        max-width: 400px;
    }
    
    .about {
        flex-direction: column;
        text-align: center;
        padding: 50px 5%;
    }
    .about-images, .about-text {
        width: 100%;
    }
    .about-images {
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .moments {
        flex-direction: column;
        padding: 50px 5%;
    }
    .moments-img-left, .moments-img-right, .moments-center {
        width: 100%;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    .footer-text, .insta-feed {
        width: 100%;
    }
    .footer-text {
        margin-bottom: 40px;
    }
    .insta-feed {
        flex-wrap: wrap;
        justify-content: center;
    }
    .insta-feed img {
        width: calc(50% - 15px);
        margin-bottom: 15px;
    }
}

@media (max-width: 600px) {
    .nav-row, .nav-left, .nav-right {
        flex-direction: column;
        gap: 15px;
    }
    .hero-bottom-text h1, .banner h2, .about-text h2, .approach h2, .moments-center h2, .cta-content h2 {
        font-size: 2rem;
    }
    .banner {
        padding: 100px 20px;
    }
    .insta-feed img {
        width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}
