:root {
    --primary-color: #4a4036; /* Dark brown/grey for text */
    --accent-color: #8c7b6c; /* Muted earth tone */
    --bg-color: #f5f5f0; /* Off-white/rice paper color */
    --card-bg: #ffffff;
    --text-color: #333333;
    --light-text: #666666;
    --font-main: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-serif: "Georgia", "Times New Roman", serif; /* For headers to give that classic feel */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header */
header {
    background-color: var(--card-bg);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 2rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero / Intro Section */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Generic Section Styles */
section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-serif);
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 1rem auto 0;
}

/* Intro Details & Location */
.intro-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 4rem;
}

.intro-text h3 {
    font-family: var(--font-serif);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.intro-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

/* Rooms Section */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.room-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.room-info {
    padding: 2rem;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.room-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--primary-color);
}

.room-price {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.room-features h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
}

.room-features p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

/* Dining Section */
.restaurant-intro {
    text-align: center;
    margin-bottom: 4rem;
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
}

.restaurant-banner {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.restaurant-desc {
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.restaurant-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.dish-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.dish-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.dish-info {
    padding: 1.5rem;
    text-align: center;
}

.dish-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.dish-price {
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.dish-desc {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Activities Section */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.activity-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.activity-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.activity-info {
    padding: 2rem;
    flex-grow: 1;
}

.activity-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.activity-details ul {
    list-style: none;
    padding: 0;
}

.activity-details li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--light-text);
    display: flex;
    align-items: flex-start;
}

.activity-details li strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
    min-width: 80px;
    display: inline-block;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 70px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background-color: var(--card-bg);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.05);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        margin: 1.5rem 0;
        font-size: 1.1rem;
        margin-left: 0;
    }

    .intro-details {
        grid-template-columns: 1fr;
    }
    .intro-images {
        order: -1; /* Images on top on mobile */
    }
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2rem;
    }
}
