/* 
   AL REEM HALAL - Premium Design System 
   Focus: Glassmorphism, Immersive Visuals, Sophisticated Typography
*/

:root {
    /* Primary Colors */
    --brand-orange: #FF5C00;
    --brand-orange-rgb: 255, 92, 0;
    --brand-orange-deep: #E65200;
    --brand-bg: #FDFDFD;
    --brand-card: #FFFFFF;
    
    /* Semantic Colors */
    --text-primary: #1A1A1A;
    --text-secondary: rgba(26, 26, 26, 0.7);
    --text-muted: rgba(26, 26, 26, 0.5);
    
    /* Glassmorphism Tokens */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-blur: 16px;
    
    /* Spacing & Radii */
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 12px;
    --spacing-xl: 48px;
    --spacing-lg: 32px;
    --spacing-md: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--brand-bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.home-container {
    max-width: 480px; /* Standard mobile width */
    margin: 0 auto;
    background: var(--brand-bg);
    position: relative;
    padding-bottom: 100px;
    min-height: 100vh;
}

/* --- Layout Utilities --- */
.section-padding { padding: 0 var(--spacing-md); margin-top: var(--spacing-xl); }

/* --- Complex Hero Section --- */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.4);
    transform-origin: center bottom; /* Anchor to the food, push the top people out */
    animation: bgZoom 20s infinite alternate ease-in-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top, 
        #0F0F0F 0%, 
        rgba(15, 15, 15, 0.7) 40%, 
        rgba(15, 15, 15, 0.2) 100%
    );
}

.hero-header {
    position: relative;
    z-index: 10;
    padding: 24px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.icon-btn-glass {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.hero-content {
    position: relative;
    z-index: 10;
    margin-top: auto;
    padding: 0 40px 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brand-glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    padding: 16px 16px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-badge {
    width: 50px;
    height: 50px;
    margin: -40px auto 12px;
    background: white;
    border-radius: 16px;
    padding: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-badge img { width: 100%; height: auto; object-fit: contain; }

.brand-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.primary-cta {
    background: var(--brand-orange);
    color: white;
    border: none;
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 92, 0, 0.3);
    transition: transform 0.2s, background 0.2s;
}

.primary-cta:active { transform: scale(0.97); background: var(--brand-orange-deep); }

.secondary-cta {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* --- Highlights --- */
.highlights-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 24px 0;
    padding: 0 20px;
}

.highlight-pill {
    background: var(--brand-card);
    border: 1px solid var(--glass-border);
    padding: 10px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.highlight-pill i { color: var(--brand-orange); }

/* --- Specialties Section --- */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
}

.section-header a {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.spec-scroller {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 24px 30px 24px;
    margin: 0 -24px;
    scrollbar-width: none;
}
.spec-scroller::-webkit-scrollbar { display: none; }

.spec-card {
    min-width: 240px;
    background: var(--brand-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.spec-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.spec-info {
    padding: 20px;
}

.spec-info h3 { font-size: 18px; margin-bottom: 4px; }
.spec-info p { font-size: 13px; color: var(--text-muted); }

.spec-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--brand-orange);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Info Section --- */
.info-grid {
    display: grid;
    gap: 16px;
    padding: 0 24px;
}

.info-box {
    background: var(--brand-card);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.info-icon-sq {
    width: 50px;
    height: 50px;
    background: rgba(255, 92, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
    font-size: 20px;
}

.info-details h4 { font-size: 14px; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.info-details p { font-size: 16px; font-weight: 600; color: var(--text-primary); }

/* --- Bottom Navigation --- */
.bottom-nav {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    height: 72px;
    border-radius: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    transition: all 0.3s;
    cursor: pointer;
}

.nav-item i { font-size: 20px; }
.nav-item span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

.nav-item.active {
    color: var(--brand-orange);
}

.nav-item.active i {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(255, 92, 0, 0.5));
}

/* --- Animations --- */
@keyframes bgZoom {
    0% { transform: scale(1.4); }
    100% { transform: scale(1.5); }
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating animation for primary CTA */
.primary-cta {
    animation: float 3s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
