/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Nouvelle palette de couleurs inspirée de l'image de référence */
    --bleu-mystique: #2F5F5F;        /* Bleu-vert profond de l'arrière-plan */
    --orange-chaleureux: #D2691E;     /* Orange chaud des éléments centraux */
    --vert-nature: #6B8E23;          /* Vert olive des formes organiques */
    --dore-spirituel: #DAA520;       /* Doré lumineux pour les accents */
    --terre-sienne: #A0522D;         /* Terre de Sienne pour les structures */
    --vert-sauge: #9CAF88;           /* Vert sauge pour l'harmonie */
    --blanc-nacre: #F8F8FF;          /* Blanc nacré pour la pureté */
    --gris-doux: #E6E6E6;            /* Gris doux pour les arrière-plans */

    /* Nouveaux dégradés */
    --gradient-hero: linear-gradient(135deg, rgba(47, 95, 95, 0.8) 0%, rgba(210, 105, 30, 0.6) 100%);
    --gradient-primary: linear-gradient(135deg, var(--dore-spirituel) 0%, var(--orange-chaleureux) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--vert-nature) 0%, var(--vert-sauge) 100%);
    --gradient-navbar: linear-gradient(135deg, rgba(248, 248, 248, 0.1) 0%, rgba(248, 248, 248, 0.05) 100%);

    --shadow-light: 0 2px 10px rgba(47, 95, 95, 0.1);
    --shadow-medium: 0 4px 20px rgba(47, 95, 95, 0.15);
    --shadow-heavy: 0 8px 30px rgba(47, 95, 95, 0.2);
    --border-radius: 12px;
    --transition: all 0.4s cubic-bezier(.4,0,.2,1);

    --instagram: #E4405F;

    --ocre: #CC7722;
    --argile: #B38B6D;
    --brun-rouge: #8B4513;
    --sable: #F4A460;
    --bleu-nuit: #0F3460;
    --bleu-indigo: #4B0082;
    --argente: #C0C0C0;
    --dore-mat: #D4AF37;
    --eucalyptus: #44D7A8;
    --gradient-bg: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-indigo) 100%);
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--bleu-nuit);
    /* background: var(--gradient-bg); */
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dore-mat);
    letter-spacing: 1px;
}

.arabic {
    font-family: 'Amiri', serif;
    font-size: 1.2em;
    color: var(--dore-spirituel);
}

.decorative {
    font-family: 'Dancing Script', cursive;
    color: var(--ocre);
}

/* Navigation - Navbar Transparente */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(212,175,55,0.15);
    box-shadow: 0 2px 12px 0 rgba(15,52,96,0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(248, 248, 248, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(218, 165, 32, 0.3));
    transition: var(--transition);
    mix-blend-mode: multiply;
}

.logo:hover {
    filter: drop-shadow(0 4px 8px rgba(218, 165, 32, 0.5)) brightness(1.1);
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--blanc-nacre);
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(47, 95, 95, 0.5);
}

.navbar.scrolled .logo-text {
    color: var(--bleu-mystique);
    text-shadow: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--blanc-nacre);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    text-shadow: 1px 1px 2px rgba(47, 95, 95, 0.5);
}

.navbar.scrolled .nav-link {
    color: var(--bleu-mystique);
    text-shadow: none;
}

.nav-link:hover {
    color: var(--dore-spirituel);
    text-shadow: 0 0 8px rgba(218, 165, 32, 0.6);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--blanc-nacre);
    margin: 3px 0;
    transition: var(--transition);
}

.navbar.scrolled .bar {
    background: var(--bleu-mystique);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--gradient-hero), url('images/hero_tajalli_nouveau.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--blanc-nacre);
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(47, 95, 95, 0.7);
    color: var(--dore-spirituel);
    filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.5));
}

