: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;
    position: relative;
    width: 100%;
}

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: var(--bg-cream);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    border: 1px solid var(--primary-color);
}

.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; overflow: hidden; }
    .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;
}
