:root {
    --primary-gold: #D4AF37;
    --primary-green: #1A3C34;
    --accent-red: #A61C1C;
    --dark-bg: #121212;
    --light-text: #f8f9fa;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.text-gold {
    color: var(--primary-gold) !important;
}

.text-green {
    color: var(--primary-green) !important;
}

.bg-green {
    background-color: var(--primary-green) !important;
}

.bg-dark-custom {
    background-color: var(--dark-bg);
}

/* Navbar */
.navbar {
    background-color: rgba(26, 60, 52, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
}

/* Navbar Links */
.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-gold) !important;
}

/* Menu Tabs (Pills) */
.nav-pills .nav-link {
    color: var(--primary-green) !important;
    background-color: transparent;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.nav-pills .nav-link:hover {
    background-color: rgba(26, 60, 52, 0.1);
    color: var(--primary-green) !important;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-green) !important;
    color: var(--primary-gold) !important;
}

/* Buttons */
.btn-gold {
    background-color: var(--primary-gold);
    color: #fff;
    border: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--primary-gold);
}

.btn-outline-gold {
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    font-weight: 600;
}

.btn-outline-gold:hover {
    background-color: var(--primary-gold);
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    margin-top: -76px;
    /* Offset navbar */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menu Section */
.menu-category-title {
    color: var(--primary-green);
    border-bottom: 2px solid var(--primary-gold);
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.menu-item {
    margin-bottom: 25px;
    transition: transform 0.2s ease;
}

.menu-item:hover {
    transform: translateY(-2px);
}

.menu-item-price {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: #aaa;
}

.footer h5 {
    color: var(--primary-gold);
}

.footer a:hover {
    color: var(--primary-gold) !important;
}

/* General Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title .divider {
    height: 3px;
    width: 60px;
    background-color: var(--primary-gold);
    margin: 0 auto;
}