/* --- THEME COLORS --- */
:root {
    --primary-sage: #8da399;
    --soft-cream: #f9f7f2;
    --slate-text: #4a4a4a;
    --white: #ffffff;
    --accent-gold: #c5a880;
}

/* --- GENERAL STYLES --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--slate-text);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3 { font-weight: 300; letter-spacing: 1px; color: var(--slate-text); }

/* --- NAVIGATION --- */
header {
    background: var(--white);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Add this to the NAVIGATION section of styles.css */
.logo {
    height: 50px;    /* This keeps it small and consistent */
    width: auto;      /* This maintains the aspect ratio so it doesn't look stretched */
    display: block;   /* Removes any extra space at the bottom of the image */
}

.navbar { display: flex; justify-content: space-between; align-items: center; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 1.2rem; margin: 0; }

.nav-links a { text-decoration: none; color: var(--slate-text); transition: 0.3s; font-size: 0.95rem; }

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

.book-now-btn {
    background-color: var(--primary-sage);
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
}

/* --- HERO SECTION --- */
.hero {
    height: 40vh;
    /* CHANGE HERO IMAGE: Replace the URL below with your high-res spa photo */
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                url('stonesbamboo.webp') no-repeat center center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center; color: white;
}

.hero h1 { font-size: 3.5rem; color: white; margin-bottom: 0.5rem; }

/* --- BUTTONS --- */
.cta-button {
    display: inline-block;
    background-color: var(--accent-gold);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button.mini { padding: 8px 20px; font-size: 0.85rem; margin-top: 15px; }

/* --- SECTIONS & GRIDS --- */
.service-section { padding: 80px 10%; text-align: center; }
.alt-bg { background-color: var(--soft-cream); }

.content-grid { display: flex; align-items: flex-start; gap: 60px; margin-top: 40px; text-align: left; }
.reverse { flex-direction: row-reverse; }

.text-block { flex: 1; }
.image-block { flex: 1; }
.image-block img { width: 100%; border-radius: 4px; display: block; }

/* --- PRICING TABLES --- */
.price-table { width: 100%; margin: 20px 0; border-collapse: collapse; }
.price-table td { padding: 15px 0; border-bottom: 1px solid #eee; }
.price-table td:last-child { text-align: right; font-weight: bold; color: var(--primary-sage); }

/* --- PACKAGE CARDS --- */
.package-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.card { background: white; padding: 40px; border: 1px solid #eee; transition: 0.3s; display: flex;
    flex-direction: column; justify-content: space-between;}
.card:hover { border-color: var(--primary-sage); }
.book-link { color: var(--primary-sage); text-decoration: none; font-weight: bold; }

/* --- FAQ --- */
.faq-container { max-width: 800px; margin: 40px auto 0; text-align: left; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-question { width: 100%; background: none; border: none; padding: 20px 0; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between; color: var(--slate-text); }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.3s ease-out; color: #666; }
.faq-answer.open { max-height: 1000px; padding-bottom: 20px; }
.toggle-icon { color: var(--primary-sage); font-weight: bold; }

/* --- NESTED ACCORDION FIX --- */
.faq-container.nested {
    margin-top: 10px;
    border-top: 1px solid #eee;
}

.nested .faq-question {
    font-size: 1rem; /* Slightly smaller for nested items */
    padding: 15px 5px;
}

/* Ensure parent can expand even more for nested items */
.faq-answer.open {
    max-height: 2000px; /* Increased from 1000px to accommodate nested tables */
}

/* --- CONTACT --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; text-align: left; margin-top: 40px; }
.contact-item { margin-bottom: 20px; }
.contact-info a { color: var(--primary-sage); text-decoration: none; }
.contact-form-container form { display: flex; flex-direction: column; gap: 15px; }
.contact-form-container input, .contact-form-container textarea { padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; }

/* --- RESPONSIVE --- */
.mobile-menu-btn { display: none; font-size: 1.8rem; background: none; border: none; cursor: pointer; color: var(--primary-sage); }

@media (max-width: 768px) {
    .navbar { position: relative; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: -5%; width: 110%; background: white; padding: 20px; box-shadow: 0 10px 10px rgba(0,0,0,0.05); }
    .nav-links.active { display: flex; max-height: 100vh; overflow-y: auto;}
    .mobile-menu-btn { display: block; }
    .content-grid, .content-grid.reverse, .contact-grid { flex-direction: column-reverse; grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.2rem; }
    .price-table td { font-size: 0.9rem; }
}

footer { background: #333; color: #ccc; padding: 40px; text-align: center; font-size: 0.85rem; }

/* Gift Card Section Styling */
.gift-card-container {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--soft-cream);
    border-radius: 4px;
    text-align: center;
}

.gift-card-container h3 {
    margin-top: 0;
    color: var(--primary-sage);
    font-weight: 400;
}

.gift-card-container p {
    max-width: 600px;
    margin: 0 auto 25px;
    color: var(--slate-text);
}

.section-divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 40px auto;
    width: 50%;
}