/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a373; /* Gold/Beige from logo [cite: 2] */
    --secondary-color: #faedcd;
    --dark-bg: #222222; /* Dark background from PDF [cite: 1] */
    --light-text: #fefefe;
    --dark-text: #333333;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: #f4f4f4;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--dark-bg);
    color: var(--light-text);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.logo img {
    height: 50px; /* Adjust based on your logo file */
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg.jpg'); /* Needs image */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-text);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: bold;
    margin: 0 10px;
    transition: 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn:hover {
    transform: scale(1.05);
}

/* About Section */
.about-section {
    padding: 80px 10%;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--dark-bg);
}

.about-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 2;
}

.about-image {
    flex: 1;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Rooms Section */
.resort-section {
    padding: 80px 10%;
    background-color: #f9f9f9;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.room-card {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.room-img {
    height: 200px;
    background-color: #ccc; /* Placeholder color */
    background-size: cover;
    background-position: center;
}

.room-info {
    padding: 20px;
    text-align: center;
}

.btn-small {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: bold;
    border-bottom: 1px solid var(--primary-color);
}

.center-btn {
    text-align: center;
    margin-top: 50px;
}

/* Cafe Section */
.cafe-section {
    padding: 80px 10%;
    background-color: var(--dark-bg);
    color: var(--light-text);
    text-align: center;
}

.cafe-section .section-title {
    color: var(--primary-color);
}

.menu-categories {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
    text-align: left;
}

.menu-column h3 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.menu-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.menu-list i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 25px;
}

.cafe-options {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

/* Footer / Contact */
.footer {
    background: url('images/contact-bg.jpg'); /* Optional bg image */
    background-color: #111;
    color: white;
    padding: 60px 5%;
}

.footer-overlay {
    text-align: center;
}

.contact-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 30px;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    border: 1px solid #444;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.btn-outline {
    margin-top: 20px;
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 20px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: white;
    color: black;
}

.white { color: white; }

.copyright {
    margin-top: 50px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* --- Add this to the bottom of style.css --- */

/* Menu Page Specifics */
.menu-page-header {
    padding-top: 120px; /* Space for fixed navbar */
    text-align: center;
    background-color: var(--dark-bg);
    color: var(--primary-color);
    padding-bottom: 20px;
}

.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 5%;
    background-color: #333;
    position: sticky;
    top: 80px; /* Below navbar */
    z-index: 900;
}

.categories a {
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.categories a:hover,
.categories a.active {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.category-section {
    padding: 40px 10%;
    border-bottom: 1px solid #ddd;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-bg); /* Or primary if dark mode full page */
    margin-bottom: 20px;
    text-transform: uppercase;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

/* Menu Card Styling */
.card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateX(5px);
    border-left: 4px solid var(--primary-color);
}

.card .item h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.card .item span {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.card .disc p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* If the body has a dark background in menu.php */
body.menu-body {
    background-color: #f4f4f4;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none; /* Add JS for burger menu toggle later */
    }
    .hero h1 { font-size: 2.5rem; }
    .about-content, .menu-categories, .contact-grid {
        flex-direction: column;
    }
}