/* =====================================================
   NHOP EVENT - CSS (Design identique au React)
   Fond BLANC, Accents OR MÉTALLIQUE
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Outfit:wght@100..900&display=swap');

/* CSS Variables */
:root {
    /* Couleurs principales */
    --gold-shine: #C9A227;
    --gold: #B8860B;
    --gold-dark: #996515;
    --gold-deep: #8B7355;
    --gold-light: #D4AF37;
    --gold-pale: #CFB53B;
    --gold-bg: #FDF8ED;
    
    /* Couleurs neutres */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Holy Food Pink */
    --pink: #EC4899;
    --pink-light: #F472B6;
    --pink-dark: #DB2777;
    
    /* Typographie */
    --font-heading: 'Playfair Display', serif;
    --font-accent: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.font-heading { font-family: var(--font-heading); }
.font-accent { font-family: var(--font-accent); }
.font-body { font-family: var(--font-body); }

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container-main {
    max-width: 1280px;
    margin: 0 auto;
}

/* Gold Metallic Gradient */
.gold-metallic {
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 25%, #CFB53B 50%, #B8860B 75%, #996515 100%);
}

.gold-metallic-text {
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 25%, #CFB53B 50%, #B8860B 75%, #996515 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold { color: var(--gold); }
.bg-gold { background-color: var(--gold); }
.border-gold { border-color: var(--gold); }

/* =====================================================
   BUTTONS
===================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #B8860B 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #996515 0%, #B8860B 50%, #996515 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--gray-900);
    color: var(--gray-900);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--gray-900);
    color: var(--white);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-gold:hover {
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #B8860B 100%);
    color: #000;
}

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 6rem;
    padding: 0 1rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .navbar-container {
        padding: 0 2rem;
    }
}

.navbar-logo img {
    height: 5rem;
    width: auto;
    filter: drop-shadow(0 0 0 transparent);
    mix-blend-mode: multiply;
}

.navbar-menu {
    display: none;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
}

@media (min-width: 1024px) {
    .navbar-menu {
        display: flex;
    }
}

.navbar-menu a {
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.navbar-menu a:hover {
    color: var(--gray-900);
}

.navbar-menu a.active {
    color: var(--gold);
    font-weight: 600;
}

.navbar-menu a.active-pink {
    color: var(--pink);
}

.navbar-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .navbar-actions {
        display: flex;
    }
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    background: var(--gray-100);
    transition: background 0.2s ease;
    cursor: pointer;
    border: none;
}

.lang-toggle:hover {
    background: var(--gray-200);
}

.lang-toggle svg {
    width: 1rem;
    height: 1rem;
    color: var(--gray-600);
}

.lang-toggle span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    text-transform: uppercase;
}

/* Mobile Menu */
.menu-toggle {
    display: flex;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.menu-toggle:hover {
    background: var(--gray-100);
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 6rem;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 1rem;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.2s ease;
}

.mobile-menu a:hover {
    background: var(--gray-50);
}

.mobile-menu a.active {
    background: rgba(184, 134, 11, 0.1);
    color: var(--gold);
}

.mobile-menu a.active-pink {
    background: rgba(236, 72, 153, 0.1);
    color: var(--pink);
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
    position: relative;
    height: 85vh;
    width: 100%;
    padding-top: 6rem;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0 2rem;
    }
}

.hero-inner {
    max-width: 48rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(184, 134, 11, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(184, 134, 11, 0.3);
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold-light);
}

.hero-badge span {
    color: var(--gold-light);
    font-weight: 500;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 42rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator span {
    font-size: 0.875rem;
}

.scroll-indicator .scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
}

.scroll-indicator .scroll-wheel {
    width: 0.375rem;
    height: 0.75rem;
    background: var(--gold-light);
    border-radius: 9999px;
    margin-top: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Floating icons */
.hero-floating {
    position: absolute;
    display: none;
}

@media (min-width: 1024px) {
    .hero-floating {
        display: block;
    }
}

.hero-floating .icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-floating .icon-box.gold {
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #B8860B 100%);
}

.hero-floating .icon-box.white {
    background: var(--white);
}

.hero-floating svg {
    width: 2rem;
    height: 2rem;
}

/* =====================================================
   SECTIONS
===================================================== */
.section-padding {
    padding: 5rem 1rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 7rem 2rem;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 7rem 4rem;
    }
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-gold {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(212, 175, 55, 0.15) 100%);
    color: #996515;
}

.badge-gray {
    background: var(--gray-100);
    color: var(--gray-600);
}

.badge svg {
    width: 1rem;
    height: 1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

.section-header p {
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

/* =====================================================
   SERVICES SECTION (Quick Icons)
===================================================== */
.services-quick {
    background: var(--gray-900);
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
}

.services-quick-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23D4AF37'/%3E%3C/svg%3E");
    background-size: 30px 30px;
}

.services-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .services-quick-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-quick-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.services-quick-item {
    text-align: center;
    cursor: pointer;
}

.services-quick-item .icon-box {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 0.75rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #B8860B 100%);
}

.services-quick-item:hover .icon-box {
    transform: scale(1.1);
}

.services-quick-item .icon-box svg {
    width: 2rem;
    height: 2rem;
    color: #000;
}

.services-quick-item h3 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.services-quick-item p {
    color: var(--gray-400);
    font-size: 0.75rem;
}

/* =====================================================
   CARDS
===================================================== */
.card-service {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--gray-100);
    transition: all 0.5s ease;
}

.card-service:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(184, 134, 11, 0.3);
    transform: translateY(-5px);
}

.card-service-image {
    position: relative;
    height: 12rem;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.card-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-service:hover .card-service-image img {
    transform: scale(1.1);
}

.card-service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.card-service:hover .card-service-overlay {
    opacity: 1;
}

.card-service-overlay span {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
}

.card-service h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.card-service:hover h3 {
    color: var(--gold);
}

.card-service p {
    color: var(--gray-600);
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Event Card */
.card-event {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.5s ease;
}

.card-event:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.card-event-image {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.card-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-event:hover .card-event-image img {
    transform: scale(1.1);
}

.card-event-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #B8860B 100%);
    color: #000;
}

.card-event-play {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-event:hover .card-event-play {
    opacity: 1;
}

.card-event-play svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
}

.card-event-content {
    padding: 1.5rem;
}

.card-event h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.card-event:hover h3 {
    color: var(--gold);
}

.card-event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card-event-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.card-event-meta svg {
    width: 1rem;
    height: 1rem;
    color: var(--gold);
}

.card-event p {
    color: var(--gray-600);
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =====================================================
   ABOUT SECTION
===================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-images {
    position: relative;
}

.about-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-images-grid > div:nth-child(2) {
    padding-top: 2rem;
}

.about-images img {
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    width: 100%;
}

.about-floating-card {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1.5rem;
    width: 16rem;
}

.about-floating-card-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-floating-card .icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #B8860B 100%);
}

.about-floating-card .icon-box svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #000;
}

.about-floating-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.about-floating-card p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.about-content .badge {
    margin-bottom: 1.5rem;
}

.about-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-content h2 {
        font-size: 2.5rem;
    }
}

.about-content > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    margin-bottom: 2rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.about-list li .icon-dot {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #B8860B 100%);
}

.about-list li .icon-dot svg {
    width: 0.75rem;
    height: 0.75rem;
    color: #000;
}

/* =====================================================
   TESTIMONIALS
===================================================== */
.testimonials-section {
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.testimonials-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23D4AF37'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.testimonials-content {
    position: relative;
    z-index: 10;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header .badge {
    background: rgba(184, 134, 11, 0.2);
    color: var(--gold-light);
}

.testimonials-header h2 {
    color: var(--white);
}

.testimonial-card {
    max-width: 56rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 3rem;
    }
}

.testimonial-card .quote-icon {
    width: 3rem;
    height: 3rem;
    color: rgba(184, 134, 11, 0.3);
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    color: var(--white);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .testimonial-card p {
        font-size: 1.5rem;
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #B8860B 100%);
}

.testimonial-avatar span {
    color: #000;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-info h4 {
    color: var(--white);
    font-weight: 700;
    font-family: var(--font-heading);
}

.testimonial-info p {
    color: var(--gold-light);
    font-size: 0.875rem;
    font-style: normal;
    margin-bottom: 0;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-nav button {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-nav button:hover {
    background: var(--gold);
    color: #000;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dots button {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots button.active {
    width: 1.5rem;
    background: var(--gold);
}

/* =====================================================
   CTA SECTION
===================================================== */
.cta-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #B8860B 100%);
    position: relative;
    overflow: hidden;
}

.cta-decorations {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.cta-decorations .circle {
    position: absolute;
    border: 2px solid #000;
    border-radius: 9999px;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 36rem;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 2.25rem;
    }
}

.cta-content p {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-buttons .btn-black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #000;
    color: var(--white);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-black:hover {
    background: var(--gray-800);
}

.cta-buttons .btn-outline-black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid #000;
    color: #000;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-outline-black:hover {
    background: #000;
    color: var(--white);
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 4rem 1rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand p {
    color: var(--gray-400);
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.75;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: #000;
}

.footer-links h4 {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--gray-400);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* =====================================================
   FORMS
===================================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-900);
    font-family: var(--font-body);
    transition: all 0.2s ease;
    outline: none;
}

.input-field:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2);
}

