/* ===== متغيرات الألوان ===== */
:root {
    --primary-dark: #060606;      /* الأسود الرئيسي */
    --secondary-dark: #334733;    /* الأخضر الداكن */
    --primary-green: #097349;     /* الأخضر الرئيسي */
    --light-green: #95e16c;       /* الأخضر الفاتح */
    --gold: #b5a233;              /* الذهبي */
    --white: #ffffff;             /* الأبيض */
    --light-gray: #f8f9fa;        /* الرمادي الفاتح */
    --gray: #6c757d;              /* الرمادي */
    --dark-gray: #343a40;         /* الرمادي الداكن */
    --shadow: rgba(6, 6, 6, 0.3); /* الظلال */
}

/* ===== إعدادات عامة ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Amiri', Arial, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    min-height: 100vh;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== الخطوط ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Amiri', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* ===== الأزرار ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow);
}

.btn-secondary {
    background: var(--gold);
    color: var(--white);
}

.btn-secondary:hover {
    background: #d4c04a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--light-green);
    border: 2px solid var(--light-green);
}

.btn-outline:hover {
    background: var(--light-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== الهيدر ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(6, 6, 6, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    object-fit: contain;
    display: block;
    box-shadow: 0 2px 8px var(--shadow);
}

.site-title {
    font-size: 1.2rem;
    color: var(--light-green);
    margin: 0;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--light-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

/* ===== المحتوى الرئيسي ===== */
.main-content {
    margin-top: 100px;
    min-height: calc(100vh - 100px);
}

/* ===== رأس الصفحة ===== */
.page-header {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-green) 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    color: var(--light-green);
    margin-bottom: 1rem;
}

.page-subtitle {
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== قسم الترحيب ===== */
.hero-section {
    padding: 4rem 0;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-title {
    color: var(--light-green);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.artwork-preview {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-green), var(--light-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    box-shadow: 0 15px 35px var(--shadow);
}

/* ===== مسيرة أربعة عقود ===== */
.journey-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(9, 115, 73, 0.1) 0%, rgba(149, 225, 108, 0.05) 100%);
}

.journey-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.journey-text {
    margin-bottom: 3rem;
    text-align: right;
}

.journey-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0.95;
}

.journey-english {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    direction: ltr;
}

.journey-english h3 {
    color: var(--light-green);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.journey-english p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--white);
    opacity: 0.9;
}

/* ===== الإحصائيات ===== */
.stats-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-green);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
}

/* ===== البطاقات ===== */
.tour-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    color: var(--dark-gray);
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tour-card.preview {
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.tour-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-green);
}

.tour-header h3 {
    color: var(--primary-green);
    margin: 0;
}

.tour-year {
    background: var(--light-green);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.tour-locations {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.location-tag {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

/* ===== أدوات التحكم ===== */
.controls-section {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.search-filter-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-container {
    flex: 1;
    min-width: 300px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    right: 15px;
    color: var(--gray);
}

.search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    background: var(--white);
    color: var(--dark-gray);
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--light-green);
    box-shadow: 0 0 10px rgba(149, 225, 108, 0.3);
}

.filter-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--primary-green);
    background: transparent;
    color: var(--light-green);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    color: var(--white);
}

/* ===== التنقل بين الجولات ===== */
.tour-nav-wrapper {
    margin-top: 2rem;
}

.tour-nav-wrapper h3 {
    color: var(--light-green);
    margin-bottom: 1rem;
}

.tour-nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tour-nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-green);
    background: var(--white);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tour-nav-btn:hover,
.tour-nav-btn.active {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1);
}

/* ===== عرض الجولات ===== */
.tours-section {
    padding: 3rem 0;
}

.tours-grid {
    display: grid;
    gap: 2rem;
}

.tours-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* ===== أزرار الجولات ===== */
.tour-actions {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-green);
    text-align: center;
}

.pdf-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pdf-btn:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pdf-btn i {
    font-size: 1.1rem;
}

.pdf-btn:active {
    transform: translateY(0);
}

/* ===== الفنانين ===== */
.featured-artists {
    padding: 4rem 0;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.artist-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.artist-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--white);
}

.artist-name {
    color: var(--light-green);
    margin-bottom: 0.5rem;
}

