/* --- CSS VARIABLES & RESET --- */
:root {
    --emerald-deep: #0F4D39;   /* Brand Primary */
    --emerald-dark: #093326;
    --gold: #D4AF37;           /* Brand Accent */
    --gold-hover: #b8962e;
    --sand: #FAF9F6;           /* Off-white background */
    --text-dark: #1A1A1A;
    --text-grey: #666666;
    --white: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--sand);
    overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; }
h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.5rem; color: var(--emerald-deep); }
h3 { font-size: 1.5rem; }
p { font-weight: 300; font-size: 1rem; color: var(--text-grey); }

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { font-size: 0.85rem; font-style: italic; opacity: 0.7; }
.subheading { 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.8rem; 
    color: var(--gold); 
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--emerald-deep); }

.btn-outline-dark {
    background: transparent;
    color: var(--emerald-deep);
    border-color: var(--emerald-deep);
}
.btn-outline-dark:hover { background: var(--emerald-deep); color: var(--white); }

.btn-full { width: 100%; background: var(--emerald-deep); color: white; border: none; }
.btn-full:hover { background: var(--emerald-dark); }

/* --- LAYOUT UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.text-center { text-align: center; }
.align-center { align-items: center; }
.bg-light { background: var(--white); }
.bg-emerald { background: var(--emerald-deep); }
.narrow { max-width: 700px; margin: 0 auto; }

/* --- NAVIGATION --- */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo img { 
    height: 80px; /* INCREASED from 50px to 80px */
    width: auto; 
    object-fit: contain; /* Ensures it doesn't stretch weirdly */
    display: block;
}
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a {
    text-decoration: none;
    color: var(--emerald-deep);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.mobile-toggle { display: none; font-size: 1.5rem; color: var(--emerald-deep); cursor: pointer; }

/* --- HERO --- */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1519225468359-2996bc01c309?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 77, 57, 0.75); /* Emerald overlay */
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-content p { color: rgba(255,255,255,0.9); margin-bottom: 2rem; font-size: 1.2rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; }

/* --- STATS SECTION --- */
.stats-section {
    background: var(--white);
    padding: 3rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    position: relative;
    top: -50px; /* Overlap hero */
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 4px;
}
.stats-grid { align-items: center; text-align: center; }
.stat-item h3 { color: var(--gold); font-size: 2rem; margin-bottom: 0.5rem; }
.stat-item p { font-size: 0.9rem; margin: 0; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.stat-divider { width: 1px; height: 50px; background: #eee; margin: 0 auto; }

/* --- ABOUT & SERVICES --- */
.about-image img { width: 100%; border-radius: 4px; box-shadow: var(--shadow); }
.feature-list { list-style: none; margin-top: 1.5rem; }
.feature-list li { margin-bottom: 0.8rem; display: flex; align-items: center; gap: 10px; }

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}
.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.icon-box { font-size: 2.5rem; color: var(--gold); margin-bottom: 1.5rem; }

/* --- BOOKING (Conspicuous) --- */
.booking-text .lead { color: rgba(255,255,255,0.8); margin-bottom: 3rem; }
.contact-methods { display: flex; flex-direction: column; gap: 2rem; }
.method { display: flex; gap: 1.5rem; align-items: flex-start; }
.method i { font-size: 2rem; margin-top: 5px; }
.method h4 { color: var(--white); margin-bottom: 0.3rem; }
.method p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 0.5rem; }
.link-gold { color: var(--gold); text-decoration: none; font-weight: 600; font-size: 0.9rem; }

.booking-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.booking-form h3 { color: var(--emerald-deep); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: #fafafa;
}
.form-group input:focus { outline: 1px solid var(--gold); background: white; }

/* --- FOOTER --- */
.footer { background: #082a20; color: white; padding: 4rem 0 2rem; text-align: center; }
.footer-logo { font-size: 2rem; color: var(--gold); margin-bottom: 0.5rem; }
.footer-info { margin: 2rem 0; }
.footer-info p { color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.social-links { margin-top: 1.5rem; }
.social-links a { color: white; margin: 0 10px; font-size: 1.2rem; transition: 0.3s; }
.social-links a:hover { color: var(--gold); }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    background: #25d366; color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* --- ANIMATIONS --- */
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.8s forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 2rem; }
    .nav-links, .nav-actions .btn { display: none; }
    .mobile-toggle { display: block; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-divider { width: 50px; height: 1px; margin: 1rem auto; }
    .booking-form-wrapper { padding: 2rem; }
}