/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    --bg-main: #FFFDF8;
    --bg-secondary: #FFFFFF;
    --bg-dark: #2C1E16;
    --text-main: #2C1E16;
    --text-muted: #6B5B53;
    --primary: #8B2500; /* Deep Rust / Burgundy */
    --accent: #D35400; /* Appetizing Orange */
    --border: #E8E0D5;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.section-title {
    font-size: 2.8rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.btn-solid {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: #FFFDF8;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-solid:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(211, 84, 0, 0.2);
}

.btn-solid-small {
    padding: 0.7rem 1.5rem;
    background: var(--primary);
    color: #FFFDF8;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-solid-small:hover {
    background: var(--accent);
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--bg-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid var(--bg-main);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-outline:hover {
    background: var(--bg-main);
    color: var(--primary);
}

.btn-outline-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid #fff;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--primary);
}

.w-100 { width: 100%; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 5%;
    background: var(--bg-main);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links li a,
.navbar.scrolled .menu-toggle {
    color: var(--text-main);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    transition: var(--transition);
}

.logo span {
    font-family: var(--font-body);
    color: var(--accent);
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    background: url('images/hero.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(44, 30, 22, 0.6); /* Warm dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(44, 30, 22, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.experience-badge h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.experience-badge span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

.about-content p {
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-list {
    margin-bottom: 2.5rem;
}

.features-list li {
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.features-list li i {
    color: var(--accent);
    font-size: 1.2rem;
}

.link-arrow {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow:hover {
    color: var(--accent);
}

.link-arrow:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    padding: 6rem 0 8rem;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-main);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-img {
    height: 300px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-info {
    padding: 2.5rem;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.btn-text {
    color: var(--primary);
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.2rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-text:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ==========================================================================
   Menu Banner
   ========================================================================== */
.menu-banner {
    padding: 8rem 0;
    background: url('images/hero.png') center/cover fixed; /* Or a different image */
    position: relative;
    text-align: center;
}

.menu-banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(139, 37, 0, 0.8); /* Primary color overlay */
}

.menu-banner-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.menu-banner-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.menu-banner-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.menu-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.menu-buttons i {
    margin-right: 0.5rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
    padding: 8rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 0.3rem;
}

.info-item h5 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.info-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-form-container {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    background: var(--bg-main);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--accent);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 5rem 0 2rem;
}

.footer-brand {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: #A0968F;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #A0968F;
    font-size: 0.85rem;
}

/* ==========================================================================
   Sidebar & Responsive
   ========================================================================== */
.sidebar-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(44, 30, 22, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1; visibility: visible;
}

@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .about-grid, .contact-wrapper { grid-template-columns: 1fr; }
    .about-image { margin-bottom: 3rem; max-width: 600px; margin: 0 auto 3rem; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .desktop-btn { display: none; }
    
    .nav-links {
        position: fixed;
        top: 0; right: -300px;
        width: 300px; height: 100vh;
        background: var(--bg-main);
        flex-direction: column;
        padding: 6rem 2rem;
        gap: 2rem;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s ease-in-out;
        z-index: 1001;
    }
    
    .nav-links.active { right: 0; }
    .nav-links li a { color: var(--text-main); font-size: 1.2rem; }
    
    .hero h1 { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; gap: 1rem; }
    
    .services-grid { grid-template-columns: 1fr; }
    .menu-banner-content h2 { font-size: 2.5rem; }
    .menu-buttons { flex-direction: column; }
    
    .form-row { grid-template-columns: 1fr; gap: 1.5rem; }
    .contact-form-container { padding: 2rem 1.5rem; }
}
