/* Root Variables */
:root {
    --burgundy: #8B1538;
    --dark-wood: #3E2723;
    --gold: #D4AF37;
    --saffron: #FF9933;
    --cream: #F5F1E8;
    --dark-bg: #1a1a1a;
    --text-light: #f5f5f5;
    --text-dark: #2c2c2c;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    background-color: rgba(26, 26, 26, 0.95);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.crown-icon {
    font-size: 1.8rem;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--gold) !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
                url('/images/mainbackground800.jpeg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.3), rgba(62, 39, 35, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

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

.btn-primary {
    background: var(--burgundy);
    border: none;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
}

.btn-primary:hover {
    background: #a01846;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 21, 56, 0.5);
}

.btn-outline-light {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--gold);
    color: var(--dark-wood);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, var(--cream), #ffffff);
    padding: 5rem 0;
}

.section-title {
    font-size: 3rem;
    color: var(--dark-wood);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.about-section img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.about-section img:hover {
    transform: scale(1.03);
}

.features-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-feature {
    background: linear-gradient(135deg, var(--burgundy), #a01846);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(139, 21, 56, 0.2);
    transition: transform 0.3s ease;
}

.badge-feature:hover {
    transform: translateY(-2px);
}

/* Menu Section */
.menu-section {
    background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
    padding: 5rem 0;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    font-style: italic;
}

.nav-pills {
    background: white;
    padding: 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.nav-pills .nav-link {
    color: var(--dark-wood);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin: 0.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--burgundy), #a01846);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
}

.nav-pills .nav-link:hover:not(.active) {
    background: var(--cream);
    color: var(--burgundy);
}

.menu-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.menu-item h4 {
    color: var(--dark-wood);
    font-size: 1.25rem;
    margin: 0;
}

.price {
    color: var(--burgundy);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

.menu-item p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.menu-item-featured {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, #fff9ed 0%, #ffffff 100%);
}

/* Gallery Section */
.gallery-section {
    background: var(--dark-bg);
    color: white;
    padding: 5rem 0;
}

.gallery-section .section-title {
    color: white;
}

.gallery-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.85), rgba(62, 39, 35, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    text-align: center;
    padding: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(to bottom, var(--cream), #ffffff);
    padding: 5rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stars {
    color: var(--gold);
    font-size: 1.25rem;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin: 1rem 0;
    line-height: 1.7;
}

.testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--cream);
}

.testimonial-author strong {
    display: block;
    color: var(--dark-wood);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--dark-wood) 0%, var(--dark-bg) 100%);
    color: white;
    padding: 5rem 0;
}

.contact-section .section-title {
    color: white;
}

.contact-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.info-item i {
    font-size: 1.75rem;
    color: var(--gold);
    min-width: 40px;
}

.info-item h5 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    margin: 0;
    line-height: 1.6;
}

.info-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--gold);
}

.hours-table {
    width: 100%;
}

.hours-table td {
    padding: 0.35rem 0;
}

.hours-table td:first-child {
    font-weight: 500;
    padding-right: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: white;
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #999;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
}

.footer-title {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .nav-pills {
        border-radius: 15px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-outline-light {
        width: 100%;
        max-width: 300px;
    }

    .features-badges {
        justify-content: center;
    }

    .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .nav-pills .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}
