/* =============================================
   EP Cube Art Series Page Styles
   Based on Figma design: node 3786:106
   ============================================= */

.art-series-page {
    background: #000;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar forced by Outgrow nloader.js */
body::-webkit-scrollbar {
    width: 0;
    display: none;
}

.art-series-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.art-series-page .section-title {
    text-align: center;
    margin-bottom: 18px;
}

.art-series-page .section-subtitle,
.art-series-page .gallery-subtitle,
.art-series-page .energy-style-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

/* =============================================
   Banner
   ============================================= */
.banner-section {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Left-to-right gradient overlay per Figma */
.banner-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 31.25%, rgba(0, 0, 0, 0) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-text {
    max-width: 810px;
}

.banner-title {
    margin-bottom: 16px;
}

.banner-desc {
    margin-bottom: 30px;
    color: #fff;
}

.banner-awards {
    display: flex;
    gap: 0;
    align-items: center;
    margin-bottom: 76px;
    flex-wrap: wrap;
}

.banner-award-item {
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.banner-award-item:first-child {
    padding-left: 0;
}

.banner-award-item + .banner-award-item {
    border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.banner-award-item img {
    height: 36px;
    width: auto;
}

.banner-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.banner-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 60px;
    text-decoration: none;
    transition: opacity 0.3s;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    border: 2px solid #fff;
}

.banner-btn:hover {
    background: #fff;
    color: #000;
    text-decoration: none;
}

/* =============================================
   Core Collection
   ============================================= */
.core-collection-section {
    padding-top: 160px;
}

.core-collection-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
}

.core-collection-scroll-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.core-collection-card {
    flex-shrink: 0;
    width: 370px;
    text-align: center;
}

.core-card-img {
    width: 370px;
    height: 440px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.core-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.core-collection-card:hover .core-card-img img {
    transform: scale(1.03);
}

.core-card-title {
    margin-bottom: 15px;
    color: #fff;
}

.core-card-desc {
    color: #969696;
}

/* =============================================
   Visualizing the EP Cube Lifestyle
   ============================================= */
.lifestyle-section {
    padding-top: 160px;
}

.lifestyle-section .section-title {
    margin-bottom: 50px;
}

.lifestyle-desc {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
}

.lifestyle-desc p {
    margin-bottom: 0;
}

/* =============================================
   Meet the Artist
   ============================================= */
.meet-artist-section {
    padding-top: 160px;
}

.meet-artist-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 80px;
}

.meet-artist-left {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
}

.meet-artist-left .section-title {
    margin-bottom: 90px;
    color: #fff;
    text-align: left;
}

.meet-artist-img {
    width: 290px;
    flex: 1;
    min-height: 280px;
    max-height: 380px;
    overflow: hidden;
}

.meet-artist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.meet-artist-right {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
}

.artist-name {
    margin-bottom: 4px;
}

.artist-role {
    color: #969696;
    margin-bottom: 40px;
}

.artist-desc {
    color: #fff;
    line-height: 1.7;
    margin-bottom: auto;
    padding-bottom: 50px;
}

.artist-quote {
    font-style: italic;
    color: #969696;
    border-left: none;
    padding: 0;
    position: relative;
    margin-bottom: 0;
}

.artist-quote .quote-text::before {
    content: '\201C';
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 0.5;
    vertical-align: -10px;
    margin-right: -4px;
}

.artist-quote .quote-text::after {
    content: '\201D';
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 0.5;
    margin-left: 4px;
    vertical-align: -15px;
}

.artist-quote .quote-attribution {
    display: block;
    text-align: right;
    font-style: italic;
    margin-top: 12px;
}

/* =============================================
   Get a Free Consultation
   ============================================= */
.consultation-section {
    padding-top: 160px;
    padding-bottom: 120px;
}

.consultation-content {
    display: flex;
    gap: 100px;
    align-items: center;
}

.consultation-img {
    flex-shrink: 0;
    width: 550px;
    height: 460px;
    border-radius: 20px;
    overflow: hidden;
}

.consultation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consultation-text {
    flex: 1;
}

.consultation-title {
    margin-bottom: 20px;
}

.consultation-desc {
    color: #fff;
    margin-bottom: 60px;
}

.consultation-btn {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 60px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.consultation-btn:hover {
    background: #fff;
    color: #000;
    text-decoration: none;
}

/* =============================================
   The Interactive Gallery
   ============================================= */
.interactive-gallery-section {
    padding-top: 160px;
}

.gallery-subtitle {
    color: #00c85a;
}

.gallery-coming-soon {
    background: linear-gradient(to right, rgba(255, 255, 100, 0.6), rgba(255, 50, 50, 0.6) 44.7%, rgba(100, 100, 255, 0.6));
    border-radius: 20px;
    padding: 28px 40px;
    text-align: center;
    margin-bottom: 40px;
}

.coming-soon-title {
    margin-bottom: 8px;
}

.coming-soon-desc {
    color: #fff;
}

.coming-soon-desc b,
.coming-soon-desc strong {
    font-weight: 700;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-image-item {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-image-item:hover img {
    transform: scale(1.03);
}

/* =============================================
   Discover Your Energy Style
   ============================================= */
.energy-style-section {
    padding-top: 160px;
}

.energy-style-embed {
    margin-top: 40px;
    width: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

/* =============================================
   Responsive - Tablet (<=1200px)
   ============================================= */
@media (max-width: 1200px) {
    .banner-section {
        height: 600px;
    }

    .core-collection-section,
    .lifestyle-section,
    .meet-artist-section,
    .consultation-section,
    .interactive-gallery-section,
    .energy-style-section {
        padding-top: 100px;
    }

    .meet-artist-layout {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .meet-artist-left {
        width: 100%;
    }

    .meet-artist-left .section-title {
        text-align: center;
        margin-bottom: 30px;
    }

    .meet-artist-img {
        width: 100%;
        max-height: none;
        min-height: auto;
    }

    .meet-artist-img img {
        height: auto;
    }

    .meet-artist-right {
        display: block;
    }

    .artist-role {
        margin-bottom: 20px;
    }

    .consultation-content {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .consultation-img {
        width: 100%;
        height: auto;
        aspect-ratio: 550/460;
    }

    .core-collection-card {
        width: 300px;
    }

    .core-card-img {
        width: 300px;
        height: 356px;
    }

    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================
   Responsive - Mobile (<=768px)
   ============================================= */
@media (max-width: 768px) {
    .banner-section {
        height: auto;
        min-height: 600px;
    }

    .banner-bg img {
        object-position: 80% center;
    }

    .banner-bg::after {
        background: rgba(0, 0, 0, 0.5);
    }

    .banner-content {
        align-items: flex-start;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .banner-text {
        max-width: 100%;
        text-align: center;
    }

    .banner-awards {
        justify-content: center;
    }

    .banner-award-item img {
        height: 28px;
    }

    .banner-buttons {
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .banner-btn {
        text-align: center;
        width: 100%;
    }

    .core-collection-section,
    .lifestyle-section,
    .meet-artist-section,
    .consultation-section,
    .interactive-gallery-section,
    .energy-style-section {
        padding-top: 80px;
    }

    .energy-style-section {
        padding-bottom: 60px;
    }

    .lifestyle-section .section-title {
        margin-bottom: 30px;
    }

    .core-collection-card {
        width: 260px;
    }

    .core-card-img {
        width: 260px;
        height: 310px;
    }

    .gallery-coming-soon {
        padding: 20px 16px;
    }

    .gallery-images {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .meet-artist-right {
        padding-top: 0;
    }

    .artist-desc {
        margin-bottom: 50px;
    }

    .consultation-desc {
        margin-bottom: 30px;
    }
}

/* =============================================
   Responsive - Small Mobile (<=480px)
   ============================================= */
@media (max-width: 480px) {
    .banner-section {
        height: 450px;
    }

    .core-collection-card {
        width: 220px;
    }

    .core-card-img {
        width: 220px;
        height: 262px;
    }

    .gallery-images {
        grid-template-columns: 1fr;
    }

    .energy-style-embed {
        min-height: 300px;
    }
}
