/* =====================================
   RESET & BASE STYLES
===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0ea5e9;
    margin-bottom: 3rem;
    text-align: center;
}

/* =====================================
   BUTTON STYLES
===================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #0ea5e9, #0288d1);
    color: white;
    
}

/* About page "Xem thêm" fit + arrow */
.btn-more{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    max-width: 100%;
    white-space: nowrap;
}

.btn-more span{
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-more i{
    font-size: 0.95em;
    transform: translateY(1px);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0ea5e9;
    transform: translateY(-3px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* =====================================
   HEADER / NAVBAR
===================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}


.logo h2 {
    background: linear-gradient(45deg, #0ea5e9, #0288d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0ea5e9;
}

/* chỉ active-class giữ màu xanh; tránh :active/:focus làm đổi màu */
.nav-link.active {
    color: #0ea5e9;
    transform: scale(1.08);
    font-weight: 700;
}



.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0ea5e9;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

.cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}


.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;

    /* Fix: badge must be positioned relative to the cart wrapper */
    pointer-events: none;
}



/* =====================================
   HERO SECTION
===================================== */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1559847844-5315695dadae?w=1920&h=1080&fit=crop') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

/* =====================================
   ABOUT SECTION
===================================== */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* =====================================
   MENU HIGHLIGHTS
===================================== */
.menu-highlights {
    padding: 100px 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.menu-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.menu-image {
    overflow: hidden;
    height: 250px;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-card:hover .menu-image img {
    transform: scale(1.1);
}

.menu-info {
    padding: 1.5rem;
}

.menu-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0ea5e9;
}

/* =====================================
   SERVICES SECTION
===================================== */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3rem;
    color: #0ea5e9;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

/* =====================================
   TESTIMONIALS
===================================== */
.testimonials {
    padding: 100px 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h4 {
    font-size: 1.1rem;
    color: #333;
}

.testimonial-header span {
    color: #ffa726;
    font-size: 1rem;
}

.testimonial-card p {
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

/* =====================================
   ABOUT PAGE STYLES
===================================== */
.page-hero {
    background: linear-gradient(135deg, #0ea5e9, #0288d1);
    padding: 120px 0;
    text-align: center;
    color: white;
}
.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.page-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.about-content {
    padding: 100px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-description h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #333;
}
.about-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #0ea5e9;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14,165,233,0.15);
}
.feature-icon {
    font-size: 3rem;
    color: #0ea5e9;
    margin-bottom: 1rem;
}
.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}
.feature-card p {
    color: #666;
    line-height: 1.7;
}

.story-section {
    padding: 100px 0;
    background: #f8f9fa;
}
.story-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
}
.story-item {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}
.story-item:hover {
    transform: translateY(-10px);
}

.story-item:last-child::before {
    display: none;
}
.year {
    background: linear-gradient(45deg, #0ea5e9, #0288d1);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
}

/* =====================================
   CONTACT PAGE STYLES
===================================== */


.contact-section {
    padding: 100px 0;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}
.contact-info h2,
.contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}
.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}
.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #0ea5e9, #0288d1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}
.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}
.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form form {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.form-group {
    margin-bottom: 2rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e8f0fe;
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #fafbff;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14,165,233,0.1);
    background: white;
    transform: translateY(-2px);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}
.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.map-section iframe {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* =====================================
   BOOKING PAGE STYLES (Keep existing)
===================================== */
.booking-hero {
    background: linear-gradient(135deg, #0ea5e9, #0288d1);
    color: white;
    padding: 120px 0;
    text-align: center;
}
.booking-hero h1 { 
    font-size: 3rem; 
    margin-bottom: 1rem; 
}
.booking-hero p { 
    font-size: 1.3rem; 
    opacity: 0.9; 
}

.booking-section { 
    padding: 80px 0; 
    background: #f8f9fa; 
}
.form-section { 
    background: white; 
    padding: 2rem; 
    border-radius: 20px; 
    margin-bottom: 2rem; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); 
}
.form-section h3 { 
    color: #0ea5e9; 
    margin-bottom: 1.5rem; 
    font-size: 1.3rem; 
}
.form-section label { 
    display: block; 
    margin-bottom: 0.5rem; 
    font-weight: 500; 
    color: #333; 
}
.form-section select { 
    width: 100%; 
    padding: 12px 15px; 
    border: 2px solid #e0e0e0; 
    border-radius: 10px; 
    background: white; 
    font-size: 1rem; 
}
.form-section select:focus { 
    outline: none; 
    border-color: #0ea5e9; 
    box-shadow: 0 0 0 3px rgba(14,165,233,0.1); 
}

.status-success { 
    background: linear-gradient(135deg, #d4edda, #c3e6cb); 
    padding: 3rem; 
    border-radius: 20px; 
    text-align: center; 
    box-shadow: 0 15px 50px rgba(0,0,0,0.1); 
}
.status-success h2 { 
    color: #155724; 
    font-size: 2rem; 
    margin-bottom: 1rem; 
}
.status-success p { 
    background: white; 
    padding: 1.5rem; 
    border-radius: 10px; 
    margin-bottom: 2rem; 
    font-size: 1.1rem; 
    line-height: 1.6; 
}
.status-actions { 
    display: flex; 
    gap: 1rem; 
    justify-content: center; 
    flex-wrap: wrap; 
}

.form-actions { 
    margin-top: 2rem; 
}
#finalMessage { 
    padding: 4rem 0; 
}

/* =====================================
   RESPONSIVE UPDATES
===================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-grid {
        flex-direction: column;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .status-actions { flex-direction: column; align-items: center; }
    .form-row { grid-template-columns: 1fr; }
    .booking-hero h1 { font-size: 2.2rem; }
    .about-hero h1,
    .contact-hero h1 { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title,
    .about-description h2,
    .contact-info h2,
    .contact-form h2 { font-size: 2rem; }
}

/* =====================================
   FOOTER
===================================== */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #0ea5e9;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #0ea5e9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    background: #0288d1;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
}

/* =====================================
   ANIMATIONS
===================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* =====================================
   RESPONSIVE DESIGN
===================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .cart-icon {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
   .btn-large{
    width: fit-content;
    display: inline-flex;
    padding: 10px 25px;
}  
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0ea5e9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0288d1;
}

/* =====================================
   TABLE MAP STYLES
===================================== */
.table-map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.table-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #333;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.legend-color.empty {
    background: #d1fae5;
    border: 2px solid #10b981;
}

