/* --- 1. Variables & Global Reset --- */
:root {
    --primary: #588da8;    /* Calm Teal */
    --secondary: #85b8cb;  /* Lighter Blue */
    --accent: #f0f7fa;     /* Very pale blue background */
    --text: #333333;       /* Dark Grey */
    --white: #ffffff;
    --dark: #2c3e50;       /* Navy/Charcoal for Headings */
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background-color: var(--accent);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

a { text-decoration: none; }

/* --- 2. Navigation & Logo --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.brand-num {
    color: var(--primary);
    font-size: 1.8rem;
    margin-right: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover { color: var(--primary); }

.btn-nav {
    background: var(--primary);
    color: white !important; /* Force white text */
    padding: 8px 18px;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-nav:hover { background: var(--dark); }

/* --- 3. Hero Section (Home) --- */
header {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

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

.btn-main {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 35px;
    background-color: var(--primary);
    color: white;
    border-radius: 4px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-main:hover { background-color: var(--dark); }

/* --- 4. General Layout --- */
section { padding: 60px 20px; }

.container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary);
}

/* --- 5. Features Grid (Home/About) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 4px solid var(--primary);
}

/* --- 6. Services/Menu Styling --- */
.menu-category {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.menu-category h3 {
    margin-bottom: 25px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    padding-bottom: 10px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px dotted #ccc;
    text-align: left;
}

.menu-item:last-child { border-bottom: none; }

.menu-item .name {
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
}

.service-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
    max-width: 500px;
}

.menu-item .prices {
    text-align: right;
    font-weight: bold;
    color: var(--dark);
    min-width: 150px;
}
.menu-item .prices span { display: block; margin-bottom: 2px; }

/* --- 7. Cleanliness Box (About) --- */
.cleanliness-box {
    background-color: var(--white);
    border: 1px solid #bce0ed;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: left;
}

.cleanliness-list {
    list-style: none;
    margin-top: 20px;
}

.cleanliness-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.check-icon { color: var(--primary); font-weight: bold; margin-right: 10px; }

/* --- 8. Contact Grid --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-box {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* --- 9. Booking Form Styling --- */
.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group { margin-bottom: 20px; }

.form-row {
    display: flex;
    gap: 20px;
}
.form-row .form-group { flex: 1; }

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--dark);
    font-size: 0.9rem;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    background: #fafafa;
}

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

.full-width { width: 100%; }

/* --- 10. Footer --- */
footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    font-size: 0.9rem;
}

.booking-widget-container {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 1000px; /* Wider than the old form to fit the calendar */
    margin: 0 auto;
    min-height: 600px; /* Ensures it doesn't look collapsed while loading */
    overflow: hidden;
}

/* If you use an Iframe, this ensures it fits perfectly */
.booking-widget-container iframe {
    width: 100%;
    min-height: 600px;
    border: none;
}

/* Mobile Adjustment for Widget */
@media (max-width: 600px) {
    .booking-widget-container {
        padding: 10px; /* Less padding on mobile */
    }
}