/* ═══════════════════════════════════════════════════════
   CAMP ABDELMOULA — EVENTS & PRIVATIZATIONS PREMIUM CSS
   Cinematic layouts · Asymmetric grids · Luxury Wizard
   ═══════════════════════════════════════════════════════ */

/* ── HERO MAJESTÉ ── */
.event-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.event-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.event-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s infinite alternate;
}

.event-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(30,22,16,0.2) 0%, 
        rgba(30,22,16,0.4) 50%, 
        rgba(30,22,16,0.8) 100%);
    z-index: 1;
}

.event-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.event-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin: 1.5rem 0 2rem;
    font-weight: 300;
}

.event-hero__subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
}

/* ── PHILOSOPHY ── */
.event-philosophy {
    padding: var(--space-3xl) 0;
    text-align: center;
}

.philosophy-grid {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-top: 1.5rem;
}

/* ── ATMOSPHÈRES (Asymmetric Block) ── */
.event-atmospheres {
    padding-bottom: var(--space-3xl);
}

.atmosphere-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
    margin-bottom: var(--space-4xl);
}

.atmosphere-block--reverse {
    direction: rtl;
}

.atmosphere-block--reverse .atmosphere-content {
    direction: ltr;
}

.atmosphere-image .image-wrapper {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    clip-path: inset(0);
}

.atmosphere-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.atmosphere-block:hover .atmosphere-image img {
    transform: scale(1.08);
}

.atmosphere-content {
    padding-right: 3rem;
}

.atmosphere-block--reverse .atmosphere-content {
    padding-right: 0;
    padding-left: 3rem;
}

.atmosphere-content .number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 100;
    color: var(--color-beige);
    display: block;
    line-height: 1;
    margin-bottom: 1rem;
}

.atmosphere-content h3 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.atmosphere-content .description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.atmosphere-content .features {
    list-style: none;
    padding: 0;
}

.atmosphere-content .features li {
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.atmosphere-content .features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 1px;
    background: var(--color-gold);
}

/* ── LOOKBOOK (Masonry) ── */
.event-lookbook {
    padding: var(--space-2xl) 0;
    background: #000;
    color: #fff;
}

.lookbook-header {
    margin-bottom: var(--space-xl);
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 0;
}

.lookbook-item {
    position: relative;
    overflow: hidden;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.1);
    transition: all 0.8s ease;
}

.lookbook-item:hover img {
    filter: saturate(1) contrast(1.1);
    transform: scale(1.05);
}

.item--large { grid-column: span 2; grid-row: span 1; }
.item--tall { grid-row: span 2; }

/* ── CONCIERGE WIZARD ── */
.event-wizard-section {
    padding: var(--space-4xl) 0;
    background: var(--color-cream-light);
}

.wizard-intro {
    margin-bottom: var(--space-2xl);
}

.conception-wizard {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    box-shadow: 0 40px 100px rgba(92, 74, 61, 0.08);
}

.wizard-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.step-dot {
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.4s ease;
}

.step-dot.is-active {
    background: var(--color-brown);
    border-color: var(--color-brown);
    color: #fff;
}

.step-line {
    width: 40px;
    height: 1px;
    background: var(--color-beige);
}

.wizard-step {
    display: none;
    animation: fadeIn 0.6s ease forwards;
}

.wizard-step.is-active {
    display: block;
}

.wizard-step h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.wizard-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.option-card {
    cursor: pointer;
}

.option-card input {
    display: none;
}

.option-inner {
    padding: 2rem 1.5rem;
    border: 1px solid var(--color-beige);
    text-align: center;
    transition: all 0.3s ease;
}

.option-card input:checked + .option-inner {
    background: var(--color-cream);
    border-color: var(--color-gold);
}

.option-inner .icon { font-size: 2rem; margin-bottom: 1rem; }
.option-inner span { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group-grid .full-width { grid-column: span 2; }

.form-group label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    color: var(--color-text-muted);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid var(--color-beige);
    background: transparent;
    transition: border-color 0.3s;
}

.form-group input:focus { border-color: var(--color-gold); }

.wizard-footer {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* ── LOGISTICS ── */
.event-logistics {
    padding: var(--space-3xl) 0;
}

.logistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.logistic-item {
    text-align: center;
}

.logistic-item .icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
.logistic-item h4 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 1rem; }
.logistic-item p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .atmosphere-block { grid-template-columns: 1fr; gap: 3rem; }
    .lookbook-grid { grid-template-columns: repeat(2, 1fr); }
    .logistics-grid { grid-template-columns: repeat(2, 1fr); }
    .wizard-options { grid-template-columns: 1fr; }
}

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