/* CSS Variables */
:root {
    --primary-color: #000000;      /* أسود */
    --secondary-color: #FFD700;    /* ذهبي */
    --accent-color: #B8860B;       /* ذهبي داكن */
    --text-light: #FFFFFF;         /* أبيض */
    --text-dark: #000000;          /* أسود */
    --bg-light: #1a1a1a;           /* رمادي داكن جداً */
    --bg-dark: #000000;            /* أسود */
    --border-color: #333333;       /* رمادي داكن */
    --shadow-color: rgba(255, 215, 0, 0.2); /* ظل ذهبي */
    --gradient-primary: linear-gradient(135deg, #000000, #1a1a1a);
    --gradient-secondary: linear-gradient(135deg, #FFD700, #B8860B);
    --font-elegant: 'Noto Naskh Arabic', 'Amiri', serif;
    --font-heading: 'Scheherazade New', 'Amiri', serif;
    --font-body: 'Noto Naskh Arabic', serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Elegant Arabic Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Naskh+Arabic:wght@400;500;600;700&family=Amiri:wght@400;700&family=Scheherazade+New:wght@400;700&display=swap');



/* Background Image */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('image/back.jpg') center/cover no-repeat;
    opacity: 0.3;
    z-index: -1;
}

/* Ensure body has proper background */
body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-light);
    background: var(--bg-dark);
    direction: rtl;
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #000000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary-color);
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo:active {
    transform: scale(0.95);
}

.logo-icon {
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(5deg);
}

.logo-icon {
    height: 65px;
    width: auto;
    border-radius: 10px;
}

.logo-text h1 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-heading);
}

.logo-text p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.8;
    text-align: right;
    direction: rtl;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-color);
}

/* Hero Section */
/* 
 * للصورة الجديدة مع PS&CAFE بالنيون:
 * 1. ضع الصورة في مجلد image باسم "ps-cafe-back.jpg"
 * 2. غير background: url('image/back.jpg') إلى background: url('image/ps-cafe-back.jpg')
 * 3. يمكن تعديل opacity و filter حسب الحاجة
 */
.hero {
    background: var(--gradient-primary);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px; /* Account for fixed header */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('image/back.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
    filter: brightness(0.8) contrast(1.1);
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 800px;
    direction: rtl; /* إعادة الاتجاه للنص العربي */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    direction: rtl; /* إعادة الاتجاه للنص العربي */
    text-align: center;
    min-width: 150px;
    margin: 0 0.5rem;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--text-dark);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    margin-right: 1rem;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: row; /* ترتيب طبيعي */
}

/* Feature Cards */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    justify-items: center;
}

.feature-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.feature-icon i {
    color: var(--text-dark);
    font-size: 2rem;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.feature-card h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
    font-family: var(--font-elegant);
    font-weight: 400;
}

/* About Section */
.about {
    background: rgba(0, 0, 0, 0.9);
    padding: 5rem 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('image/back.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    background: var(--bg-dark);
    padding: 5rem 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('image/back.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 0;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--text-dark);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.stat-icon i {
    color: var(--text-dark);
    font-size: 2rem;
}

.stat:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    background: var(--bg-dark);
    padding: 5rem 0;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('image/back.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--secondary-color);
}

.featured-item {
    grid-column: span 2;
    grid-row: span 2;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
}

.featured-item .gallery-image {
    height: 400px;
}

.featured-tag {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.price-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
}

.cafe-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Video Items */
.video-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: scale(1.02);
}

.video-item:active {
    transform: scale(0.98);
}

.video-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(255, 215, 0, 0.2));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.video-item:hover .video-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 215, 0, 0.3));
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.play-button i {
    color: var(--text-dark);
    font-size: 2rem;
    margin-left: 3px; /* Adjust play icon position */
}

.video-item:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.video-overlay h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-overlay p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.gallery-cta h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gallery-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.gallery-cta .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Reservation Hero */
.reservation-hero {
    min-height: 60vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--text-light);
    position: relative;
}

.reservation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('image/back.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: 1;
}

.reservation-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.reservation-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: var(--secondary-color);
}

.reservation-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* VIP Rooms */
.vip-rooms {
    padding: 6rem 0;
    background: var(--bg-dark);
    position: relative;
}

.vip-rooms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('image/back.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.room-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    border-color: var(--secondary-color);
}

.room-card.selected {
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-5px);
}

.room-card.selected::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-color);
    color: var(--text-dark);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 10;
}

