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

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
.site {
            font-weight: bold;
            color : var(--gold)
        }

a {
    text-decoration: none;
    color: --text;
}

/* الهيدر الأسطوري */
.hero-header {
    height: 100vh;
    min-height: 600px;
    max-height: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--dark-light), var(--gold));
    perspective: 1000px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: var(--transition);
    transform: scale(1.1);
    animation: zoomParallax 20s infinite alternate;
}

@keyframes zoomParallax {
    0% { transform: scale(1.1) translateY(0); }
    100% { transform: scale(1) translateY(-20px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0,0,0,0.8) 0%, 
        rgba(0,0,0,0.4) 50%, 
        rgba(0,0,0,0.8) 100%);
    z-index: -1;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 20px 20px;
    max-width: 900px;
    animation: fadeInUp 1.5s cubic-bezier(0.19, 1, 0.22, 1) both;
    transform-style: preserve-3d;
    margin-bottom: 80px;
}

.restaurant-logo {
    width: 150px;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 30px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    transition: var(--transition);
    transform: translateZ(50px);
}

.restaurant-logo:hover {
    transform: scale(1.05) translateZ(50px);
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}

.restaurant-name {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    font-family: 'Playfair Display', 'Tajawal', serif;
    position: relative;
    display: inline-block;
}

.restaurant-name::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

.restaurant-slogan {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    line-height: 1.6;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 15px 0;
}


.restaurant-slogan::before {
    left: 0;
    top: 0;
}

.restaurant-slogan::after {
    right: 0;
    bottom: 0;
}

.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 2px solid var(--white);
    transition: var(--transition);
    z-index: 6;
}



@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.hero-scroll-down:hover {
    background: var(--white);
    color: var(--text);
    transform: translateX(-50%) scale(1.1);
}
/* تأثيرات دخول النص */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* تأثيرات جسيمات خلفية */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* تأثيرات إضافية للشعار */
.golden-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
    z-index: -1;
    opacity: 0.5;
    animation: pulse 6s infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

/* شريط التصنيفات الذكي */
.categories-container {
    position: sticky;
    top: 0;
    background-color: var(--dark);
    padding: 15px 0;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.categories-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px;
    gap: 10px;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.category {
    scroll-snap-align: start;
    flex: 0 0 auto;
    padding: 12px 25px;
    border-radius: 50px;
    background-color: var(--light);
    color: var(--text);
    font-size: 0.95rem;
    border: 1px solid var(--text);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    min-width: 120px;
    white-space: nowrap;
    font-weight: 500;
}

.category.active {
    background-color: var(--white);
    color: var(--text);
    border-color: var(--text);
    box-shadow: 0 5px 15px rgba(198, 167, 105, 0.3);
    transform: translateY(-2px);
}

.category:hover:not(.active) {
    border-color: var(--gold);
    color: var(--text);
}

/* قوائم الطعام المتطورة */
.menu-container {
    padding: 0 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-section {
    margin-bottom: var(--section-gap);
    scroll-margin-top: 100px;
    animation: fadeIn 0.8s ease-out;
}

.price-icon {
    width: 13px;
    height: 13px;
    object-fit: contain;
    vertical-align: middle;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.section-title {
    font-size: 1.8rem;
    color: var(--text);
    margin: 0;
    padding-bottom: 5px;
    position: relative;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-description {
    color: var(--text);
    font-size: 1rem;
    max-width: 600px;
}

/* نظام الجريد المعدل لعرض عنصرين في الصف للشاشات الصغيرة */
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* للشاشات المتوسطة والصغيرة (أقل من 992px) */
@media (max-width: 992px) {
    .menu-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* للشاشات الصغيرة جدًا (أقل من 480px) */
@media (max-width: 480px) {
    .menu-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .hero-content {
        margin-bottom: 100px;
    }
}

/* بطاقة الصنف المتميزة */
.menu-item {
    background-color: var(--button);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.item-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item:hover .item-image {
    transform: scale(1.05);
}

.item-details {
    padding: 20px;
    position: relative;
}

.item-name {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 600;
}

.item-description {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.item-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 2px;
    direction: ltr;
}

.price-currency {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.calories {
    display: flex;
    align-items: center;
    gap: 0px;
    color: var(--gold);
    font-size: 0.9rem;
}

.calories i {
    color: var(--text);
    font-size: 0.9rem;
}

/* زر العودة لأعلى المطور */
.back-to-top {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 60px;
    height: 60px;
    background-color: var(--light);
    color: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    box-shadow: 0 5px 20px rgba(198, 167, 105, 0.4);
    border: 2px solid var(--white);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: var(--white);
}

/* الفوتر الفاخر */
.luxury-footer {
    background-color:var(--dark) ;
    color: var(--text);
    padding: 80px 20px 40px;
    margin-top: 80px;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23f5f5f5'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23f5f5f5'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23f5f5f5'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-title {
    color: var(--text);
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 600;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 2px;
    background-color: var(--gold);
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.footer-about {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color:var(--light) ;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--gold);
    color: var(--light);
    transform: translateY(-3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--text);
}

.contact-item i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text);
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-link i {
    color: var(--gold);
    font-size: 0.8rem;
}

.footer-link:hover {
    color: var(--light);
    transform: translateX(-5px);
}

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.day-time {
    display: flex;
    justify-content: flex-start;
    color:var(--text);
    font-size: 0.95rem;
    padding-bottom: 5px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.day {
    color: var(--text);
    margin-left: 20px;
}

.copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: var(--text);
    position: relative;
    z-index: 1;
}

/* زر لوحة التحكم في الفوتر */
.dashboard-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--light);
    color: var(--text);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(198, 167, 105, 0.3);
}

.dashboard-btn:hover {
    background-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(198, 167, 105, 0.4);
}

/* التعديلات للشاشات الصغيرة */
@media (max-width: 768px) {
    .hero-header {
        height: 70vh;
        min-height: 400px;
    }
    
    .restaurant-name {
        font-size: 2rem;
    }
    
    .restaurant-slogan {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    .hero-scroll-down {
        width: 28px;
        height: 28px;
        font-size: 1rem;
        bottom: 20px;
    }
    
    .back-to-top {
        left: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .luxury-footer {
        padding-bottom: 80px;
    }
    
    .footer-wave {
        top: -50px;
        height: 50px;
    }
}

/* تأثيرات الحركة */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}