/* ============================================
   ARISTÉ v11 — Video Carousel
   Dark navy + gold accent, scroll-snap
   ============================================ */

.video-gallery {
    position: relative;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(184,155,95,0.03) 0%, transparent 60%),
        linear-gradient(180deg, #0a0a1a 0%, #0d0d2b 50%, #0a0a1a 100%);
    padding: clamp(4rem, 8vw, 7rem) 0;
    overflow: hidden;
}

.video-gallery::before,
.video-gallery::after {
    content: '';
    position: absolute;
    left: 8%; right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184,155,95,0.2), transparent);
}
.video-gallery::before { top: 0; }
.video-gallery::after { bottom: 0; }

/* Header */
.video-gallery__header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.video-gallery__label {
    display: block;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #B89B5F;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.video-gallery__title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f0ece4;
    margin: 0;
}

/* Carousel Container */
.video-carousel-wrap {
    position: relative;
    max-width: 100%;
}

.video-carousel {
    display: flex;
    gap: 1.5rem;
    padding: 1rem clamp(2rem, 5vw, 5rem);
    list-style: none;
    margin: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.video-carousel::-webkit-scrollbar { display: none; }

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(10,10,26,0.7);
    border: 1px solid rgba(184,155,95,0.2);
    color: #B89B5F;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.carousel-arrow:hover {
    border-color: #B89B5F;
    background: rgba(184,155,95,0.12);
    box-shadow: 0 0 20px rgba(184,155,95,0.15);
}
.carousel-arrow--prev { left: 0.5rem; }
.carousel-arrow--next { right: 0.5rem; }

/* Video Card */
.video-card {
    flex: 0 0 75%;
    scroll-snap-align: center;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid rgba(184,155,95,0.06);
    background: #12122a;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.video-card:hover {
    border-color: rgba(184,155,95,0.2);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 25px rgba(184,155,95,0.08);
}

.video-card video,
.video-card img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-card video {
    opacity: 0;
    transition: opacity 0.8s ease;
}
.video-card video.playing {
    opacity: 1;
}

/* Overlay gradient */
.video-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(10,10,26,0.92) 0%,
        rgba(10,10,26,0.4) 35%,
        rgba(10,10,26,0.05) 55%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    pointer-events: none;
    z-index: 2;
}

.video-card__category {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #B89B5F;
    margin-bottom: 0.5rem;
}

.video-card__title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f0ece4;
    margin: 0;
    line-height: 1.3;
}

/* Progress indicator dots */
.video-gallery__dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.video-gallery__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(184,155,95,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.video-gallery__dot.active {
    background: #B89B5F;
    box-shadow: 0 0 8px rgba(184,155,95,0.4);
    transform: scale(1.3);
}

/* Responsive */
@media (min-width: 640px) {
    .video-card { flex: 0 0 55%; }
}
@media (min-width: 1024px) {
    .video-card { flex: 0 0 40%; }
}
@media (max-width: 639px) {
    .carousel-arrow { display: none; }
    .video-card { flex: 0 0 85%; }
    .video-carousel { gap: 1rem; padding: 1rem; }
}