.arabic-title {
    display: block;
    font-size: 3rem;
    color: var(--dore-spirituel);
    margin-top: 0.5rem;
    font-family: 'Amiri', serif;
    filter: drop-shadow(0 0 8px rgba(218, 165, 32, 0.4));
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    color: var(--blanc-nacre);
    text-shadow: 1px 1px 3px rgba(47, 95, 95, 0.6);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--blanc-nacre);
    text-shadow: 1px 1px 2px rgba(47, 95, 95, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--blanc-nacre);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
    border: 2px solid var(--dore-spirituel);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.6);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--blanc-nacre);
    border: 2px solid var(--blanc-nacre);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--blanc-nacre);
    color: var(--bleu-mystique);
    box-shadow: 0 4px 15px rgba(248, 248, 248, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--dore-spirituel);
    filter: drop-shadow(0 0 5px rgba(218, 165, 32, 0.5));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 5rem 2rem;
    position: relative;
    background: rgba(255,255,255,0.01);
    border-radius: 24px;
    box-shadow: 0 4px 32px 0 rgba(15,52,96,0.07);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--dore-mat);
    text-align: center;
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--argenté);
    text-align: center;
    margin-bottom: 2rem;
}

/* Concept Section */
.concept-section {
    background: var(--blanc-nacre);
}

.concept-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.concept-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--vert-nature);
    margin-bottom: 2rem;
}

.concept-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background: var(--gris-doux);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-left: 4px solid var(--dore-spirituel);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--orange-chaleureux);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--blanc-nacre);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--bleu-mystique);
}

/* Partners Section */
.partners-section {
    background: linear-gradient(135deg, var(--gris-doux) 0%, var(--blanc-nacre) 100%);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: var(--blanc-nacre);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--vert-sauge);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--dore-spirituel);
}

.partner-logo {
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    background: linear-gradient(135deg, rgba(248, 248, 248, 0.1) 0%, rgba(248, 248, 248, 0.05) 100%);
    border-radius: 18px;
    padding: 1rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(218, 165, 32, 0.1);
    transition: var(--transition);
}

.partner-logo:hover {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(210, 105, 30, 0.05) 100%);
    border-color: rgba(218, 165, 32, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.15);
}

.partner-logo img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.1) brightness(1.05) contrast(1.1);
    border-radius: 12px;
    padding: 0.5rem;
    transition: var(--transition);
    mix-blend-mode: multiply;
    position: relative;
    z-index: 2;
}

.partner-logo:hover img {
    filter: grayscale(0) brightness(1.1) contrast(1.2) drop-shadow(0 4px 12px rgba(218, 165, 32, 0.2));
    transform: scale(1.08);
}

/* Effet de brillance sur les logos partenaires */
.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    border-radius: 18px;
}

.partner-logo:hover::before {
    left: 100%;
}


.partner-info h3 {
    font-size: 1.4rem;
    color: var(--bleu-mystique);
    margin-bottom: 0.5rem;
}

.partner-type {
    color: var(--orange-chaleureux);
    font-weight: 600;
    margin-bottom: 1rem;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bleu-indigo);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: var(--transition);
}

.partner-link:hover {
    color: var(--dore-mat);
    text-shadow: 0 0 8px rgba(212,175,55,0.3);
}

.partner-link.instagram {
    color: var(--instagram) !important;
}

.partner-link.instagram i {
    color: var(--instagram) !important;
}

/* Artists Section */
.artists-section {
    background: var(--blanc-nacre);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.artist-card {
    background: var(--gradient-secondary);
    color: var(--blanc-nacre);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(210, 105, 30, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.artist-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(218, 165, 32, 0.2);
    background: var(--gradient-primary);
    border: 1px solid rgba(218, 165, 32, 0.3);
}

.artist-card:hover::before {
    opacity: 1;
}

.artist-card a {
    color: var(--blanc-nacre);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(47, 95, 95, 0.3);
}

.artist-card a:hover {
    color: var(--dore-spirituel);
    text-shadow: 0 0 12px rgba(218, 165, 32, 0.8);
    transform: scale(1.05);
}

/* Effet de particules pour les cartes d'artistes */
.artist-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
}

.artist-card:hover::after {
    width: 300px;
    height: 300px;
    animation: pulse 2s infinite;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, var(--gris-doux) 0%, var(--blanc-nacre) 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--blanc-nacre);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--vert-sauge);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--dore-spirituel);
}

.pricing-card.featured {
    border: 3px solid var(--dore-spirituel);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-primary);
    color: var(--blanc-nacre);
    padding: 0.5rem 2rem;
    font-weight: 600;
    transform: rotate(45deg);
    font-size: 0.9rem;
}

