/* Color Palette and Variables */
:root {
    --maroon: #6B1111;
    --gold: #D4AF37;
    --light-bg: #FDFBF7;
    --dark-text: #2C2C2C;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
    color: var(--maroon);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--maroon);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(107, 17, 17, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1542314831-c6a4d14d8379?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--gold);
}

.hero h1 {
    color: var(--gold);
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 30px;
}

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: var(--maroon);
    padding: 12px 30px;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background-color: var(--maroon);
    color: var(--gold);
    box-shadow: 0 0 15px var(--gold);
}

/* Layout Classes */
.section {
    padding: 80px 50px;
}

.bg-light {
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    display: block;
    margin: 10px auto 0;
}

/* Grids and Cards */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 5px solid var(--gold);
    border-radius: 5px;
    transition: transform 0.4s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.card {
    background: var(--white);
    padding: 30px;
    border: 2px solid var(--gold);
    text-align: center;
    width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--maroon);
    margin: 15px 0;
}

/* Dining Section */
.dining-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.menu-section {
    flex: 1;
    min-width: 300px;
}

.menu-list {
    list-style: none;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed var(--maroon);
    font-size: 1.1rem;
}

.menu-list button {
    background: var(--maroon);
    color: var(--white);
    border: none;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 3px;
}
.menu-list button:hover {
    background: var(--gold);
    color: var(--maroon);
}

.adult {
    color: red;
    font-weight: bold;
}

/* Forms */
input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    font-family: inherit;
}

/* Testimonials */
.testimonial {
    background: var(--maroon);
    color: var(--white);
    padding: 30px;
    width: 400px;
    font-style: italic;
    border-left: 5px solid var(--gold);
}

.testimonial h4 {
    color: var(--gold);
    margin-top: 15px;
    text-align: right;
}

/* Footer */
footer {
    background: var(--dark-text);
    color: var(--gold);
    text-align: center;
    padding: 20px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 30px;
    border: 3px solid var(--gold);
    width: 400px;
    max-width: 90%;
    text-align: center;
}

.close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    color: var(--maroon);
    cursor: pointer;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Add a hamburger menu for full mobile support */
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}