:root {
    /* Palette */
    --bg-main: #F4EFE7;       /* Sand White */
    --bg-card: #E9E1D6;       /* Warm Pebble */
    --bg-white: #FFFFFF;
    
    --primary: #AFCFC5;       /* Mint Cabinet */
    --primary-hover: #90B9AE; /* Seafoam Green */
    --accent: #7AA39A;        /* Dusty Sage */
    
    --wood: #C79963;          /* Olive Wood */
    
    --grey-panel: #D5D6D4;    /* Light Stone Grey */
    --text-body: #5B5E5A;     /* Deep Slate - Using for main text for readability */
    --text-light: #8D8F8C;    /* Mid Warm Grey */
    --text-heading: #5B5E5A;  /* Deep Slate */
    
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --spacing-unit: 1rem;
    --border-radius: 8px;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.05);
}

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

body {
    font-family: var(--font-main);
    color: var(--text-body);
    background-color: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Header --- */
header {
    background-color: rgba(244, 239, 231, 0.95); /* --bg-main with opacity */
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo span {
    color: var(--wood);
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-heading);
    font-size: 0.95rem;
}

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

.lang-switcher select {
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--accent);
    border-radius: 4px;
    background: transparent;
    color: var(--text-heading);
    font-family: inherit;
    cursor: pointer;
}

.lang-switcher select:focus {
    outline: none;
    border-color: var(--wood);
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-heading);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-main);
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--primary);
    color: #fff; /* White text for contrast on mint */
    border-radius: 50px; /* Pill shape */
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(175, 207, 197, 0.4);
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(175, 207, 197, 0.6);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--text-heading);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--text-heading);
    box-shadow: none;
}

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

/* --- Hero Section --- */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('../assets/landscapeSunsetting.jpg');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
    position: relative;
    max-width: 100% !important; /* Override section max-width */
    margin: 0 !important; /* Override section margin */
}

.hero-content {
    max-width: 800px;
    opacity: 0; /* Start hidden for animation */
    transform: translateY(20px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #f0f0f0;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.2s; }
.fade-in-delay-2 { transition-delay: 0.4s; }
.fade-in-delay-3 { transition-delay: 0.6s; }

/* --- Sections --- */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-heading);
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--wood);
    margin: 1rem auto 0;
    border-radius: 2px;
}

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

.highlight-card {
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.5);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.highlight-card h3 {
    color: var(--text-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- Gallery Preview --- */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-preview img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform 0.5s ease;
}

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

/* --- Forms --- */
.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--grey-panel);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

label {
    font-weight: 500;
    color: var(--text-heading);
    font-size: 0.9rem;
}

input, textarea, select {
    padding: 1rem;
    border: 1px solid var(--grey-panel);
    border-radius: 4px;
    font-family: inherit;
    background-color: #FAFAFA;
    transition: border-color 0.3s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #fff;
}

/* --- Footer --- */
footer {
    background-color: var(--text-heading); /* Deep Slate */
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.footer-content p {
    color: #d0d0d0;
}

.footer-content a {
    color: var(--primary);
}

.footer-content a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.booking-link-small {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* --- Utilities --- */
.hidden {
    display: none;
}

.text-center {
    text-align: center;
}

.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Map Container */
.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Gallery Grid Page */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(91, 94, 90, 0.95); /* Deep Slate with opacity */
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--primary);
}
