/* --- Global Styles & Variables --- */
:root {
    --primary-color: #2c5b4c; /* Deep forest green */
    --secondary-color: #e8e4d8; /* Light beige */
    --accent-color: #d48c46; /* Earthy orange */
    --text-color: #333333;
    --light-text-color: #ffffff;
    --font-primary: 'Lora', serif;
    --font-secondary: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    margin: 0;
    background-color: #fdfdfa;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Navigation --- */
.main-header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--secondary-color);
}

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

.logo {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
}

.main-nav a {
    font-family: var(--font-secondary);
    margin-left: 25px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 400;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.nav-toggle {
    display: none; /* Hidden on desktop */
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0.5em;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.hamburger {
    display: block;
    position: relative;
    width: 2em;
    height: 3px;
    background: var(--primary-color);
    transition: transform 250ms ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transition: transform 250ms ease-in-out, opacity 250ms linear;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.main-nav.visible + .nav-toggle .hamburger {
    transform: rotate(0.625turn);
}

.main-nav.visible + .nav-toggle .hamburger::before {
    transform: rotate(90deg) translateX(-8px);
}
.main-nav.visible + .nav-toggle .hamburger::after {
    opacity: 0;
}

/* --- Main Content & Sections --- */
.content-section {
    padding: 60px 0;
}

.content-section h1 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--light-text-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 700;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #b97433;
}

/* --- Homepage Slideshow --- */
.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
    height: 60vh;
    min-height: 400px;
}

.slide {
    display: none;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.caption {
    color: #f2f2f2;
    font-size: 1.5rem;
    padding: 12px 20px;
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    font-family: var(--font-primary);
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* --- Calendar --- */
.calendar { max-width: 900px; margin: 2rem auto; border: 1px solid #ddd; padding: 20px; border-radius: 8px; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.calendar-header h2 { margin: 0; font-family: var(--font-secondary); }
.nav-arrow { text-decoration: none; color: var(--accent-color); font-weight: bold; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.day, .day-name { text-align: center; padding: 15px 5px; }
.day-name { font-weight: bold; font-family: var(--font-secondary); color: var(--primary-color); }
.day { border-radius: 4px; transition: background-color 0.3s; }
.day.today { background-color: var(--secondary-color); font-weight: bold; }
.day.booked { background-color: #e74c3c; color: white; cursor: not-allowed; }
.legend { margin-top: 20px; text-align: center; }
.legend-item { display: inline-block; margin: 0 15px; }
.legend-item::before { content: ''; display: inline-block; width: 15px; height: 15px; margin-right: 8px; vertical-align: middle; }
.legend-item.booked::before { background-color: #e74c3c; }
.legend-item.available::before { background-color: #fdfdfa; border: 1px solid #ccc; }

/* --- Attractions --- */
.attractions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.attraction-card { border: 1px solid var(--secondary-color); border-radius: 8px; overflow: hidden; }
.attraction-card img { width: 100%; height: 200px; object-fit: cover; }
.attraction-card h3 { padding: 15px 20px 0 20px; color: var(--primary-color); }
.attraction-card p { padding: 0 20px 15px 20px; }

/* --- Contact Form --- */
.form-container { max-width: 600px; }
#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-secondary);
    box-sizing: border-box;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}
.main-footer p { margin: 5px 0; opacity: 0.8; }
.footer-links {
    font-size: 0.9em;
    opacity: 0.7;
}
.footer-links a {
    color: inherit;
    margin-left: 15px;
}

/* --- Responsive --- */
@media (max-width: 768px) {    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .main-nav.visible {
        display: flex;
    }

    .main-nav a {
        margin: 0;
        padding: 1rem;
        border-bottom: 1px solid var(--secondary-color);
    }

    .nav-toggle {
        display: block;
    }

    .content-section h1 { font-size: 2.2rem; }
    .slideshow-container { height: 50vh; min-height: 300px; }
    .day, .day-name { padding: 8px 2px; font-size: 0.9rem; }
}