.card-header {
    background: var(--gradient-secondary);
    color: var(--blanc-nacre);
    padding: 2rem;
    text-align: center;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--blanc-nacre);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dore-spirituel);
}

.currency {
    font-size: 1.2rem;
    font-weight: 500;
}

.card-body {
    padding: 2rem;
}

.card-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--bleu-mystique);
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gris-doux);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--dore-spirituel);
    font-size: 1.2rem;
}

/* Reservation Section */
.reservation-section {
    background: var(--blanc-nacre);
}

.reservation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.reservation-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--bleu-mystique);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.info-item i {
    color: var(--dore-spirituel);
    font-size: 1.3rem;
    width: 20px;
}

.reservation-button {
    text-align: center;
}

.btn-reservation {
    background: var(--ocre);
    color: var(--blanc-nacre);
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(204,119,34,0.08);
    border: 2px solid var(--dore-mat);
}

.btn-reservation:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.18);
    filter: brightness(1.1);
}

.reservation-note {
    color: var(--bleu-mystique);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--gris-doux) 0%, var(--blanc-nacre) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--blanc-nacre);
    font-size: 1.3rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--bleu-mystique);
}

.contact-details a {
    color: var(--bleu-indigo);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--dore-mat);
    text-shadow: 0 0 8px rgba(212,175,55,0.3);
}

.gps {
    font-size: 0.9rem;
    color: var(--bleu-mystique);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--dore-spirituel);
}

.map-container iframe {
    width: 100% !important;
    height: 350px;
    max-width: 100vw;
    display: block;
}

/* Footer */
.footer {
    background: var(--bleu-mystique);
    color: var(--blanc-nacre);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(218, 165, 32, 0.3)) brightness(1.05);
    transition: var(--transition);
    mix-blend-mode: multiply;
}

.footer-logo-img:hover {
    filter: drop-shadow(0 4px 8px rgba(218, 165, 32, 0.5)) brightness(1.15);
    transform: scale(1.1);
}

.footer-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dore-spirituel);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc-nacre);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    filter: brightness(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(248, 248, 248, 0.1);
    color: rgba(248, 248, 248, 0.7);
}

/* Responsive Design */
@media (max-width: 900px) {
    section { padding: 3rem 1rem; }
    .section-title { font-size: 2rem; }
    .sacred-spiral, .sacred-mandala { display: none; }
    .partners-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .partner-card {
        padding: 1.2rem !important;
    }
}