.room-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.room-card:hover .room-image {
    transform: scale(1.05);
}

.room-info {
    padding: 2.5rem;
}

.room-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.room-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.room-features {
    list-style: none;
}

.room-features li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-size: 1rem;
    padding-right: 1.5rem;
    position: relative;
}

.room-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.room-info h3 i {
    color: var(--secondary-color);
    margin-left: 0.5rem;
    font-size: 0.9em;
}

.room-features li i {
    color: var(--secondary-color);
    margin-left: 0.5rem;
    font-size: 0.9rem;
    width: 16px;
}

.room-price {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid var(--secondary-color);
}

.room-price .price {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Reservation Form Section */
.reservation-form-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    position: relative;
}

.reservation-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('image/back.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.reservation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.form-container {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 2px solid var(--secondary-color);
    position: relative;
    z-index: 2;
}

.form-container h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.form-container p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.price-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.price-summary h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.price-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #3498db;
}

.info-container {
    background: rgba(0, 0, 0, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: fit-content;
    border: 2px solid var(--secondary-color);
    backdrop-filter: blur(10px);
}

.info-container h3 {
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.info-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-item p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0.3rem 0;
    line-height: 1.5;
}

/* Menu Hero */
.menu-hero {
    min-height: 50vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.menu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('image/back.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: 1;
}

.menu-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.menu-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: var(--secondary-color);
}

.menu-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Menu Section */
.menu-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    position: relative;
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.filter-btn i {
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.menu-item {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    backdrop-filter: blur(10px);
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.menu-item-image {
    height: 220px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 3rem;
    font-weight: bold;
    border-bottom: 2px solid var(--secondary-color);
}

.menu-item-content {
    padding: 2rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.menu-item-title {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.menu-item-price {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.2rem;
}

.menu-item-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    height: 40px;
    width: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.footer-logo h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin: 0 0 0.2rem 0;
    font-weight: 700;
}

.footer-logo p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    opacity: 0.8;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* الفقرة التي تلي العنوان الجديد */
.footer-section > h4:first-of-type + p {
    color: var(--text-light);
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    background: rgba(255, 215, 0, 0.1);
    color: var(--secondary-color);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--secondary-color);
}

.social-link i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.social-link:hover i {
    color: var(--text-dark);
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

/* العنوان الجديد في footer-section */
.footer-section > h4:first-of-type {
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.8rem 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-contact p,
.footer-hours p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 10001;
    position: relative;
    touch-action: manipulation;
    transition: all 0.3s ease;
}

.nav-toggle span {
    width: 30px;
    height: 4px;
    background: var(--secondary-color);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transform-origin: center;
}

/* Hamburger Animation */
.nav-toggle span.active:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px) !important;
    background: var(--secondary-color) !important;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3) !important;
}

.nav-toggle span.active:nth-child(2) {
    opacity: 0 !important;
    background: var(--secondary-color) !important;
    transform: scale(0) !important;
}

.nav-toggle span.active:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px) !important;
    background: var(--secondary-color) !important;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3) !important;
}

.nav-toggle:hover span {
    background: var(--accent-color) !important;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.4) !important;
    transform: scale(1.1) !important;
}

.nav-toggle:active span {
    transform: scale(0.95) !important;
}

/* Mobile Navigation Styles */
@media (max-width: 1200px) {
    .nav-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 70px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        background: rgba(0, 0, 0, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 2rem 1rem !important;
        margin: 0 !important;
        gap: 1rem !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
        border-top: 3px solid var(--secondary-color) !important;
        z-index: 10000 !important;
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transform: translateX(-100%) !important;
        overflow-y: auto !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
    
    /* Style nav links in mobile menu */
    .nav-menu.active .nav-link {
        color: var(--text-light) !important;
        padding: 1.5rem 2rem !important;
        margin: 0.5rem 0 !important;
        border-radius: 30px !important;
        background: rgba(255, 215, 0, 0.15) !important;
        border: 2px solid var(--secondary-color) !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
        min-height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.2rem !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        width: 90% !important;
        max-width: 350px !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2) !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .nav-menu.active .nav-link::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent) !important;
        transition: left 0.5s ease !important;
    }
    
    .nav-menu.active .nav-link:hover::before {
        left: 100% !important;
    }
    
    .nav-menu.active .nav-link:hover,
    .nav-menu.active .nav-link.active {
        background: var(--secondary-color) !important;
        color: var(--text-dark) !important;
        transform: translateY(-3px) scale(1.02) !important;
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4) !important;
        border-color: var(--accent-color) !important;
    }
    
    .nav-menu.active .nav-link:active {
        transform: translateY(-1px) scale(0.98) !important;
    }
}

