/* --- Update Variables & Reset for Light Navbar --- */
:root {
    /* Main color scheme (mostly dark page) */
    --bg-dark: #121212;
    --bg-light: #1e1e1e;
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
    --accent: #d4af37; /* Warm Gold to represent hospitality */
    --accent-hover: #b5952f;
    --transition: all 0.3s ease;

    /* Specific variables for the light navbar */
    --nav-bg: #ffffff; /* Crucially, a light background for the logo */
    --nav-text-dark: #333333; /* For text and links in the nav */
    --nav-border: #dddddd; /* For the border on the light nav */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-dark);
}

/* --- Layout & Typography --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 800;
    margin-bottom: 15px;
}

h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; }
p { 
    font-size: 1.1rem; 
    line-height: 1.6; 
    color: var(--text-muted);
    margin-bottom: 20px;
}

strong { color: var(--text-main); }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-dark {
    background-color: var(--bg-dark);
    color: var(--text-main);
    border: 1px solid var(--accent);
}

.btn-dark:hover {
    background-color: var(--accent);
    color: var(--text-main);
}

/* --- Updated Navigation (switching to light theme for logo) --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--nav-border);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-wrapper {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li { margin-left: 30px; }

.nav-links a {
    text-decoration: none;
    color: var(--nav-text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--accent); }

.btn-nav {
    border: 2px solid var(--accent);
    padding: 8px 20px;
    border-radius: 4px;
    background-color: transparent;
    color: var(--nav-text-dark) !important;
}

.btn-nav:hover {
    background-color: var(--accent);
    color: #fff !important;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--nav-text-dark);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(18,18,18,0.8), rgba(18,18,18,0.9)), url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
}

/* --- Sections General --- */
.section { padding: 100px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-accent { background-color: var(--accent); color: var(--bg-dark); }
.bg-accent h2, .bg-accent p { color: var(--bg-dark); }
.text-center { text-align: center; }
.section-subtitle { max-width: 600px; margin: 0 auto 50px auto; }

/* --- About Grid --- */
.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
}

.stat-box {
    background: var(--bg-dark);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent);
}

.stat-box h3 { color: var(--accent); font-size: 2.5rem; margin-bottom: 5px; }
.stat-box p { margin: 0; font-size: 1rem; color: var(--text-muted); }

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--bg-light);
    padding: 40px 20px;
    border-radius: 8px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--accent);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* --- Contact Form & Info --- */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    background-color: #ffffff;
    color: #333333;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: 2px solid var(--bg-dark);
}

.contact-info {
    margin-top: 50px;
}

.contact-info p {
    color: var(--bg-dark);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info a {
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
}

.contact-info a:hover {
    color: #ffffff;
}

/* --- Footer --- */
footer {
    background-color: #f5f5f5; /* Light grey background so the logo pops */
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--nav-border);
}

footer p {
    color: var(--nav-text-dark); /* Dark text for the copyright line */
    margin-bottom: 0;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.logo-img-footer {
    max-height: 35px;
    width: auto;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Media Queries (Mobile) --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .nav-links {
        position: absolute;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-light);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        z-index: 1001; /* Above blur */
    }
    .nav-links.active { left: 0; }
    .nav-links li { margin: 15px 0; }
    .hamburger { display: block; }
    .about-grid { grid-template-columns: 1fr; }
}