:root {
    --primary: #C45508;
    --primary-dark: #A04406;
    --primary-deep: #7D3505;
    --primary-light: #FFF5F0;
    --gold: #FFD700;
    --gold-light: #FFC700;
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-700: #374151;

    --font-serif: "Playfair Display", serif;
    --font-sans: "Outfit", sans-serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-700);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
.logo-text,
.section-title,
.hero-title,
.footer-logo {
    font-family: var(--font-serif);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition-normal);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hidden {
    display: none !important;
}

/* Utilities */
.orange-text {
    color: var(--primary);
}

.gold-text {
    color: var(--gold);
}

.text-white {
    color: var(--white);
}

.gold-bg {
    background-color: var(--gold) !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all var(--transition-normal);
    text-align: center;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gradient {
    background: linear-gradient(to right, var(--gold), var(--primary));
    color: var(--white);
    padding: 1rem 2.5rem;
    box-shadow: var(--shadow-xl);
}

.btn-gradient:hover {
    background: linear-gradient(to right, var(--primary), var(--gold));
    transform: scale(1.05);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--gold);
    padding: 1rem 2.5rem;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--primary);
    padding: 1rem 2rem;
    box-shadow: var(--shadow-lg);
}

.btn-gold:hover {
    background-color: var(--gold-light);
    transform: scale(1.05);
}

.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background-color: var(--primary);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-xl);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
    transition: var(--transition-normal);
}

.navbar.scrolled .logo-img {
    width: 3rem;
    height: 3rem;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.02em;
}

.logo-group:hover .logo-text {
    color: var(--gold);
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    background-color: rgba(196, 85, 8, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 1rem;
    animation: slideDown 0.3s ease-out;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--white);
    font-size: 1.125rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1565557623262-b51c2513a641?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHx0aWtrYSUyMG1hc2FsYSUyMGRpc2h8ZW58MXx8fHwxNjY3MTEwNjQ2fDA&ixlib=rb-4.1.0&q=80&w=1920');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 6rem 1.5rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(196, 85, 8, 0.2), rgba(0, 0, 0, 0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-logo-box {
    padding-bottom: 0px;
    margin-bottom: 0px;
    animation: fadeIn 1s ease-out;
}

.hero-logo {
    width: clamp(12rem, 20vw, 18rem);
    height: auto;
    margin: 0px;
    padding: 0px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 6rem);
    color: var(--white);
    margin-bottom: 0rem;
    margin-top: 0px;
    padding-top: 0px;
    animation: slideUp 1s ease-out;
}

.hero-subtitle-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: slideUp 1s ease-out 0.2s both;
}

.hero-subtitle-box .line {
    height: 1px;
    width: 3rem;
    background: linear-gradient(to right, var(--primary), var(--gold));
}

.hero-subtitle-box .line:last-child {
    background: linear-gradient(to left, var(--primary), var(--gold));
}

.hero-location {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 500;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--gray-200);
    margin-bottom: 3rem;
    animation: slideUp 1s ease-out 0.3s both;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeIn 1.5s ease-out 0.5s both;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(196, 85, 8, 0.4);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: var(--transition-normal);
}

.info-card:hover {
    background: rgba(196, 85, 8, 0.2);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.card-icon {
    width: 2rem;
    height: 2rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.card-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-300);
    margin-bottom: 0.25rem;
}

.card-value {
    color: var(--white);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 50px;
    gap: 1rem;
    animation: slideUp 1s ease-out 0.7s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 44px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--primary-light);
    position: relative;
    overflow: hidden;
}

.about::before,
.about::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.about::before {
    top: -100px;
    right: -100px;
    background-color: rgba(255, 215, 0, 0.05);
}

.about::after {
    bottom: -100px;
    left: -100px;
    background-color: rgba(196, 85, 8, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tagline {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.title-underline {
    width: 6rem;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--gold), var(--primary));
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-image-wrapper {
    position: relative;
}

.image-outline {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(196, 85, 8, 0.3);
    border-radius: 1.5rem;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.floating-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--gold);
    z-index: 3;
}

.badge-icon {
    width: 3rem;
    height: 3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--gray-700);
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.quote-box {
    background-color: var(--primary);
    padding: 2rem;
    border-radius: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    margin-top: 1rem;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    color: var(--white);
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.dark-orange {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.lighter-orange {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-deep));
}

.feature-icon-box {
    width: 4rem;
    height: 4rem;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon-box svg,
.feature-icon-box i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--gray-200);
}

/* Menu Section */
.menu {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--primary-light), var(--white));
    position: relative;
    overflow: hidden;
}

