/* ============================================ */
/* COLLECTIONS SECTION */
/* ============================================ */

.collections-section {
    background: var(--dark-slate);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 4rem auto 0;
}

/* ============================================ */
/* SHOWCASE ITEMS */
/* ============================================ */

.showcase-item {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(25, 118, 210, 0.2);
    transition: all 0.4s ease;
    background: var(--primary-navy);
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(10, 25, 41, 0.5) 60%, 
        rgba(10, 25, 41, 0.95) 100%);
    z-index: 1;
    transition: all 0.4s ease;
    pointer-events: none;
}

.showcase-item:hover::before {
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(10, 25, 41, 0.6) 50%, 
        rgba(10, 25, 41, 0.98) 100%);
}

.showcase-item:hover {
    transform: translateY(-10px);
    border-color: var(--logo-blue);
    box-shadow: 0 25px 50px rgba(25, 118, 210, 0.4);
}

/* ============================================ */
/* SHOWCASE IMAGES */
/* ============================================ */

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    position: relative;
    z-index: 0;
}

.showcase-item:hover img {
    transform: scale(1.08);
}

/* ============================================ */
/* SHOWCASE VIDEO (For Chiffon Card) */
/* ============================================ */

.showcase-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.showcase-item:hover video {
    opacity: 1;
}

.showcase-item:hover img {
    opacity: 0;
}

/* ============================================ */
/* SHOWCASE LABELS - ALWAYS VISIBLE */
/* ============================================ */

.showcase-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 3;
    transition: transform 0.4s ease;
}

/* Remove the hidden state - always show labels */
.showcase-label {
    transform: translateY(0);
}

.showcase-label h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--logo-blue), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.showcase-item:hover .showcase-label h3 {
    background: linear-gradient(135deg, var(--gold-accent), var(--soft-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-5px);
}

.showcase-label p {
    font-size: 1.1rem;
    color: var(--cream);
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* ============================================ */
/* VIDEO PLAY INDICATOR (Only on Chiffon Card) */
/* ============================================ */

.video-play-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(10, 25, 41, 0.85);
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    font-size: 1.3rem;
    z-index: 3;
    opacity: 1;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.video-play-indicator i {
    animation: videoPlayPulse 2s ease-in-out infinite;
    margin-left: 2px;
}

@keyframes videoPlayPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.showcase-item:hover .video-play-indicator {
    opacity: 0;
    transform: scale(0.8);
}

/* ============================================ */
/* COLLECTIONS FOOTER */
/* ============================================ */

.collections-footer {
    text-align: center;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.collections-footer-text {
    font-size: 1.3rem;
    color: var(--soft-gold);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.collections-footer-text strong {
    color: var(--cream);
    font-weight: 700;
}

/* ============================================ */
/* RESPONSIVE COLLECTIONS SECTION */
/* ============================================ */

@media (max-width: 1200px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .showcase-item {
        height: 450px;
    }
}

@media (max-width: 968px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-item {
        height: 400px;
    }
    
    .showcase-label {
        padding: 1.5rem;
    }
    
    .showcase-label h3 {
        font-size: 1.8rem;
    }
    
    .showcase-label p {
        font-size: 1rem;
    }
    
    .collections-footer-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .showcase-item {
        height: 350px;
    }
    
    .showcase-label {
        padding: 1.2rem;
    }
    
    .showcase-label h3 {
        font-size: 1.6rem;
    }
    
    .showcase-label p {
        font-size: 0.95rem;
    }
    
    .collections-footer {
        margin-top: 3rem;
    }
    
    .collections-footer-text {
        font-size: 1rem;
    }
    
    .video-play-indicator {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        top: 15px;
        right: 15px;
    }
}