/* Variables & Reset */
:root {
    --primary: #2c3e2e; /* Deep Forest Green */
    --accent: #cfa76e;  /* Warm Wood/Gold */
    --light: #f4f7f4;   /* Off-white */
    --dark: #1a1a1a;
    --text: #4a4a4a;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: #fff;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-head);
    color: var(--primary);
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; }

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: clamp(4rem, 8vw, 6rem) 0; }
.bg-light { background-color: var(--light); }

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.full-width { width: 100%; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

.nav-links a { font-weight: 500; font-size: 0.95rem; }
.btn-nav {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.hamburger { display: none; cursor: pointer; }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: 0.4s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active { right: 0; }
.mobile-menu a { font-size: 1.5rem; font-family: var(--font-head); }
.close-menu { position: absolute; top: 2rem; right: 2rem; cursor: pointer; }

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    /* Unsplash nature background */
    background: url('https://images.unsplash.com/photo-1510798831971-661eb04b3739?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.hero-content h1 em {
    font-family: var(--font-head);
    font-style: italic;
    color: #e0e0e0;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 1.5rem 0 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Amenities */
.section-header { text-align: center; margin-bottom: 3rem; }

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.amenity-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: var(--radius);
    transition: var(--transition);
}

.amenity-card:hover { border-color: var(--accent); }
.amenity-card svg { color: var(--accent); width: 40px; height: 40px; margin-bottom: 1rem; }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1rem;
}

.g-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
}

.g-img.main {
    grid-column: span 2;
    grid-row: span 2;
}

.g-img:hover { transform: scale(1.02); }

/* Booking & Map */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.booking-form-wrapper {
    background: #fff;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.text-sm { font-size: 0.9rem; font-weight: 400; color: #777; }

.form-group { margin-bottom: 1rem; }
.form-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

label { display: block; font-size: 0.9rem; margin-bottom: 0.5rem; font-weight: 600; }
input, select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

.form-note { font-size: 0.8rem; color: #888; text-align: center; margin-top: 1rem; }

.contact-direct { margin-top: 2rem; padding-top: 2rem; border-top: 1px dashed #ddd; }
.contact-direct p { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.contact-direct svg { width: 18px; height: 18px; color: var(--accent); }

.map-frame {
    width: 100%;
    height: 400px;
    background: #eee;
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
}

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

.socials a { color: rgba(255,255,255,0.7); margin-left: 1rem; }

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .g-img.main { grid-column: span 2; }
    .split-layout { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    
    .hero h1 { font-size: 2.5rem; }
    
    .form-group-row { grid-template-columns: 1fr; }
    
    .footer-content { flex-direction: column; gap: 1rem; }
}