/* ROOT VARIABLES */
:root {
    --primary-color: #A52521;
    --secondary-color: #F4D03F;
    --accent-color: #E67E22;
    --dark-color: #2C3E50;
    --light-color: #ECF0F1;
    --text-dark: #333;
    --text-light: #666;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #A52521 0%, #E67E22 100%);
    --gradient-secondary: linear-gradient(135deg, #F4D03F 0%, #F39C12 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.text-accent {
    color: var(--secondary-color);
}

.bg-primary {
    background: var(--gradient-primary) !important;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(165, 37, 33, 0.3);
    background: linear-gradient(135deg, #8B1E1E 0%, #D35400 100%);
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(165, 37, 33, 0.3);
    transform: translateY(-3px);
    border: 2px solid var(--white);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* NAVIGATION */
#mainNav {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
}

/* Modern Navigation Styles */
.modern-nav {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
}

.modern-nav.scrolled {
    background: rgba(0, 0, 0, 0.98);
    padding: 0.5rem 0;
}

.modern-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white) !important;
    text-decoration: none;
}

.modern-brand .logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b35;
    font-family: 'Playfair Display', serif;
}

.modern-nav-menu .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.modern-nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: var(--transition);
    transform: translateX(-50%);
}

.modern-nav-menu .nav-link:hover::after {
    width: 60%;
}

.modern-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: var(--white) !important;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-decoration: none;
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    color: var(--white) !important;
}

#mainNav.scrolled {
    background: rgba(0, 0, 0, 0.98);
    padding: 10px 0;
}

.navbar-brand .logo {
    height: 50px;
    transition: var(--transition);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 0 !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.btn-reserve {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    padding: 10px 25px !important;
    border-radius: 25px !important;
    margin-left: 20px;
}

.btn-reserve:hover {
    transform: scale(1.05);
}

/* HERO SECTION */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

/* Modern Hero Section */
.modern-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
    padding-top: 80px;
}

.modern-hero-section .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/background.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.4);
    z-index: -2;
}

.modern-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.modern-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
}

.modern-hero-subtitle {
    font-size: 1.2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.modern-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.modern-hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #ccc;
}

.modern-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.modern-btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: var(--white) !important;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.modern-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    color: var(--white) !important;
}

.modern-btn-outline {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.modern-btn-outline:hover {
    background: var(--white);
    color: #1a1a1a !important;
    transform: translateY(-2px);
}

.hero-image-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.spinning-food-circle {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    animation: spin 20s linear infinite;
    border: 5px solid rgba(255, 107, 53, 0.3);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.food-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/background.jpeg') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(165, 37, 33, 0.8), rgba(44, 62, 80, 0.6));
    z-index: -1;
}

.hero-content {
    color: var(--white);
    z-index: 2;
}

.hero-subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 30px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(10px); }
}