/* Desktop Navigation - Hide hamburger on large screens */
@media (min-width: 1201px) {
    .nav-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        background: transparent !important;
        flex-direction: row !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 2rem !important;
        height: auto !important;
        width: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Responsive Design */

/* للأجهزة الكبيرة */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
    }

    .rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 3rem;
    }
}

/* للأجهزة المتوسطة */
@media (min-width: 769px) and (max-width: 1199px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }

    .rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2.5rem;
    }
}
@media (max-width: 768px) {
    .nav-toggle span {
        pointer-events: none;
    }

    .hero-container {
        padding: 1rem;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reservation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .menu-filters {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* تحسينات إضافية للتابلت */
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .gallery-item {
        padding: 1rem;
    }
    
    .featured-item {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .featured-item .gallery-image {
        height: 250px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .video-container {
        height: 200px;
    }
    
    .video-item {
        cursor: pointer;
        touch-action: manipulation;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }

    .room-card {
        padding: 2rem;
        cursor: pointer;
        touch-action: manipulation;
    }
    
    .room-card:active {
        transform: scale(0.98);
    }

    .logo-icon {
        height: 35px !important;
    }
    
    .logo-text h1 {
        font-size: 1.2rem !important;
    }
    
    .logo-text p {
        font-size: 0.9rem !important;
    }

    .footer-logo .logo-icon {
        height: 30px !important;
    }
    
    .footer-logo h3 {
        font-size: 1.1rem !important;
    }
    
    .footer-logo p {
        font-size: 0.8rem !important;
    }
    
    .footer-section > h4:first-of-type {
        font-size: 1.2rem !important;
        margin: 0 0 0.6rem 0 !important;
    }
    
    .footer-section > h4:first-of-type + p {
        font-size: 0.9rem !important;
        margin: 0 0 1rem 0 !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 1rem;
    }
    
    .nav-toggle {
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-link {
        min-height: 50px;
        padding: 1.2rem 2rem;
    }

    .hero-container {
        padding: 0.5rem;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        gap: 0.5rem;
        flex-direction: column;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

    /* تحسينات إضافية للهواتف الصغيرة */
    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .gallery-item {
        padding: 0.5rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .video-container {
        height: 180px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 1.2rem;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    .video-overlay {
        padding: 1rem;
    }

    .room-card {
        margin: 0 10px;
        cursor: pointer;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .room-card:active {
        transform: scale(0.95);
    }

    .menu-item {
        margin: 0 10px;
    }

    .form-container {
        padding: 1.5rem;
    }

    .info-container {
        padding: 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }
}

/* للشاشات العريضة */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-features {
        gap: 4rem;
    }

    .services-grid {
        gap: 4rem;
    }

    .menu-grid {
        gap: 4rem;
    }

    .rooms-grid {
        gap: 4rem;
    }
}

/* للشاشات الصغيرة جداً */
@media (max-width: 360px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .service-card {
        padding: 1rem;
    }

    .room-card {
        padding: 1rem;
    }

    .menu-item {
        padding: 1rem;
    }

    .form-container {
        padding: 1rem;
    }

    .info-container {
        padding: 1rem;
    }

    .container {
        padding: 0 10px;
    }
}

/* للهواتف في الوضع الأفقي */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-container {
        min-height: 60vh;
        padding: 0.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        margin-bottom: 1rem;
    }

    .hero-features {
        margin-top: 1rem;
    }

    .nav-menu {
        padding-top: 1rem;
    }

    .nav-link {
        padding: 0.5rem 1.5rem;
        margin: 0.3rem 0;
    }
}

/* تحسينات للطباعة */
@media print {
    .header,
    .nav-toggle,
    .hero-buttons,
    .footer {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-container {
        min-height: auto;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .feature-card,
    .service-card,
    .room-card,
    .menu-item {
        background: white !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        break-inside: avoid;
    }

    .hero-title,
    .section-header h2,
    .feature-card h3,
    .service-card h3,
    .room-card h3 {
        color: black !important;
    }
}

/* Admin Dashboard Styles */

/* Admin Hero */
.admin-hero {
    min-height: 40vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.admin-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('image/back.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: 1;
}

.admin-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.admin-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: var(--secondary-color);
}

.admin-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Admin Section */
.admin-section {
    padding: 4rem 0;
    background: var(--bg-dark);
    position: relative;
}

/* Admin Stats */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-info h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-number {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 800;
}

/* Admin Controls */
.admin-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-select,
.admin-input {
    padding: 0.8rem 1.2rem;
    border: 2px solid var(--secondary-color);
    background: rgba(0, 0, 0, 0.9);
    color: var(--text-light);
    border-radius: 10px;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.admin-select:focus,
.admin-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px var(--shadow-color);
}

.action-controls {
    display: flex;
    gap: 1rem;
}

.admin-btn {
    padding: 0.8rem 1.5rem;
    background: var(--gradient-secondary);
    color: var(--text-dark);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.logout-btn {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
    color: white !important;
}

.logout-btn:hover {
    background: linear-gradient(135deg, #c82333, #a71e2a) !important;
}

/* User Info */
.user-info {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.user-info h3 {
    color: var(--secondary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.user-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Reservations Table */
.reservations-table-container {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.reservations-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-light);
}

.reservations-table th {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
}

.reservations-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.reservations-table tr:hover {
    background: rgba(255, 215, 0, 0.1);
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.action-btn {
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: transparent;
}

.view-btn:hover {
    background: rgba(0, 123, 255, 0.2);
    transform: scale(1.1);
}

.edit-btn:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: scale(1.1);
}

.delete-btn:hover {
    background: rgba(220, 53, 69, 0.2);
    transform: scale(1.1);
}

.no-data {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    padding: 2rem;
}

/* Admin Messages */
.admin-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: var(--text-light);
    font-weight: 600;
    z-index: 10000;
    animation: slideIn 0.3s ease;
}

.admin-message.success {
    background: #28a745;
    border: 2px solid #20c997;
}

.admin-message.error {
    background: #dc3545;
    border: 2px solid #c82333;
}

.admin-message.info {
    background: var(--secondary-color);
    border: 2px solid var(--accent-color);
    color: var(--text-dark);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Admin */
@media (max-width: 768px) {
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .admin-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-controls {
        justify-content: center;
    }

    .action-controls {
        justify-content: center;
    }

    .reservations-table {
        font-size: 0.9rem;
    }

    .reservations-table th,
    .reservations-table td {
        padding: 0.5rem;
    }

    .action-buttons {
        flex-direction: column;
        gap: 0.3rem;
    }

    .admin-hero-content h1 {
        font-size: 2.5rem;
    }

    .admin-hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .admin-stats {
        grid-template-columns: 1fr;
    }

    .filter-controls {
        flex-direction: column;
    }

    .action-controls {
        flex-direction: column;
    }

    .reservations-table {
        font-size: 0.8rem;
    }

    .reservations-table th,
    .reservations-table td {
        padding: 0.3rem;
    }

    .admin-hero-content h1 {
        font-size: 2rem;
    }
}

/* Login Page Styles */

/* Login Hero */
.login-hero {
    min-height: 30vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.login-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('image/back.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: 1;
}

.login-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.login-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: var(--secondary-color);
}

.login-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Login Section */
.login-section {
    padding: 4rem 0;
    background: var(--bg-dark);
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.login-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.login-form {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.login-logo .logo-icon {
    height: 40px;
    width: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.login-logo h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    font-family: var(--font-heading);
}

.login-logo p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* Login Form Styles */
.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--secondary-color);
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-light);
    border-radius: 10px;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--shadow-color);
    background: rgba(0, 0, 0, 0.9);
}

.form-group.focused label {
    color: var(--accent-color);
}

/* Password Input */
.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-50%) scale(1.1);
}

.password-toggle i {
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.password-toggle:hover i {
    color: var(--secondary-color);
}

.password-input input {
    padding-right: 3rem;
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-secondary);
    color: var(--text-dark);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.login-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Login Footer */
.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.login-footer p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.back-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Error and Success Messages */
.error-message {
    background: #dc3545;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    border: 2px solid #c82333;
    animation: slideIn 0.3s ease;
}

.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    z-index: 10000;
    border: 2px solid #20c997;
    animation: slideIn 0.3s ease;
}

/* Responsive Login */
@media (max-width: 768px) {
    .login-hero-content h1 {
        font-size: 2.5rem;
    }

    .login-hero-content p {
        font-size: 1rem;
    }

    .login-form {
        padding: 2rem;
        margin: 0 1rem;
    }

    .login-logo h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .login-hero-content h1 {
        font-size: 2rem;
    }

    .login-form {
        padding: 1.5rem;
    }

    .form-group input {
        padding: 0.8rem 1rem;
    }

    .login-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* My Reservations Page Styles */

/* My Reservations Hero */
.my-reservations-hero {
    min-height: 40vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.my-reservations-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('image/back.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: 1;
}

.my-reservations-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.my-reservations-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: var(--secondary-color);
}

.my-reservations-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Search Section */
.search-section {
    padding: 4rem 0;
    background: var(--bg-dark);
    position: relative;
}

.search-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.search-form {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.search-form h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.search-form p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.search-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-secondary);
    color: var(--text-dark);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.search-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.search-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* My Reservations Section */
.my-reservations-section {
    padding: 4rem 0;
    background: var(--bg-dark);
    position: relative;
}

.my-reservations-header {
    text-align: center;
    margin-bottom: 3rem;
}

.my-reservations-header h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.reservations-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    min-width: 150px;
}

.stat-number {
    display: block;
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
}

/* My Reservations Filters */
.my-reservations-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.my-reservations-filters .filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.my-reservations-filters .filter-btn.active,
.my-reservations-filters .filter-btn:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.my-reservations-filters .filter-btn i {
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

/* My Reservations Grid */
.my-reservations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.reservation-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.reservation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.reservation-card.upcoming {
    border-color: var(--secondary-color);
}

.reservation-card.past {
    border-color: #6c757d;
    opacity: 0.8;
}

.reservation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reservation-info h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.reservation-date,
.reservation-time {
    display: block;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.reservation-status .status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.reservation-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.detail-label {
    color: var(--text-light);
    font-weight: 600;
}

.detail-value {
    color: var(--secondary-color);
    font-weight: 700;
}

.reservation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.action-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.edit-btn {
    background: var(--gradient-secondary);
    color: var(--text-dark);
}

.edit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.cancel-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.cancel-btn:hover {
    background: linear-gradient(135deg, #c82333, #a71e2a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* No Reservations */
.no-reservations {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.no-reservations-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.no-reservations-icon i {
    color: var(--secondary-color);
    font-size: 4rem;
}

.no-reservations h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.no-reservations p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg-dark);
    margin: 5% auto;
    padding: 0;
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: var(--gradient-secondary);
    color: var(--text-dark);
    padding: 1.5rem;
    border-radius: 18px 18px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    transform: scale(1.2);
}

.modal .reservation-form {
    padding: 2rem;
    background: var(--bg-dark);
}

.modal .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.modal .btn {
    min-width: 120px;
}

/* ... existing code ... */

/* Time Availability Styles */
.time-availability {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid var(--border-color);
}

.time-availability h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.time-instructions {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 8px;
    margin-top: 15px;
}

.time-slot {
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.time-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.time-slot:hover::before {
    left: 100%;
}

.time-slot.available {
    background: #e8f5e8;
    color: #2d5a2d;
    border-color: #4caf50;
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.2);
}

.time-slot.available:hover {
    background: #4caf50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

.time-slot.available:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.2);
}

.time-slot.booked {
    background: #ffebee;
    color: #c62828;
    border-color: #f44336;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: 0 2px 4px rgba(244, 67, 54, 0.2);
}

.time-slot.booked:hover {
    background: #ffebee;
    color: #c62828;
    transform: none;
    box-shadow: 0 2px 4px rgba(244, 67, 54, 0.2);
}

.time-slot.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.time-slot.selected:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.time-slot.disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.5;
    box-shadow: none;
}

.time-slot.disabled:hover {
    background: #f5f5f5;
    color: #999;
    transform: none;
    box-shadow: none;
}

/* Time Range Selection */
.time-range-info {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 12px;
    margin: 10px 0;
    text-align: center;
    color: #1565c0;
    font-weight: 500;
}

.time-range-info.selected {
    background: #c8e6c9;
    border-color: #4caf50;
    color: #2e7d32;
}

/* Modal improvements */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

.reservation-form {
    padding: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

.form-group input[readonly] {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .time-slots {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 6px;
    }
    
    .time-slot {
        padding: 6px 8px;
        font-size: 0.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .time-slots {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 4px;
    }
    
    .time-slot {
        padding: 4px 6px;
        font-size: 0.75rem;
    }
}
