:root {
    --primary: #dedbd3;
    /* Taupe */
    --secondary: #2c2c2c;
    /* Text Dark */
    --accent: #f5efe8;
    /* Cream */
    --glass-bg: rgba(245, 239, 232, 0.85);
    /* Cream Glass */
    --glass-border: rgba(255, 255, 255, 0.6);
    --shadow: 0 10px 30px 0 rgba(100, 100, 100, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: #f7f6f2;
    /* Light Organic Background */
    color: var(--secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: #1a1a1a;
    font-weight: 500;
}

/* Header */
header {
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.logo img {
    height: 60px;
    width: auto;
}

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

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

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

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    /* Above mobile nav */
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--secondary);
    transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.btn-book {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 2px;
    /* More elegant, less pill-like */
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.btn-book:hover {
    background-color: var(--primary);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Background Image with Cream Overlay */
    background: linear-gradient(rgba(247, 246, 242, 0.6), rgba(247, 246, 242, 0.6)), url('hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    animation: fadeIn 1.5s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

/* Services */
.services {
    padding: 100px 5%;
    background-color: #fafafa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

/* Services Layout */
.category {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.category.reverse {
    flex-direction: row-reverse;
}

.category-content {
    flex: 1;
}

.category-image {
    flex: 1;
}

.category ul {
    list-style: none;
    padding: 0;
}

.category li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category li strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.category li span {
    float: right;
    font-weight: 500;
}

/* Reviews */
.reviews {
    margin-top: 50px;
}

/* Mobile */
@media (max-width: 768px) {
    .category {
        flex-direction: column;
        text-align: center;
    }

    .category.reverse {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hamburger {
        display: block;
    }

    nav {
        /* display: none; Removed to allow transition */
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: #f7f6f2;
        width: 100%;
        height: 100vh;
        /* Full screen */
        text-align: center;
        transition: 0.3s;
        justify-content: center;
        /* Center items vertically */
        align-items: center;
        z-index: 999;
        display: flex;
        /* Ensure flex context for vertical centering */
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 40px;
        /* More space between items on mobile */
    }

    nav a {
        font-size: 1.5rem;
        /* Larger font for mobile */
    }
}

/* About / Matangi */
.about {
    padding: 100px 5%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary);
    font-style: italic;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-color: #e0e0e0;
    /* Placeholder for Matangi Image */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: "Historic Matangi Factory";
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--secondary);
    padding: 50px 5%;
    text-align: center;
}

footer a {
    color: var(--secondary);
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }



    /* Simplified for MVP */
    .header {
        justify-content: center;
    }
}