/* SECTIONS */
.section-subtitle {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    bottom: -10px;
    left: 0;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.page-header {
    min-height: 60vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
    background-image: url('/images/IMAGE 9.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

/* ABOUT SECTION */
.about-content {
    padding-right: 30px;
}

.features-list {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
}

.about-image img {
    border-radius: 15px;
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.05);
}

.value-card, .feature-card, .team-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover, .feature-card:hover, .team-card:hover {
    transform: translateY(-10px);
}

.value-icon, .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.team-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

/* SERVICES SECTION */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}

.service-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

/* RESERVATION SECTION */
.reservation-form {
    border-radius: 15px;
}

.form-control {
    border: 2px solid #E9ECEF;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--dark-color);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(165, 37, 33, 0.25);
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(0, 0, 0, 0.98);
    color: #fff;
}

.footer-logo {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    margin-right: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

/* MENU PREVIEW SECTION */
.menu-preview-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.menu-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.menu-preview-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.menu-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-preview-card:hover .menu-preview-image img {
    transform: scale(1.1);
}

.menu-preview-content {
    padding: 20px;
    text-align: center;
}

.menu-preview-content h5 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.menu-preview-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.menu-preview-content .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* MENU PAGE */
.menu-filter {
    margin-bottom: 50px;
}

.filter-btn {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    margin: 5px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.menu-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.cuisine-title {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-info h5 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.menu-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.menu-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-left: 20px;
}

.qr-placeholder {
    border: 2px dashed var(--secondary-color);
}

.qr-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Menu Filter JavaScript */
.menu-category {
    transition: all 0.3s ease;
}

.menu-category.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* SERVICES PAGE */
.service-detail-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-10px);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-detail-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(165, 37, 33, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.service-content {
    padding: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 5px 0;
}

.service-price {
    text-align: center;
    margin: 20px 0;
}

.price-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.additional-service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.additional-service-card:hover {
    transform: translateY(-10px);
}

.service-details {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.pricing-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.package-price .price-unit {
    color: #666;
    font-size: 0.9rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.package-features li {
    padding: 8px 0;
}

/* GALLERY PAGE */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover {
    opacity: 1;
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    margin-bottom: 20px;
}

.review-stars i {
    font-size: 1.2rem;
    margin: 0 2px;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.reviewer-info {
    text-align: left;
}

.reviewer-info h6 {
    margin: 0;
    font-weight: 600;
}

.reviewer-info small {
    color: #666;
}

/* CONTACT PAGE */
.contact-detail-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-detail-card:hover {
    transform: translateY(-5px);
}

.contact-detail-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-list p {
    margin-bottom: 8px;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.map-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.qr-codes .qr-code-img {
    max-width: 100px;
    border-radius: 0.25rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hours-list {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item.special {
    background: var(--gray-100);
    margin: 0 calc(-1 * 1.5rem);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
}

.day {
    font-weight: 600;
    color: var(--dark-color);
}

.time {
    color: var(--primary);
    font-weight: 500;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .modern-hero-title {
        font-size: 3.5rem;
    }
    
    .spinning-food-circle {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 992px) {
    .modern-nav {
        padding: 0.8rem 0;
    }
    
    .modern-nav.scrolled {
        padding: 0.5rem 0;
    }
    
    .modern-brand .logo {
        height: 45px;
    }
    
    .brand-text {
        font-size: 1.3rem;
    }
    
    .modern-hero-section {
        min-height: 100vh;
        padding-top: 90px;
    }
    
    .modern-hero-title {
        font-size: 3rem;
    }
    
    .modern-hero-description {
        font-size: 1rem;
    }
    
    .spinning-food-circle {
        width: 300px;
        height: 300px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-content, .reservation-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .page-header {
        min-height: 50vh;
        margin-top: 80px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-nav {
        padding: 0.7rem 0;
    }
    
    .modern-brand .logo {
        height: 40px;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
    
    .modern-hero-section {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .modern-hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .modern-hero-subtitle {
        font-size: 1rem;
    }
    
    .modern-hero-description {
        font-size: 0.95rem;
    }
    
    .modern-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .modern-btn-primary, .modern-btn-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .spinning-food-circle {
        width: 280px;
        height: 280px;
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header {
        min-height: 40vh;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .lead {
        font-size: 0.9rem;
    }
    
    /* Navbar Mobile Fixes */
    .navbar-toggler {
        display: block;
        border: none;
        padding: 4px 8px;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 10px;
        backdrop-filter: blur(10px);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin: 0.2rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.7rem 1rem !important;
        margin: 0;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255, 107, 53, 0.1);
    }
    
    .btn-primary.ms-3 {
        margin-left: 0 !important;
        margin-top: 1rem;
        width: 100%;
        max-width: 200px;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-links, .contact-info {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .qr-codes .qr-code-img {
        max-width: 80px;
    }
}

@media (max-width: 576px) {
    .modern-nav {
        padding: 0.6rem 0;
    }
    
    .modern-brand .logo {
        height: 35px;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    .modern-hero-section {
        min-height: 100vh;
        padding-top: 70px;
    }
    
    .modern-hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .modern-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .modern-hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .modern-btn-primary, .modern-btn-outline {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
    
    .spinning-food-circle {
        width: 250px;
        height: 250px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-header {
        min-height: 35vh;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .menu-preview-content h5 {
        font-size: 1rem;
    }
    
    .menu-preview-content .price {
        font-size: 1.1rem;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
        margin: 3px;
    }
    
    .cuisine-title {
        font-size: 1.2rem;
    }
    
    .menu-item .menu-info h5 {
        font-size: 1rem;
    }
    
    .menu-item .menu-price {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .hours-list {
        padding: 1rem;
    }
    
    .hours-item .day, .hours-item .time {
        font-size: 0.9rem;
    }
    
    .contact-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .navbar-collapse {
        padding: 0.8rem;
        margin-top: 8px;
    }
    
    .navbar-nav .nav-link {
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modern-hero-section {
        padding-top: 60px;
    }
    
    .modern-hero-title {
        font-size: 1.8rem;
    }
    
    .modern-hero-content {
        padding: 0 1rem;
    }
    
    .spinning-food-circle {
        width: 220px;
        height: 220px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* LOADING ANIMATIONS */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* PARALLAX EFFECTS */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* HOVER EFFECTS */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Mobile Navigation Toggle Fix */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Ensure mobile menu is always visible when toggled */
@media (max-width: 991.98px) {
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-toggler {
        color: rgba(255, 255, 255, 0.85);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .navbar-toggler:focus {
        text-decoration: none;
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
    }
}