/* ============================================
   PREMIUM EFFECTS CSS - v4 (clean, no red)
   ============================================ */

:root {
    --accent-dark: #1a1a1a;
    --accent-dark-light: #333333;
    --accent-dark-subtle: #555555;
}

html {
    scroll-behavior: smooth;
}

/* ============ INSTAGRAM/VIDEO SECTION — CLEAN ============ */
.instagram-section,
section#instagram {
    background: #ffffff !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 50px 0 !important;
}

/* Remove red transition strip */
.instagram-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: transparent !important;
    pointer-events: none;
    z-index: 1;
}

/* Remove animated red blurred shapes */
.instagram-section .bg-shape-1,
.instagram-section .bg-shape-2 {
    display: none !important;
}

/* Title styling — dark, elegant */
.instagram-section .section-title,
#instagram .section-title {
    color: #1a1a1a !important;
    font-weight: 500 !important;
    position: relative;
    z-index: 2;
}

.instagram-section .section-subtitle,
#instagram .section-subtitle {
    color: #666666 !important;
    position: relative;
    z-index: 2;
}

.instagram-section .container {
    position: relative;
    z-index: 2;
}

/* Video Carousel */
.premium-video-carousel {
    background: transparent;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.premium-carousel-container {
    position: relative;
    overflow: hidden;
}

.premium-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.premium-video-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    padding: 20px 10px 30px;
}

/* === VIDEO WRAPPER — FLOATING EFFECT === */
.premium-video-wrapper {
    border-radius: 24px;
    overflow: hidden;
    /* Floating shadow — creates "levitation" effect */
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.08);
    /* Subtle elegant border */
    border: 2px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    width: 240px;  /* Slightly smaller */
    aspect-ratio: 9 / 16;
    background: #000;
    margin: 0 auto;
    /* Floating animation */
    animation: videoFloat 4s ease-in-out infinite;
}

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

.premium-video-wrapper:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 12px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-12px) scale(1.02);
    animation-play-state: paused;
}

.premium-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play button overlay — dark elegant */
.premium-video-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    opacity: 1;
    z-index: 10;
    pointer-events: none;
    transition: all 0.3s ease;
}

.premium-video-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 9px 0 9px 16px;
    border-color: transparent transparent transparent #fff;
    z-index: 11;
    pointer-events: none;
    transition: all 0.3s ease;
}

.premium-video-wrapper.playing::after,
.premium-video-wrapper.playing::before {
    opacity: 0;
}

/* Navigation dots — neutral */
.premium-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.premium-carousel-dots .premium-dot,
.premium-carousel-dots button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
}

.premium-carousel-dots .premium-dot.active,
.premium-carousel-dots .premium-dot:hover,
.premium-carousel-dots button.active,
.premium-carousel-dots button:hover {
    background: #1a1a1a !important;
    transform: scale(1.3);
}

/* Navigation arrows — elegant dark */
.premium-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    color: #1a1a1a;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.premium-carousel-btn:hover {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
    transform: translateY(-50%) scale(1.05);
}

.premium-carousel-btn.prev { left: 10px; }
.premium-carousel-btn.next { right: 10px; }

/* Nav buttons (SVG arrows) */
.premium-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.premium-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.premium-nav-btn:hover {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.premium-nav-btn svg {
    width: 20px;
    height: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .instagram-section {
        padding: 50px 0 !important;
    }
    
    .premium-video-carousel {
        padding: 10px;
    }
    
    .premium-video-wrapper {
        width: 220px;
        max-width: 280px;
        aspect-ratio: 9 / 16;
    }
    
    .premium-carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .premium-carousel-btn.prev { left: 5px; }
    .premium-carousel-btn.next { right: 5px; }
}

/* ============ SECTION TRANSITIONS — NEUTRAL ============ */
section {
    position: relative;
}

section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.instagram-section::after {
    background: transparent;
}

/* ============ COOKIE BANNER — NEUTRAL ============ */
.cookies-banner {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999999 !important;
    background: #ffffff !important;
    padding: 20px 30px !important;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1) !important;
    border-top: 2px solid #1a1a1a !important;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookies-banner.show {
    display: flex !important;
}

.cookies-banner p {
    color: #333;
    margin: 0;
    font-size: 14px;
}

.cookies-banner a {
    color: #1a1a1a;
    font-weight: 600;
}

.cookies-banner button {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookies-banner button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Performance */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}

/* Hide bottom arrows next to dots — keep only side arrows */
.premium-nav-btn {
    display: none !important;
}
