/* Variables */
:root {
    --primary-color: #ff6b00; /* البرتقالي الخاص بالشعار */
    --secondary-color: #ffb300;
    --dark-bg: #000000;
    --light-bg: #ffffff;
    --grey-bg: #f8f9fa;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text-dark); background-color: var(--light-bg); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navbar - تمييز الشعار بخلفية داكنة لضمان ظهوره */
.navbar {
    background-color: var(--dark-bg);
    height: 100px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo-box img { max-height: 85px; width: auto; object-fit: contain; }

.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 30px; }
.nav-links a { 
    color: #fff; text-decoration: none; font-weight: 600; text-transform: uppercase; 
    font-size: 0.9rem; transition: color 0.3s; 
}
.nav-links a:hover { color: var(--primary-color); }

/* Hero Section - التمركز المطلق والاحترافي */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center; /* تمركز أفقي */
    align-items: center;     /* تمركز عمودي */
    text-align: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?auto=format&fit=crop&q=80&w=2070') no-repeat center center/cover;
    margin-top: 0;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.85); /* طبقة فاتحة مريحة للعين */
    z-index: 1;
}
.hero-container { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 900px; margin: 0 auto; }

.hero-subtitle { 
    display: block; font-weight: 700; color: var(--primary-color); 
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; 
}
.hero-content h1 { 
    font-family: var(--font-heading); font-size: clamp(2.5rem, 8vw, 4.5rem); 
    color: var(--dark-bg); margin-bottom: 25px; line-height: 1.2; 
}
.highlight { color: var(--primary-color); }
.hero-content p { 
    font-size: clamp(1rem, 3vw, 1.3rem); color: var(--text-light); 
    margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; 
}

/* Sections General */
section { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--dark-bg); }
.divider { width: 70px; height: 4px; background: var(--primary-color); margin: 15px auto; border-radius: 2px; }

/* Hours Card */
.hours-wrapper { display: flex; justify-content: center; }
.hours-card { 
    background: #fff; padding: 40px; border-radius: 15px; width: 100%; max-width: 500px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); border-top: 5px solid var(--primary-color);
}
.day-row { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid #eee; font-size: 1.1rem; }
.day-row.closed { color: #e74c3c; font-weight: 600; border-bottom: none; }

/* Allergens Grid */
.allergens-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.info-card { background: var(--grey-bg); padding: 40px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.02); }
.info-card h3 { color: var(--primary-color); margin-bottom: 25px; font-size: 1.5rem; border-bottom: 2px solid #eee; padding-bottom: 10px; }
.info-list { list-style: none; }
.info-list li { margin-bottom: 12px; font-size: 0.95rem; border-bottom: 1px solid rgba(0,0,0,0.03); padding-bottom: 5px; }
.info-list li strong { color: var(--primary-color); margin-right: 5px; min-width: 25px; display: inline-block; }

/* Contact Section */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-item { display: flex; align-items: center; margin-bottom: 30px; }
.contact-item i { 
    font-size: 1.5rem; color: #fff; background: var(--primary-color); 
    width: 55px; height: 55px; display: flex; align-items: center; 
    justify-content: center; border-radius: 12px; margin-right: 20px; 
}
.contact-item h4 { font-size: 1.2rem; margin-bottom: 5px; }
.contact-item p, .contact-item a { color: var(--text-light); text-decoration: none; }
.social-links { margin-top: 30px; }
.social-links a { 
    font-size: 1.8rem; color: var(--dark-bg); margin-right: 25px; 
    transition: color 0.3s, transform 0.3s; display: inline-block; 
}
.social-links a:hover { color: var(--primary-color); transform: translateY(-5px); }
.map-box { border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Footer */
.main-footer { background: var(--dark-bg); color: #fff; text-align: center; padding: 40px 0; }

/* Responsive */
@media (max-width: 991px) {
    .contact-grid { grid-template-columns: 1fr; }
    .nav-links { 
        display: none; position: absolute; top: 100px; left: 0; width: 100%; 
        background: var(--dark-bg); flex-direction: column; text-align: center; padding: 20px 0;
    }
    .nav-links.active { display: flex; }
    .nav-links li { margin: 15px 0; }
    .menu-toggle { display: block; color: #fff; font-size: 1.8rem; cursor: pointer; }
}

/* External Button Reset */
.glf-button {
    background-color: var(--primary-color) !important;
    color: white !important;
    padding: 18px 45px !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    font-size: 1.1rem !important;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3) !important;
    transition: all 0.3s ease !important;
}
.glf-button:hover { transform: translateY(-3px) !important; box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4) !important; }