@media (max-width: 600px) {
    section { padding: 2rem 0.5rem; }
    .section-title { font-size: 1.4rem; }
    .partners-grid {
        grid-template-columns: 1fr !important;
    }
    .partner-card {
        padding: 0.7rem !important;
    }
    .partner-banner img {
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(248, 248, 248, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu.active .nav-link {
        color: var(--bleu-mystique);
        text-shadow: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .arabic-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .concept-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reservation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .logo {
        height: 70px;
    }
    
    .partner-logo {
        min-height: 100px;
        padding: 0.8rem;
    }
    
    .partner-logo img {
        max-height: 80px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .arabic-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-card {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .artist-card a {
        font-size: 0.95rem;
    }
    
    .logo {
        height: 60px;
    }
    
    .partner-logo {
        min-height: 90px;
        padding: 0.6rem;
    }
    
    .partner-logo img {
        max-height: 70px;
    }
    
    .footer-logo-img {
        height: 45px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--blanc-nacre);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--vert-nature);
}

/* Ripple effect for buttons */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

/* Golden glow effect for buttons */
.btn-primary, .btn-reservation {
    box-shadow: 0 0 15px rgba(218, 165, 32, 0.3), 0 4px 15px rgba(218, 165, 32, 0.4);
}

.btn-primary:hover, .btn-reservation:hover {
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.5), 0 8px 25px rgba(218, 165, 32, 0.6);
}

/* Effet de particules cosmiques */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.cosmic-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--dore-spirituel);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
    opacity: 0.6;
}

/* Effet de géométrie sacrée */
.sacred-geometry {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    opacity: 0.1;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="20" fill="none" stroke="%23DAA520" stroke-width="1"/><circle cx="50" cy="30" r="20" fill="none" stroke="%23DAA520" stroke-width="1"/><circle cx="67" cy="40" r="20" fill="none" stroke="%23DAA520" stroke-width="1"/><circle cx="67" cy="60" r="20" fill="none" stroke="%23DAA520" stroke-width="1"/><circle cx="50" cy="70" r="20" fill="none" stroke="%23DAA520" stroke-width="1"/><circle cx="33" cy="60" r="20" fill="none" stroke="%23DAA520" stroke-width="1"/><circle cx="33" cy="40" r="20" fill="none" stroke="%23DAA520" stroke-width="1"/></svg>');
    animation: float 6s ease-in-out infinite;
}

/* Eléments décoratifs géométrie sacrée */
.sacred-spiral {
    position: absolute;
    top: 10%;
    left: 2%;
    width: 120px;
    height: 120px;
    opacity: 0.13;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 Q90,50 50,90 Q10,50 50,10 Z" fill="none" stroke="%23D4AF37" stroke-width="2"/></svg>');
    z-index: 1;
    animation: rotate 18s linear infinite;
}
.sacred-mandala {
    position: absolute;
    bottom: 8%;
    right: 4%;
    width: 160px;
    height: 160px;
    opacity: 0.10;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23D4AF37" stroke-width="2"/><circle cx="50" cy="50" r="30" fill="none" stroke="%23CC7722" stroke-width="1.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="%234B0082" stroke-width="1.5"/></svg>');
    z-index: 1;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes pulse {
    0%,100% { transform: scale(1); opacity: 0.10; }
    50% { transform: scale(1.08); opacity: 0.18; }
}

/* Animation spéciale pour les logos au chargement */
@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
        filter: grayscale(1) brightness(0.5);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1) rotate(2deg);
        filter: grayscale(0.3) brightness(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: grayscale(0.1) brightness(1.05);
    }
}

.partner-logo img {
    animation: logoAppear 0.8s ease-out;
}

@keyframes artistCardAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
        filter: brightness(0.7);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.02);
        filter: brightness(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: brightness(1);
    }
}

.artist-card {
    animation: artistCardAppear 0.6s ease-out;
}

/* Effet de particules autour des logos partenaires */
.partner-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
}

.partner-logo:hover::after {
    width: 200px;
    height: 200px;
    animation: pulse 2s infinite;
}

.partner-banner img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(47,95,95,0.12);
    margin: 0 auto 2rem auto;
    display: block;
}




/* Stand Exposant Cosmétique Section */
.cosmetic-stand-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(47,95,95,0.03) 0%, rgba(218,165,32,0.05) 100%);
    position: relative;
    overflow: hidden;
}

.cosmetic-stand-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cosmetic-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(218,165,32,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cosmetic-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.cosmetic-stand-content {
    position: relative;
    z-index: 1;
}

.stand-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(47,95,95,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218,165,32,0.2);
    transition: all 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(47,95,95,0.15);
    border-color: rgba(218,165,32,0.4);
}

.stand-logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stand-logo img {
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stand-logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.stand-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2f5f5f;
    margin-bottom: 25px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stand-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stand-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #2f5f5f 0%, #4a7c7c 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(47,95,95,0.3);
}

.stand-link:hover {
    background: linear-gradient(135deg, #daa520 0%, #f4d03f 100%);
    color: #2f5f5f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218,165,32,0.4);
    text-decoration: none;
}

.stand-link.instagram:hover {
    background: linear-gradient(135deg, #e4405f 0%, #fd5949 100%);
    color: white;
}

.stand-link.website:hover {
    background: linear-gradient(135deg, #4267B2 0%, #5b7bd5 100%);
    color: white;
}

.stand-link i {
    font-size: 1.1rem;
}

/* Responsive Design pour la section cosmétique */
@media (max-width: 768px) {
    .cosmetic-stand-section {
        padding: 60px 0;
    }
    
    .stand-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .stand-info h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .stand-logo img {
        width: 200px !important;
        height: 80px !important;
    }
    
    .stand-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .stand-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stand-info h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .stand-logo img {
        width: 180px !important;
        height: 70px !important;
    }
}

