/* ============================================
   Collections Page Hero (Side-by-Side Layout)
   ============================================ */
.collections-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    max-height: 700px;
    padding: 100px 0 80px;
    display: flex;
    align-items: center;
    background-color: var(--color-black);
    overflow: hidden;
}

.collections-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.collections-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: blur(10px);
    transform: scale(1.1);
}

.collections-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Side - Content */
.collections-hero-content {
    text-align: left;
}

.collections-hero-label {
    display: inline-block;
    font-size: 12px;
    /* Slightly smaller label */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(243, 192, 8, 0.1);
    border: 1px solid rgba(243, 192, 8, 0.2);
    border-radius: 50px;
    opacity: 0;
    animation: slideUpFade 0.8s ease forwards 0.2s;
}

.collections-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(40px, 5vw, 58px);
    /* Matched to Index Hero */
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.1;
    opacity: 0;
    animation: slideUpFade 0.8s ease forwards 0.3s;
}

.collections-hero-title span {
    color: var(--color-gold);
}

.collections-hero-desc {
    font-size: 16px;
    /* Matched to Index Hero Content */
    color: var(--color-white-soft);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
    opacity: 0;
    animation: slideUpFade 0.8s ease forwards 0.4s;
}

/* Hero CTA Button */
.collections-hero-cta {
    margin-top: 10px;
    opacity: 0;
    animation: slideUpFade 0.8s ease forwards 0.5s;
}

.collections-hero-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    /* Slightly smaller button */
    background-color: var(--color-gold);
    color: var(--color-black);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--color-gold);
}

.collections-hero-cta .btn-primary:hover {
    background-color: transparent;
    color: var(--color-gold);
}

/* Right Side - Floating Images Visual */
.collections-hero-visual {
    position: relative;
    height: 100%;
    max-height: 500px;
    /* Constrain height to fit 70vh */
    display: flex;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    animation: fadeInRight 1s ease forwards 0.5s;
}

.hero-image-column {
    position: relative;
    width: 280px;
    display: flex;
    flex-direction: column;
}

/* Column Alignment & Animation */
.hero-image-column.col-1 {
    justify-content: flex-start;
    padding-top: 40px;
    /* Offset start position */
    animation: floatColumnUp 6s ease-in-out infinite alternate;
}

.hero-image-column.col-2 {
    justify-content: flex-end;
    padding-bottom: 40px;
    /* Offset start position */
    animation: floatColumnDown 6s ease-in-out infinite alternate;
}

.hero-image-card {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-image-card:hover img {
    transform: scale(1.05);
    /* Zoom on hover */
}

/* Floating Badges */
.hero-floating-badge {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    z-index: 2;
}

.hero-floating-badge i {
    color: var(--color-gold);
    /* Or a specific blue/navy if matching client image exactly, sticking to gold for brand consistency */
    font-size: 16px;
}

.hero-floating-badge span {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Badge specific positioning if needed, currently centered at bottom of card */


/* Base Animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Floating Animations for Columns */
@keyframes floatColumnUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-30px);
    }
}

@keyframes floatColumnDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(30px);
    }
}


/* Responsive - Tablet */
@media (max-width: 1024px) {
    .collections-hero {
        height: auto;
        min-height: auto;
        max-height: none;
        padding: 80px 0 60px;
    }

    .collections-hero-wrapper {
        gap: 50px;
    }

    .collections-hero-title {
        font-size: 38px;
    }

    .hero-image-card {
        height: 320px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .collections-hero {
        padding: 60px 0 80px;
    }

    .collections-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .collections-hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .collections-hero-label {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 6px 12px;
        margin-bottom: 14px;
    }

    .collections-hero-title {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .collections-hero-desc {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.7;
        max-width: 100%;
    }

    .collections-hero-cta .btn-primary {
        padding: 14px 28px;
        font-size: 12px;
    }

    .collections-hero-visual {
        height: 350px;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        gap: 15px;
    }

    .hero-image-column {
        width: 100%;
    }

    .hero-image-card {
        height: 280px;
        border-radius: 16px;
    }

    .hero-image-column.col-1,
    .hero-image-column.col-2 {
        animation: none;
        padding: 0;
        justify-content: center;
    }

    .hero-floating-badge {
        padding: 8px 16px;
        bottom: 16px;
    }

    .hero-floating-badge i {
        font-size: 14px;
    }

    .hero-floating-badge span {
        font-size: 11px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .collections-hero {
        padding: 40px 0 60px;
    }

    .collections-hero-title {
        font-size: 26px;
    }

    .collections-hero-desc {
        font-size: 14px;
    }

    .collections-hero-cta .btn-primary {
        width: 100%;
        padding: 14px 28px;
        font-size: 12px;
    }

    .collections-hero-visual {
        height: 280px;
        gap: 10px;
    }

    .hero-image-card {
        height: 220px;
        border-radius: 14px;
    }

    .hero-floating-badge {
        padding: 6px 12px;
        bottom: 12px;
    }

    .hero-floating-badge span {
        font-size: 10px;
    }
}