.artist-bio {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
}

.artist-specialties {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1rem 0;
}

.specialty {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.artist-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.artist-stats .stat {
    text-align: center;
}

.artist-stats .stat-number {
    font-size: 1.5rem;
    color: var(--light-green);
    display: block;
}

.artist-stats .stat-label {
    font-size: 0.8rem;
    color: var(--white);
    opacity: 0.7;
}

/* ===== دعوة للتواصل ===== */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--light-green);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ===== صفحة التواصل ===== */
.contact-section {
    padding: 3rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-grid {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-details h3 {
    color: var(--light-green);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light-green);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--primary-green);
    border-radius: 8px;
    background: var(--white);
    color: var(--dark-gray);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-green);
    box-shadow: 0 0 10px rgba(149, 225, 108, 0.3);
}

/* ===== صفحة المعارض ===== */
.gallery-controls {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.gallery-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-section {
    padding: 3rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.artwork-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    color: var(--dark-gray);
}

.artwork-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.artwork-image {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-green), var(--light-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.artwork-info {
    padding: 1.5rem;
}

.artwork-info h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.artist-name {
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.artwork-year {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== المعارض القادمة ===== */
.upcoming-exhibitions {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.exhibitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.exhibition-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.exhibition-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.exhibition-date {
    text-align: center;
    min-width: 80px;
}

.exhibition-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-green);
}

.exhibition-date .month {
    color: var(--white);
    opacity: 0.8;
}

.exhibition-details h3 {
    color: var(--light-green);
    margin-bottom: 0.5rem;
}

.exhibition-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--white);
    opacity: 0.8;
}

/* ===== صفحة التاريخ ===== */
.timeline-section {
    padding: 4rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-green);
    transform: translateX(50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-date {
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
    position: relative;
    z-index: 2;
}

.timeline-date .year {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-date .hijri {
    font-size: 0.9rem;
    opacity: 0.8;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin: 0 2rem;
    flex: 1;
}

.timeline-content h3 {
    color: var(--light-green);
    margin-bottom: 1rem;
}

.timeline-highlights {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.highlight {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* ===== الإنجازات ===== */
.achievements-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--white);
}

.achievement-card h3 {
    color: var(--light-green);
    margin-bottom: 1rem;
}

/* ===== المؤسسون ===== */
.founders-section {
    padding: 4rem 0;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.founder-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.founder-avatar {
    width: 100px;
    height: 100px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    color: var(--white);
}

.founder-card h3 {
    color: var(--light-green);
    margin-bottom: 1rem;
}

/* ===== الفوتر ===== */
.footer {
    background: var(--primary-dark);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--light-green);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--light-green);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.contact-info i {
    color: var(--light-green);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ===== مؤشر التحميل ===== */
.loading-indicator {
    text-align: center;
    padding: 3rem;
    color: var(--light-green);
    font-size: 1.2rem;
}

.loading-indicator i {
    margin-left: 0.5rem;
    font-size: 1.5rem;
}

/* ===== خريطة الموقع ===== */
.map-section {
    padding: 3rem 0;
}

.map-container {
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.map-placeholder {
    text-align: center;
    color: var(--light-green);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

/* ===== العناوين ===== */
.section-title {
    text-align: center;
    color: var(--light-green);
    margin-bottom: 3rem;
}

.view-all-container {
    text-align: center;
    margin-top: 2rem;
}

/* ===== الاستجابة للشاشات الصغيرة ===== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .journey-content {
        padding: 0 1rem;
    }

    .journey-text p {
        font-size: 1rem;
    }

    .journey-english {
        padding: 1.5rem;
    }

    .journey-english h3 {
        font-size: 1.5rem;
    }

    .search-filter-container {
        flex-direction: column;
        align-items: stretch;
    }

    .search-container {
        min-width: auto;
    }

    .tour-nav {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        right: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
    }

    .timeline-content {
        margin: 1rem 0 0 0;
    }

    .artists-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .exhibitions-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .tour-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ===== تأثيرات الحركة ===== */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from { 
        transform: translateX(50px); 
        opacity: 0; 
    }
    to { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

/* ===== تحسينات إضافية ===== */
::selection {
    background: var(--light-green);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-green);
} 