/* --- Global Reset & Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-light: #fbf9f6;
    --sage-green: #8da290;
    --sage-dark: #6b7f6e;
    --terracotta: #c48b64;
    --text-dark: #3a3a3a;
    --text-light: #707070;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Typography Helper Utility --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    text-transform: lowercase; /* Matching original image styling */
    letter-spacing: 1px;
}

.subtitle {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--terracotta);
    display: block;
    margin-bottom: 10px;
}

/* --- Buttons --- */
.btn-primary, .btn-secondary, .btn-white {
    display: inline-block;
    padding: 12px 30px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-primary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}
.btn-primary:hover {
    background-color: #fff;
    color: var(--text-dark);
}

.btn-secondary {
    background-color: var(--terracotta);
    color: #fff;
    border: none;
    margin-top: 20px;
}
.btn-secondary:hover {
    background-color: #b07753;
}

.btn-white {
    background-color: #fff;
    color: var(--text-dark);
    border: none;
}
.btn-white:hover {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/* --- Navigation --- */
/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 3px;
    z-index: 1001; /* Stay above mobile menu background overlays */
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    margin: 0 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--terracotta);
}

.cta-btn-nav {
    border: 1px solid var(--sage-green);
    color: var(--sage-green);
    padding: 8px 20px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.cta-btn-nav:hover {
    background-color: var(--sage-green);
    color: white;
}

.mobile-only {
    display: none;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.hamburger .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease-in-out;
}

/* Hamburger Animation Transform when Active */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
        margin-top: 20px;
        text-align: center;
    }

    .hamburger {
        display: flex;
       
    }

    /* Transforming nav links into a mobile slide-down drawer menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.05);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 1.2rem; /* Larger links easy to tap on mobile */
    }
}

/* --- Hero Section --- */
.hero {
    height: 80vh;
    background-image: url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.25);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* --- Social Badges Bar --- */
.badges-bar {
    background-color: var(--sage-green);
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px 10%;
    text-align: center;
}

.badge {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.badge span {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.9;
}

/* --- Intro Section --- */
.intro-section {
    padding: 100px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-text p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 15px;
}

.intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* --- Texture Divider Banner --- */
.texture-divider {
    height: 250px;
    background-image: url('https://images.unsplash.com/photo-1556228453-efd6c1ff04f6?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    opacity: 0.75;
}

/* --- Philosophy Section --- */
.philosophy-section {
    padding: 100px 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.philosophy-image img {
    width: 100%;
    border-radius: 120px 120px 0 0; /* Aesthetic rounded look from design */
}

.philosophy-text h3 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--terracotta);
}

.philosophy-text p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* --- Gift Callout Banner --- */
.gift-banner {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    text-align: center;
    color: white;
}

.gift-banner h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.gift-banner p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* --- Testimonials --- */
.testimonials {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.testimonial-slider {
    position: relative;
    max-width: 700px;
    margin: 40px auto 0 auto;
    min-height: 150px;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide p {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.slide .author {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

.slider-controls {
    margin-top: 35px;
}

.slider-controls button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin: 0 15px;
    color: var(--text-light);
    transition: 0.2s;
}

.slider-controls button:hover {
    color: var(--terracotta);
}

/* --- Rates / Pricing Section --- */
.pricing-section {
    background-color: #eddcd2; /* Soft warm terracotta undertone layout tint */
    padding: 100px 0;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.pricing-info h3 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.rates-display {
    margin: 30px 0;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 1.1rem;
}

.rate-item strong {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--terracotta);
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-img-box img {
    width: 100%;
    border-radius: 50% 50% 0 0; /* Arched design aspect matching original look */
    height: 450px;
    object-fit: cover;
}

/* --- Main Footer Section --- */
.main-footer {
    background-color: var(--sage-dark);
    color: #fff;
    padding: 80px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-form h3, .footer-hours h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-form input, .footer-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-family: var(--font-sans);
}

.footer-form input::placeholder, .footer-form textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.btn-submit {
    background-color: #fff;
    color: var(--sage-dark);
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Map Frame Mock Accent */
.footer-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-box {
    background-color: #fff;
    color: #000;
    padding: 30px;
    width: 100%;
    max-width: 320hpx;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--terracotta);
    text-decoration: none;
    font-weight: bold;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.footer-phone {
    margin-top: 25px;
}

.footer-phone a {
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-serif);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* --- Media Queries / Responsive Adjustments --- */
@media (max-width: 992px) {
    .intro-section, .philosophy-section, .pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-links a {
        margin: 5px 10px;
    }
    .badges-bar {
        flex-direction: column;
        gap: 20px;
    }
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}