.decorative-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    z-index: 0;
}

.blob-1 {
    top: 5rem;
    left: -5rem;
    width: 30rem;
    height: 30rem;
    background-color: var(--primary);
}

.blob-2 {
    bottom: 5rem;
    right: -5rem;
    width: 30rem;
    height: 30rem;
    background-color: var(--gold);
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 40rem;
    margin: 1.5rem auto 0;
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.tab-btn:hover {
    background-color: var(--gray-50);
}

.tab-btn.active {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.active-category-display {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--white);
    padding: 1rem 2rem;
    border-radius: 9999px;
    box-shadow: var(--shadow-md);
    margin: 0 auto 2rem;
    width: fit-content;
    display: flex;
    border: 1px solid var(--gray-100);
}

.active-category-display span {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.menu-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-normal);
    position: relative;
}

.menu-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-xl);
}

.special-badge {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    color: var(--primary);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: var(--shadow-md);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.item-name {
    font-size: 1.25rem;
    color: var(--primary);
    transition: color var(--transition-normal);
}

.menu-item:hover .item-name {
    color: var(--gold);
}

.item-price {
    color: var(--primary);
    background-color: var(--gray-50);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 500;
    white-space: nowrap;
}

.item-desc {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.item-allergens {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
}

.allergen-label {
    color: #ffffff;
}

.allergen-tags {
    background-color: rgba(196, 85, 8, 0.05);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.allergen-box {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    padding: 3rem;
    border-radius: 1.5rem;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.allergen-box h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.allergen-list p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark), var(--primary-deep));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.blob-3 {
    bottom: -5rem;
    left: -5rem;
    width: 30rem;
    height: 30rem;
    background-color: rgba(255, 255, 255, 0.05);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 1.5rem;
    display: flex;
    gap: 1.5rem;
    transition: var(--transition-normal);
}

.info-block:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

.icon-square {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--gold);
    border-radius: 1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-square svg,
.icon-square i {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
}

.info-content h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.info-content a:hover {
    color: var(--gold);
}

.small-text {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-300);
    margin-top: 0.25rem;
}

.opening-hours-card {
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    color: var(--primary);
    padding: 2rem;
    border-radius: 1.5rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.icon-square.dark {
    background-color: var(--primary);
}

.icon-square.dark svg,
.icon-square.dark i {
    color: var(--gold);
}

.opening-hours-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1.125rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.map-and-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 1.5rem;
}

.map-wrapper h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.map-container {
    height: 300px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 1.5rem;
    color: var(--white);
}

.contact-form-card h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-form-card p {
    margin-bottom: 2rem;
    color: var(--gray-200);
    font-size: 0.9375rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: var(--white);
    font-family: inherit;
    transition: var(--transition-normal);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ffffff;
}

/* Footer */
.footer {
    background-color: var(--primary-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 6rem 0 4rem;
    border-top: 4px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--white);
    letter-spacing: 1px;
}

.footer-logo-img {
    width: 3.5rem;
    height: auto;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.footer-desc {
    color: #ffffff;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.social-link:hover {
    background-color: var(--gold);
    color: var(--primary);
    transform: translateY(-3px);
}

.social-link svg,
.social-link i {
    width: 1.25rem !important;
    height: 1.25rem !important;
}

.footer-title {
    font-size: 1.25rem;
    color: var(--gold);
    font-family: var(--font-serif);
    position: relative;
}

.footer-links,
.footer-contact-info,
.footer-hours {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #ffffff;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #ffffff;
}

.footer-contact-info li svg,
.footer-contact-info li i {
    width: 1.25rem !important;
    height: 1.25rem !important;
    color: var(--gold);
    flex-shrink: 0;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    font-size: 0.9375rem;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #ffffff;
    font-size: 0.8125rem;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .about-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 8rem 1rem 4rem;
    }

    .hero-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .menu-tabs {
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .about {
        padding: 4rem 0;
    }

    .about-img {
        height: 300px;
    }

    .about-image-wrapper {
        margin-bottom: 2rem;
    }

    .floating-badge {
        padding: 1rem;
        bottom: -1rem;
        right: -1rem;
    }

    .badge-icon {
        width: 2rem;
        height: 2rem;
    }

    .footer-top {
        padding: 4rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-logo,
    .social-links,
    .footer-contact-info li,
    .footer-hours li {
        justify-content: center;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .opening-hours-card,
    .info-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .hour-row {
        gap: 1rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.25rem;
    }

    .logo-img {
        width: 2.5rem;
        height: 2.5rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-location {
        font-size: 1.25rem;
    }

    .hero-tagline {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .item-price {
        order: -1;
    }
}