.input-field::placeholder {
    color: var(--gray-400);
}

textarea.input-field {
    min-height: 150px;
    resize: vertical;
}

/* =====================================================
   HOLY FOOD SIGNATURE (Pink Theme)
===================================================== */
.holy-food-section .badge-gold {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(244, 114, 182, 0.15) 100%);
    color: var(--pink-dark);
}

.holy-food-section .btn-primary {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 50%, var(--pink) 100%);
}

.holy-food-section .btn-primary:hover {
    background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 50%, var(--pink-dark) 100%);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.holy-food-section .text-gold {
    color: var(--pink);
}

.holy-food-section .gold-metallic-text {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 50%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   ANIMATIONS
===================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* =====================================================
   UTILITIES
===================================================== */
.text-center { text-align: center; }
.hidden { display: none; }

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #996515;
}

/* Selection */
::selection {
    background: rgba(184, 134, 11, 0.2);
    color: #000;
}

/* =====================================================
   ADMIN (même style que React)
===================================================== */
.admin-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-900);
    transition: all 0.2s ease;
    outline: none;
}

.admin-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2);
}

.admin-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.admin-label {
    display: block;
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* =====================================================
   ADMIN LOGIN PAGE
===================================================== */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    padding: 1rem;
}

.admin-login-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.admin-login-card h1 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.admin-login-card .form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.admin-login-card .form-group label {
    display: block;
    color: var(--gray-300);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.admin-login-card .form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.admin-login-card .form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2);
}

