:root {
    --primary-color: #D4AF37; /* Gold */
    --secondary-color: #06402B; /* Dark Green */
    --accent-color: #FFD700; /* Warm Yellow */
    --bg-cream: #FDF5E6; /* Cream */
    --text-dark: #1a1a1a;
    --text-white: #FFFFFF;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-cream);
}

/* Modern Language Popup */
#lang-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 64, 43, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.popup-content {
    background: var(--bg-cream);
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 2px solid var(--primary-color);
}

.popup-content h2 {
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.lang-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lang-btn {
    padding: 15px;
    border: 2px solid var(--secondary-color);
    background: white;
    color: var(--secondary-color);
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* Header */
header {
    background: var(--secondary-color);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.logo img {
    height: 70px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.lang-switch-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.lang-switch-btn:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    width: 100%;
    background: linear-gradient(rgba(6, 64, 43, 0.7), rgba(6, 64, 43, 0.7)), url('../images/hall3.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-white);
    padding: 40px 20px;
    box-sizing: border-box;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Sections */
section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.8rem;
    color: var(--secondary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: var(--primary-color);
    margin: 15px auto;
    border-radius: 10px;
}

/* About Section */
.about {
    background: white;
    text-align: center;
}

.about p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.3rem;
    color: #444;
}

/* Why Choose Us */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

/* Booking Form */
.booking {
    background: var(--secondary-color);
    color: var(--text-white);
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.08);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.child-fields {
    background: rgba(212, 175, 55, 0.15);
    padding: 20px;
    border-radius: 15px;
    margin-top: 10px;
    border-left: 4px solid var(--primary-color);
}

.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 18px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
}

.submit-btn:hover {
    background: var(--accent-color);
    transform: scale(1.02);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
    box-sizing: border-box;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact */
.contact {
    background: white;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.contact-card i {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-card a {
    display: block;
    margin-top: 15px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}

.map-container {
    height: 450px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 3px solid var(--primary-color);
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .feature-card, [dir="rtl"] .form-group label, [dir="rtl"] .child-fields {
    text-align: right;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    section { padding: 50px 15px; width: 100%; box-sizing: border-box; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .booking-form { padding: 25px 15px; width: 100%; box-sizing: border-box; }
    .logo img { height: 50px; }
    .hero-btns { flex-direction: column; width: 100%; gap: 15px; }
    .btn { width: 100%; justify-content: center; padding: 12px 20px; }
    .section-title { font-size: 2.2rem; margin-bottom: 40px; }
    .map-container { height: 300px; }
}

/* Toast Notification Styles */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #d4af37;
    color: #000;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    text-align: center;
    width: 90%;
    max-width: 400px;
    pointer-events: none;
    opacity: 0;
    font-size: 15px;
    line-height: 1.4;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Cost Summary Card Styles */
.cost-summary-card {
    background: rgba(212, 175, 55, 0.1);
    border: 2px dashed var(--primary-color);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.cost-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 10px;
}

#total-cost-display {
    color: var(--primary-color);
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.cost-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

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

@media (max-width: 768px) {
    .cost-row { font-size: 1.1rem; flex-direction: column; gap: 5px; }
    #total-cost-display { font-size: 1.6rem; }
}

/* Floating WhatsApp Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 30px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    [dir="rtl"] .whatsapp-float {
        right: auto;
        left: 20px;
    }
}

/* Countdown Timer Styles */
.countdown-container {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid var(--primary-color);
    padding: 15px;
    border-radius: 15px;
    min-width: 90px;
    text-align: center;
    transition: var(--transition);
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.2);
}

.countdown-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.countdown-item p {
    font-size: 0.9rem;
    margin: 5px 0 0 0;
    color: var(--text-white);
    text-transform: uppercase;
}

/* Share Button Styles */
.btn-share {
    background: #25D366;
    color: white;
    border: none;
    cursor: pointer;
}

.btn-share:hover {
    background: #128c7e;
}

@media (max-width: 768px) {
    .countdown-container {
        gap: 10px;
    }
    .countdown-item {
        min-width: 70px;
        padding: 10px;
    }
    .countdown-item span {
        font-size: 1.8rem;
    }
    .countdown-item p {
        font-size: 0.7rem;
    }
}

/* Ramadan Greeting Overlay */
/* Ramadan Greeting Banner */
.ramadan-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFD700 100%);
    padding: 12px 20px;
    text-align: center;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.5s ease-out;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 100%;
}

.banner-text {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.banner-text i {
    color: var(--secondary-color);
}

.banner-close {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.banner-close:hover {
    transform: scale(1.2);
}

.ramadan-banner.hidden {
    display: none !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .ramadan-banner {
        padding: 10px 15px;
    }
    
    .banner-text {
        font-size: 0.9rem;
    }
}

/* Imsakia Modal & Button */
.btn-imsakia {
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    font-weight: bold;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-dark);
    margin: 15% auto;
    padding: 30px;
    border: 1px solid var(--primary-color);
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    color: white;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.imsakia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.imsakia-item {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.imsakia-item span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.imsakia-item strong {
    font-size: 1.5rem;
}

/* =============================================
   PRESS SECTION - تحدثوا عن الشيف
   ============================================= */
.press-section {
    background: #f0ede6;
    padding: 100px 5%;
    overflow: hidden;
}

.press-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-top: -45px;
    margin-bottom: 55px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.press-slider-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* حواف ضبابية على اليمين واليسار */
.press-slider-wrap::before,
.press-slider-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.press-slider-wrap::before {
    right: 0;
    background: linear-gradient(to left, #f0ede6, transparent);
}
.press-slider-wrap::after {
    left: 0;
    background: linear-gradient(to right, #f0ede6, transparent);
}

.press-slider {
    display: flex;
    gap: 24px;
    padding: 20px 10px 30px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ---- البطاقة ---- */
.press-card {
    min-width: 300px;
    width: 300px;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212,175,55,0.12);
    flex-shrink: 0;
}

.press-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.press-card-img {
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.press-favicon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 3px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.15);
    padding: 4px;
    object-fit: contain;
}

.press-source-name {
    color: rgba(255,255,255,0.92);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.press-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.press-tag {
    display: inline-block;
    background: rgba(212,175,55,0.12);
    color: #9a7c1f;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.press-card-content h3 {
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.55;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-card-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.press-read-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    transition: gap 0.2s ease, color 0.2s;
}

.press-card:hover .press-read-more {
    gap: 10px;
    color: var(--primary-color);
}

/* ---- أزرار التحكم ---- */
.press-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

.press-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--secondary-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.press-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.press-dots {
    display: flex;
    gap: 8px;
}

.press-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212,175,55,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.press-dot.active {
    background: var(--primary-color);
    width: 22px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .press-section { padding: 60px 0; }
    .press-section .section-title { padding: 0 5%; }
    .press-subtitle { padding: 0 5%; font-size: 0.95rem; }
    .press-slider-wrap::before,
    .press-slider-wrap::after { width: 30px; }
    .press-slider { padding: 15px 20px 25px; }
    .press-card { min-width: 265px; width: 265px; }
}
