/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fdfdfd;
}

.no-scroll {
    overflow: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

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

/* Navbar */
.navbar {
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #27ae60; /* Fresh Green */
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    flex: 0 0 auto;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a:hover {
    color: #27ae60;
}

/* Hero Section */
.hero {
    background: #99cc99; /* Light green tint (slightly darker) */
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #2c3e50;
}

.hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn:hover {
    background: #219150;
}

/* Menu modal */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2000;
}

.modal.is-open {
    display: block;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.modal-dialog {
    position: relative;
    width: min(920px, calc(100% - 32px));
    max-height: calc(100% - 32px);
    margin: 16px auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.modal-title {
    margin: 0;
    font-size: 1.25rem;
}

.modal-close {
    appearance: none;
    border: 0;
    background: transparent;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 8px;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.06);
}

.modal-body {
    padding: 18px;
    overflow: auto;
    max-height: calc(100vh - 32px - 58px);
}

.menu-loading {
    font-weight: 600;
    color: #2c3e50;
}

.menu-error {
    background: #fff2f2;
    border: 1px solid #ffd0d0;
    color: #7a1f1f;
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 12px;
}

/* Basic DOCX HTML rendering polish */
.menu-doc p {
    margin: 0 0 10px;
}

.menu-doc h1, .menu-doc h2, .menu-doc h3 {
    margin-top: 18px;
}

.menu-doc table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
}

.menu-doc td, .menu-doc th {
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 8px 10px;
    vertical-align: top;
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 4rem 20px;
    max-width: 800px;
}

/* Menu Sections */
.menu-section {
    padding: 4rem 0;
}

.bg-light {
    background-color: #f4f9f4; /* Very light green tint */
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 40px;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.text-content, .image-content {
    flex: 1;
}

.benefits-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.benefits-list li::before {
    content: "•";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Atmosphere */
.atmosphere {
    padding: 4rem 20px;
    text-align: center;
}

.full-width-img {
    margin-top: 2rem;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.disclaimer {
    font-size: 0.8rem;
    color: #bdc3c7;
    margin-top: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .split-layout, .split-layout.reverse {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none; /* Simple hide for mobile, normally requires JS for hamburger menu */
    }
}