.admin-login-card .form-group input::placeholder {
    color: var(--gray-500);
}

/* =====================================================
   ADMIN DASHBOARD LAYOUT
===================================================== */
.admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 260px;
    background: var(--gray-900);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    overflow-y: auto;
    z-index: 100;
}

.admin-sidebar-logo {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-nav {
    list-style: none;
}

.admin-nav li {
    margin-bottom: 0.25rem;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.admin-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.admin-nav a.active {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.2), rgba(212, 175, 55, 0.1));
    color: var(--gold);
}

.admin-nav a i {
    width: 1.25rem;
    text-align: center;
}

.admin-main {
    margin-left: 260px;
    min-height: 100vh;
    background: var(--gray-800);
    padding: 2rem;
}

.admin-header {
    margin-bottom: 2rem;
}

.admin-header h1 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

/* =====================================================
   ADMIN CARDS & TABLES
===================================================== */
.admin-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
}

.admin-card h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table th {
    color: var(--gray-400);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-table td {
    color: var(--gray-300);
    font-size: 0.9rem;
}

.admin-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.admin-badge.new {
    background: rgba(33, 150, 243, 0.2);
    color: #64B5F6;
}

.admin-badge.read,
.admin-badge.processed {
    background: rgba(76, 175, 80, 0.2);
    color: #81C784;
}

.admin-badge.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #FFD54F;
}

/* =====================================================
   PAGE HERO (pour Services & Events)
===================================================== */
.page-hero {
    padding: 8rem 1rem 4rem;
    text-align: center;
    background: var(--gray-50);
}

.page-hero .badge {
    margin-bottom: 1rem;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-hero h1 {
        font-size: 3rem;
    }
}

.page-hero p {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

/* =====================================================
   SERVICE DETAILS LAYOUT
===================================================== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .service-detail {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-detail.reverse {
        direction: rtl;
    }
    
    .service-detail.reverse > * {
        direction: ltr;
    }
}

.service-detail-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-content .badge {
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-detail-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.service-detail-list li .icon-check {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-list li .icon-check i {
    width: 0.75rem;
    height: 0.75rem;
    color: #000;
}

/* =====================================================
   PROCESS SECTION
===================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.process-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.process-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.process-card .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.process-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.process-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* =====================================================
   EVENTS GRID & CARDS
===================================================== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.event-card-large {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.event-card-large:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.event-card-large .image-wrapper {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.event-card-large .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card-large:hover .image-wrapper img {
    transform: scale(1.05);
}

.event-card-large .event-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.event-card-large .event-badge.upcoming {
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
    color: #000;
}

.event-card-large .event-badge.full {
    background: var(--gray-700);
    color: var(--white);
}

.event-card-large .event-badge.past {
    background: var(--gray-300);
    color: var(--gray-700);
}

.event-card-large .content {
    padding: 1.5rem;
}

.event-card-large h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.event-card-large .meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.event-card-large .meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.event-card-large .meta i {
    width: 1rem;
    height: 1rem;
    color: var(--gold);
}

.event-card-large p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* =====================================================
   FILTER BUTTONS
===================================================== */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-btn.active {
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
    border-color: transparent;
    color: #000;
}

/* =====================================================
   RESPONSIVE ADMIN
===================================================== */
@media (max-width: 1024px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .admin-sidebar.open {
        transform: translateX(0);
    }
    
    .admin-main {
        margin-left: 0;
    }
}
