/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B0000;
    --primary-dark: #5C0000;
    --primary-light: #A52A2A;
    --secondary: #C9A94E;
    --gold: #D4AF37;
    --dark: #1A1A2E;
    --light: #FFF8F0;
    --gray: #F5F0EB;
    --text: #2D2D2D;
    --text-light: #6B6B6B;
    --shadow: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.18);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --whatsapp: #25D366;
    --phone: #34B7F1;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', 'Segoe UI', sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139,0,0,0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139,0,0,0.4);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    background: #1DA85C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* ===== HEADER ===== */
#main-header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    background: var(--primary);
}

.brand-name {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.brand-name small {
    display: block;
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 400;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
}

.main-nav ul {
    display: flex;
    gap: 8px;
    list-style: none;
}

.main-nav ul li a {
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    background: var(--gold);
    color: var(--dark);
}

/* ===== HERO ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('assets/bg.jpg') center/cover no-repeat;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(212,175,55,0.2);
}

.hero-text h2 {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 700;
    margin-top: -8px;
}

.hero-sub {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin: 16px 0 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(212,175,55,0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

/* ===== QUICK ACTIONS ===== */
.quick-actions {
    padding: 30px 0;
    background: var(--gray);
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 10px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
}

.action-card i {
    font-size: 1.8rem;
    color: var(--primary);
}

.action-card.whatsapp i { color: var(--whatsapp); }
.action-card.phone i { color: var(--phone); }
.action-card.location i { color: #EA4335; }
.action-card.delivery i { color: #FF6B35; }
.action-card.review i { color: #FBBC04; }

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--primary));
    margin: 12px auto;
    border-radius: 4px;
}

.section-sub {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== ABOUT ===== */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-text p {
    margin-bottom: 14px;
    color: var(--text-light);
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
}

.stat .label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* ===== BEST DISHES ===== */
.best-dishes-section {
    padding: 80px 0;
    background: var(--gray);
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.dish-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.dish-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dish-card:hover .dish-image img {
    transform: scale(1.05);
}

.dish-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: var(--dark);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.dish-info {
    padding: 18px 20px 22px;
}

.dish-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

.dish-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 6px 0 10px;
}

.dish-price {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.2rem;
}

/* ===== MENU ===== */
.menu-section {
    padding: 80px 0;
    background: #fff;
}

.menu-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.menu-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-actions .btn {
    min-width: 200px;
    justify-content: center;
}

.qr-section {
    text-align: center;
    background: var(--gray);
    padding: 30px;
    border-radius: var(--radius);
}

.qr-section p {
    margin-bottom: 12px;
    font-weight: 600;
}

.qr-section img {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-sm);
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: 80px 0;
    background: var(--gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== LOCATION ===== */
.location-section {
    padding: 80px 0;
    background: #fff;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.info-card i {
    font-size: 1.6rem;
    color: var(--primary);
    width: 40px;
    margin-top: 4px;
}

.info-card h4 {
    font-weight: 700;
}

.info-card p {
    color: var(--text-light);
}

.info-card a {
    color: var(--primary);
    font-weight: 600;
}

.location-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
}

.location-map iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ===== FOOTER ===== */
#main-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 50px 0 20px;
    border-top: 4px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    margin-bottom: 12px;
}

.footer-brand h3 {
    color: var(--gold);
    font-size: 1.6rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
}

.footer-links h4,
.footer-social h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom .developer span {
    color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-sub { margin: 16px auto 30px; }
    .hero-buttons { justify-content: center; }
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-stats { justify-content: center; }
    .location-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons { justify-content: center; }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 20px;
        border-top: 2px solid var(--gold);
    }
    .main-nav.open {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 6px;
    }
    .main-nav ul li a {
        display: block;
        text-align: center;
        padding: 12px;
    }
    .hero-text h1 { font-size: 3rem; }
    .hero-text h2 { font-size: 2rem; }
    .section-header h2 { font-size: 2.2rem; }
    .action-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .dishes-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .action-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dishes-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .hero-text h1 { font-size: 2.4rem; }
    .hero-text h2 { font-size: 1.6rem; }
    .btn { padding: 12px 24px; font-size: 0.9rem; }
    .floating-badge { font-size: 0.9rem; padding: 8px 20px; }
}