.legend-color.booked {
    background: #fecaca;
    border: 2px solid #ef4444;
}

.legend-color.selected {
    background: #10b981;
    border: 2px solid #059669;
}

.table-grid {
    display: grid;
    grid-template-columns: repeat(4, 140px);
    gap: 25px;
    justify-content: center;
    margin: 0 auto 2rem;
    max-width: 700px;
}

.table-item {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    user-select: none;
}

.table-item::before {
    content: attr(data-label);
    font-size: 0.85rem;
}

.table-item:hover:not(.table-booked) {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.table-empty {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 3px solid #10b981;
}

.table-booked {
    background: linear-gradient(135deg, #fecaca, #fca5a5);
    border: 3px solid #ef4444;
    cursor: not-allowed;
    opacity: 0.8;
}

.table-booked::after {
    content: 'Đã đặt';
    position: absolute;
    top: 4px;
    right: 4px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 600;
}

.table-selected {
    background: linear-gradient(135deg, #10b981, #059669);
    border: 3px solid #047857;
    color: white;
    box-shadow: 0 12px 35px rgba(16,185,129,0.4);
}

.selected-display {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
}

.selected-display p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #0ea5e9;
}

/* Responsive Table Map */
@media (max-width: 768px) {
    .table-grid {
        grid-template-columns: repeat(3, 110px);
        gap: 20px;
    }
    
    .table-item {
        font-size: 0.85rem;
    }
    
    .table-legend {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .legend-item {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .table-grid {
        grid-template-columns: repeat(2, 100px);
        gap: 15px;
    }
    
    .table-item {
        font-size: 0.8rem;
    }
    
    .table-map-section {
        padding: 60px 0;
    }
}

/* Menu Page */
.menu-hero {
    background: linear-gradient(135deg, #0ea5e9, #0288d1);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.menu-hero h1 { font-size: 3rem; margin-bottom: 1rem; }

.menu-categories { padding: 80px 0; }

.category-section { margin-bottom: 80px; }

.category-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.menu-item:hover { transform: translateY(-10px); }

.menu-item img { width: 100%; height: 250px; object-fit: cover; }

.item-info {
    padding: 1.5rem;
    text-align: center;
}

.item-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0ea5e9;
    margin: 1rem 0;
}

/* Cart Page */
.cart-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cart-table { padding: 80px 0; }

.cart-container { max-width: 1000px; margin: 0 auto; }

.cart-table {
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cart-table th { background: #f8f9fa; font-weight: 600; color: #333; }

.cart-item-name img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 1rem;
}

.cart-item-name span { font-weight: 500; }

.cart-price,
.cart-total { font-weight: 600; color: #0ea5e9; }

.quantity-controls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 6px 10px;
    border-radius: 999px;
    width: fit-content;
    max-width: 180px;
}

.quantity-controls span {
    display: inline-flex;
    min-width: 24px;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    color: #374151;
}

.quantity-controls button {
    width: 26px;
    height: 26px;
    border: none;
    background: #0ea5e9;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.quantity-controls button:hover { background: #0288d1; transform: scale(1.1); }

.remove-btn {
    background: #ff4444;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.remove-btn:hover { background: #cc0000; transform: scale(1.1); }

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

.summary-row {
    font-size: 1.3rem;
    font-weight: 700;
}

.cart-buttons { display: flex; gap: 1rem; }

.cart-buttons .btn { padding: 12px 30px; }

@media (max-width: 768px) {
    .cart-table { font-size: 0.9rem; }
    .cart-table th, .cart-table td { padding: 1rem 0.5rem; }
    .cart-actions { flex-direction: column; gap: 1rem; }
}

/* =====================================
   CART CHECKOUT MODERN UI
===================================== */
.cart-actions {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    align-items: flex-start;
}

.cart-summary {
    flex: 1;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.summary-row .total-price {
    font-size: 1.5rem;
    color: #0ea5e9;
}

.payment-section {
    flex: 1;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.payment-section h3 {
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
}

.payment-methods {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.payment-method:hover {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

.payment-method input:checked + .method-icon + span {
    font-weight: 600;
    color: #0ea5e9;
}

.method-icon {
    font-size: 1.25rem;
}

.cart-buttons {
    display: flex;
    gap: 1rem;
}

.cart-buttons .btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

.cart-buttons .btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    box-shadow: 0 4px 15px rgba(14,165,233,0.4);
}

.cart-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14,165,233,0.5);
}

.clear-cart-btn {
    background: #f3f4f6;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.clear-cart-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

/* =====================================
   Responsive Checkout
===================================== */
@media (max-width: 768px) {
    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cart-summary, .payment-section {
        padding: 1.25rem;
    }
    
    .cart-buttons {
        flex-direction: column;
    }
}

/* =====================================
   BOOKING PAGE STYLES
===================================== */
.booking-hero {
    background: linear-gradient(135deg, #0ea5e9, #0288d1);
    color: white;
    padding: 120px 0;
    text-align: center;
}

.booking-hero h1 { 
    font-size: 3rem; 
    margin-bottom: 1rem; 
}
.booking-hero p { 
    font-size: 1.3rem; 
    opacity: 0.9; 
}

.booking-section { 
    padding: 80px 0; 
    background: #f8f9fa; 
}
.form-section { 
    background: white; 
    padding: 2rem; 
    border-radius: 20px; 
    margin-bottom: 2rem; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); 
}
.form-section h3 { 
    color: #0ea5e9; 
    margin-bottom: 1.5rem; 
    font-size: 1.3rem; 
}
.form-section label { 
    display: block; 
    margin-bottom: 0.5rem; 
    font-weight: 500; 
    color: #333; 
}
.form-section select { 
    width: 100%; 
    padding: 12px 15px; 
    border: 2px solid #e0e0e0; 
    border-radius: 10px; 
    background: white; 
    font-size: 1rem; 
}
.form-section select:focus { 
    outline: none; 
    border-color: #0ea5e9; 
    box-shadow: 0 0 0 3px rgba(14,165,233,0.1); 
}

.status-success { 
    background: linear-gradient(135deg, #d4edda, #c3e6cb); 
    padding: 3rem; 
    border-radius: 20px; 
    text-align: center; 
    box-shadow: 0 15px 50px rgba(0,0,0,0.1); 
}
.status-success h2 { 
    color: #155724; 
    font-size: 2rem; 
    margin-bottom: 1rem; 
}
.status-success p { 
    background: white; 
    padding: 1.5rem; 
    border-radius: 10px; 
    margin-bottom: 2rem; 
    font-size: 1.1rem; 
    line-height: 1.6; 
}
.status-actions { 
    display: flex; 
    gap: 1rem; 
    justify-content: center; 
    flex-wrap: wrap; 
}

.form-actions { 
    margin-top: 2rem; 
}
#finalMessage { 
    padding: 4rem 0; 
}

@media (max-width: 768px) {
    .status-actions { flex-direction: column; align-items: center; }
    .form-row { grid-template-columns: 1fr; }
    .booking-hero h1 { font-size: 2.2rem; }
}


.contact-hero {
    background: linear-gradient(135deg, #0ea5e9, #0288d1);
    color: white;
    padding: 120px 0;
    text-align: center;
}
.contact-hero h1 { 
    font-size: 3rem; 
    margin-bottom: 1rem; 
}
.contact-hero p { 
    font-size: 1.3rem; 
    opacity: 0.9; 
}

.contact-section { 
    padding: 80px 0; 
    background: #f8f9fa; 
}

.about-hero {
    background: linear-gradient(135deg, #0ea5e9, #0288d1);
    color: white;
    padding: 120px 0;
    text-align: center;
}
.about-hero h1 { 
    font-size: 3rem; 
    margin-bottom: 1rem; 
}
.about-hero p { 
    font-size: 1.3rem; 
    opacity: 0.9; 
}

.about-section { 
    padding: 80px 0; 
    background: #f8f9fa; 
}

/* =====================================
   MENU SEARCH & FILTER
===================================== */
.menu-controls {
    padding: 50px 0 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.search-filter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.search-container {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 16px 24px 16px 54px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.search-container input:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14,165,233,0.1), 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 1.2rem;
}

.filters {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: #64748b;
}

.filter-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.filter-icon i {
    color: #64748b;
    transition: color 0.3s ease;
}

.filter-label {
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.filter-btn:hover .filter-icon {
    border-color: #0ea5e9;
    background: #f0f9ff;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 25px rgba(14,165,233,0.25);
}

.filter-btn:hover .filter-icon i,
.filter-btn:hover .filter-label {
    color: #0ea5e9;
}

.filter-btn.active .filter-icon {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-color: #0ea5e9;
    box-shadow: 0 8px 25px rgba(14,165,233,0.4);
    transform: translateY(-4px) scale(1.08);
}

.filter-btn.active .filter-icon i {
    color: white;
}

.filter-btn.active .filter-label {
    color: #0ea5e9;
    font-weight: 600;
}

/* Responsive Menu Controls */
@media (max-width: 768px) {
    .search-container {
        max-width: none;
    }
    
    .filters {
        gap: 1.25rem;
    }
    
    .filter-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }
    
    .filter-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .menu-controls {
        padding: 30px 0 25px;
    }
    
    .search-container input {
        padding: 14px 20px 14px 48px;
        font-size: 0.95rem;
    }
    
    .filters {
        gap: 1rem;
    }
    
    .filter-icon {
        width: 58px;
        height: 58px;
        font-size: 1.3rem;
    }
    
    .filter-label {
        font-size: 0.8rem;
    }
}

section:last-of-type{
    margin-bottom: 50px;
}



