:root {
    /* Palette */
    --color-bg: #0f0f10;          /* Deep Charcoal Background */
    --color-bg-secondary: #1a1a1d; 
    --color-text: #f0f0f0;        /* Off-white text */
    --color-text-muted: #a0a0a0;
    
    --color-gold: #D4AF37;        /* Benin Bronze/Gold */
    --color-clay: #A0522D;        /* Terracotta/Earth */
    --color-accent: #cd7f32;      /* Bronze */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --container-width: 1200px;
    --header-height: 80px;
}

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

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

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; }
.gold-text { color: var(--color-gold); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 20px;
}
.btn:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

.btn-book {
    background: var(--color-gold);
    color: var(--color-bg) !important;
    padding: 10px 20px;
    border-radius: 2px;
    font-weight: 600;
}

/* Header */
.main-header {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: rgba(15, 15, 16, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.main-nav ul { display: flex; align-items: center; }
.main-nav a { text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-muted); }
.main-nav a:hover { color: var(--color-gold); }

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--color-text-muted);
}

/* Pillars Section */
.pillars-section { padding: 80px 5%; background: var(--color-bg); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; color: var(--color-gold); margin-bottom: 15px; }
.section-header p { max-width: 600px; margin: 0 auto; color: var(--color-text-muted); }
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.pillar-card { background: var(--color-bg-secondary); padding: 40px 30px; text-align: center; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.pillar-card:hover { border-color: var(--color-gold); transform: translateY(-5px); }
.pillar-icon { font-size: 2rem; color: var(--color-gold); margin-bottom: 20px; }
.pillar-card h3 { margin-bottom: 15px; font-size: 1.4rem; }
.pillar-card p { font-size: 0.9rem; color: var(--color-text-muted); }

/* Experience Split Section */
.split-section { display: flex; flex-wrap: wrap; }
.split-image { flex: 1 1 500px; min-height: 500px; background: #333; background-size: cover; background-position: center; }
.split-content { flex: 1 1 500px; padding: 80px; display: flex; flex-direction: column; justify-content: center; background: #151515; }
.split-content h2 { font-size: 2.5rem; margin-bottom: 20px; }
.split-content p { margin-bottom: 30px; color: var(--color-text-muted); }

/* Footer */
.main-footer { background: #050505; padding: 80px 5% 20px; border-top: 1px solid #222; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 60px; }
.footer-brand h3 { color: var(--color-gold); margin-bottom: 15px; }
.footer-links h4, .footer-newsletter h4 { margin-bottom: 20px; color: #fff; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--color-text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--color-gold); }
.footer-bottom { text-align: center; color: #444; font-size: 0.8rem; border-top: 1px solid #111; padding-top: 20px; }

/* Mobile Nav */
.mobile-nav-toggle { display: none; font-size: 1.5rem; cursor: pointer; position: fixed; right: 20px; top: 20px; z-index: 1100; }
.mobile-menu-overlay { position: fixed; top: 0; right: -100%; width: 80%; height: 100vh; background: var(--color-bg-secondary); z-index: 1050; transition: 0.4s ease; padding: 40px; border-left: 1px solid var(--color-gold); }
.mobile-menu-overlay.active { right: 0; }
.mobile-links li { margin-bottom: 20px; }
.mobile-links a { font-size: 1.2rem; font-family: var(--font-heading); }

/* Forms */
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }
.form-group label { font-size: 0.9rem; letter-spacing: 0.5px; }
.form-group input:focus { border-color: var(--color-gold) !important; outline: none; }

/* Active Menu State */
.main-nav a.active { color: var(--color-gold); border-bottom: 1px solid var(--color-gold); padding-bottom: 5px; }

/* Final Polish Spacing */
.main-nav ul { gap: 18px; }
.main-nav a { font-size: 0.8rem; letter-spacing: 0.5px; }

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #0a0a0a;
    border-top: 1px solid #333;
    z-index: 999;
    justify-content: space-around;
    align-items: center;
}
.mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; color: #888; font-size: 0.7rem; flex-grow: 1; }
.mobile-bottom-nav a i { font-size: 1.2rem; margin-bottom: 2px; }
.mobile-bottom-nav a.active { color: var(--color-gold); }
.mobile-bottom-nav a.book-button { background: var(--color-gold); color: #000; font-weight: bold; font-size: 1rem; height: 100%; }

/* === RESPONSIVE STYLES === */
@media (max-width: 768px) {
    .main-nav { display: none; }
    .mobile-nav-toggle { display: block; }

    .hero-content h1 { font-size: 2.5rem; }
    .split-content { padding: 40px; }
    .split-section { flex-direction: column !important; }
    .split-image { height: 300px; min-height: 300px; }

    /* The Definitive Fix for Mobile Footer */
    .mobile-bottom-nav {
        display: flex;
    }
    body {
        padding-bottom: 60px; /* This adds space to the entire page, preventing overlap */
    }
}
