﻿:root {
    --primary: #355E3B; /* Forest Green - أخضر غابة */
    --secondary: #A9BA9D;      /* Moss Green - أخضر طحلبي */
    --accent: #E3D26F;         /* Light Gold - ذهبي فاتح */
    --dark: #1E2F23;           /*Deep Earth - أخضر ترابي داكن */
    --light: #EFF5EC;          /*Mint White - أبيض بأخضر ناعم */
    --text: #2D2D2D;           /* رمادي غامق للنص */
    --text-light: #6B6B6B;     /* رمادي هادئ */
    --white: #FFFFFF;
    --black: #000000;
    --overlay: rgba(0, 0, 0, 0.5);
    --header-height: 80px;
    --section-padding: 120px;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--light);
    color: var(--text);
    overflow-x: hidden;
}

/* Language Direction Classes */
.lang-ar {
    direction: rtl;
    text-align: right;
    font-family: 'Tajawal', sans-serif;
}

.lang-en {
    direction: ltr;
    text-align: left;
    font-family: 'Playfair Display', serif;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    position: relative;
    display: inline-block;
}

    h2:after {
        content: '';
        position: absolute;
        bottom: -15px;
        height: 4px;
        width: 60px;
        background: var(--accent);
    }

.lang-ar h2:after {
    right: 0;
}

.lang-en h2:after {
    left: 0;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

    .btn-primary:hover {
        background-color: transparent;
        border-color: var(--primary);
        color: var(--primary);
    }

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

    .btn-outline:hover {
        background-color: var(--white);
        color: var(--primary);
    }

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.text-center {
    text-align: center;
}

    .text-center h2:after {
        left: 50%;
        transform: translateX(-50%);
    }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background-color: var(--dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

    .navbar.scrolled {
        height: 70px;
        background-color: var(--dark);
        backdrop-filter: blur(10px);
    }

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .logo img {
        height: 50px;
        width: auto;
    }

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .nav-links a {
        position: relative;
        font-weight: 500;
        color: var(--white);
    }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            height: 2px;
            width: 0;
            background-color: var(--accent);
            transition: var(--transition);
        }

.lang-ar .nav-links a:after {
    right: 0;
}

.lang-en .nav-links a:after {
    left: 0;
}

.nav-links a:hover:after {
    width: 100%;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 30px;
}

.language-btn {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: 4px;
}

    .language-btn.active {
        color: var(--white);
        background-color: var(--primary);
    }

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/Images/hero.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

    .hero-bg:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(62, 39, 35, 0.8), rgba(62, 39, 35, 0.4));
    }

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-text {
    max-width: 600px;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 500px;
}

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-image:after {
        content: '';
        position: absolute;
        top: 20px;
        left: 20px;
        right: -20px;
        bottom: -20px;
        border: 3px solid var(--accent);
        border-radius: var(--border-radius);
        z-index: -1;
    }

.about-text h2 {
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 5px;
    color: var(--dark);
}

/* Services Section */
.services {
    background-color: var(--light);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

    .service-card:hover {
        transform: translateY(-10px);
    }

.service-image {
    height: 200px;
    overflow: hidden;
}

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-title {
    margin-bottom: 15px;
}

/* Statistics Section */
.stats {
    background: url('https://images.unsplash.com/photo-1518895949257-7621c3c786d7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1588&q=80') no-repeat center center;
    background-size: cover;
    position: relative;
    color: var(--white);
    text-align: center;
}

    .stats:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 0;
    }

    .stats .container {
        position: relative;
        z-index: 1;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    padding: 40px 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent);
}

.stat-text {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Events Section */
.events {
    background-color: var(--white);
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-title {
    margin-bottom: 0;
}

.events-slider {
    width: 100%;
    overflow: hidden;
}

.swiper-slide {
    height: auto;
}

.event-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-image {
    height: 250px;
    overflow: hidden;
}

    .event-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-date {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.event-title {
    margin-bottom: 15px;
    flex-grow: 1;
}

.event-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 20px;
}

.lang-ar .event-link i {
    transform: rotate(180deg);
}

/* Artists Section */
.artists {
    background-color: var(--light);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.artist-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.artist-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.artist-card:hover .artist-image {
    transform: scale(1.05);
}

.artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transform: translateY(100px);
    transition: var(--transition);
    opacity: 0;
}

.artist-card:hover .artist-overlay {
    transform: translateY(0);
    opacity: 1;
}

.artist-name {
    margin-bottom: 5px;
}

.artist-specialty {
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

.artist-social {
    display: flex;
    gap: 15px;
}

    .artist-social a {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

        .artist-social a:hover {
            background-color: var(--accent);
            color: var(--dark);
        }

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    margin: 20px;
    box-shadow: var(--box-shadow);
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--accent);
}

    .testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text);
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

    .newsletter h2 {
        color: var(--white);
    }

        .newsletter h2:after {
            background-color: var(--accent);
        }

    .newsletter p {
        max-width: 600px;
        margin: 0 auto 40px;
        color: rgba(255, 255, 255, 0.8);
    }

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex-grow: 1;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.lang-ar .newsletter-input {
    text-align: right;
}

.lang-en .newsletter-input {
    text-align: left;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding-top: var(--section-padding);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

    .footer-logo img {
        height: 50px;
    }

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-about {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 15px;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

        .footer-social a:hover {
            background-color: var(--accent);
            color: var(--dark);
        }

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    color: var(--white);
}

    .footer-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        height: 2px;
        width: 40px;
        background-color: var(--accent);
    }

.lang-ar .footer-title:after {
    right: 0;
}

.lang-en .footer-title:after {
    left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

    .footer-links a:hover {
        color: var(--accent);
        padding-right: 10px;
    }

.lang-en .footer-links a:hover {
    padding-right: 0;
    padding-left: 10px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    :root {
        --section-padding: 100px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 400px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --header-height: 70px;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 30px 5%;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: var(--transition);
    }

        .nav-links.active {
            transform: translateY(0);
        }

    .hamburger {
        display: block;
    }

    .language-switcher {
        margin-right: 0;
        margin-left: auto;
    }

    .hero {
        min-height: 700px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 50px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
