/* ========================================
   ALEX REYNOSO ART
   Main Website Stylesheet
   ======================================== */


/* ---------- GLOBAL ---------- */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #111;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

img {
    max-width: 100%;
}


/* ---------- HEADER ---------- */

header {
    padding: 30px 20px;
    text-align: center;
}

.site-logo {
    display: block;
    width: min(360px, 90%);
    margin: 0 auto 22px;
}

.site-logo img {
    display: block;
    width: 100%;
    height: auto;
}


/* ---------- NAVIGATION ---------- */

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

nav a:hover {
    text-decoration: underline;
}


/* ---------- HOME PAGE ---------- */

.hero {
    min-height: 48vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px 20px 35px;
}

.hello {
    margin-bottom: 45px;
}

.hello-main {
    margin: 0;
    font-size: clamp(72px, 15vw, 170px);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -4px;
}

.hello-translation {
    min-height: 30px;
    margin-top: 20px;
    color: #888;
    font-size: 18px;
    letter-spacing: 2px;
    transition: opacity 0.5s ease;
}

.hero-title {
    margin: 0;
    font-size: clamp(36px, 7vw, 70px);
}

.hero-tagline {
    margin-top: 18px;
    color: #ccc;
    font-size: 20px;
}


/* ---------- HOME EXPLORE DOORS ---------- */

.home-doors {
    width: min(1200px, 92%);
    margin: 0 auto 90px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.home-door {
    min-height: 260px;
    padding: 28px;
    border: 1px solid #292929;
    background: #161616;
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.home-door:hover {
    transform: translateY(-4px);
    border-color: #f4c430;
    background: #1a1a1a;
}

.home-door-number {
    margin-bottom: auto;
    color: #777;
    font-size: 14px;
    letter-spacing: 2px;
}

.home-door:hover .home-door-number {
    color: #f4c430;
}

.home-door-title {
    margin-top: 55px;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.05;
}

.home-door-text {
    margin-top: 16px;
    color: #999;
    font-size: 15px;
    line-height: 1.5;
}


/* ---------- ABOUT PAGE ---------- */

.about {
    max-width: 900px;
    margin: 50px auto 80px;
    padding: 0 25px;
}

.profile {
    display: block;
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 35px;
}

.about h1 {
    margin: 0 0 30px;
    text-align: center;
    font-size: clamp(40px, 7vw, 70px);
}

.about-text {
    max-width: 700px;
    margin: auto;
    color: #ddd;
    font-size: 18px;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 22px;
}


/* ---------- ART PAGE ---------- */

.art-intro {
    max-width: 800px;
    margin: 60px auto 50px;
    padding: 0 25px;
    text-align: center;
}

.art-intro h1 {
    margin: 0 0 15px;
    font-size: clamp(48px, 8vw, 80px);
}

.art-intro p {
    max-width: 600px;
    margin: 0 auto;
    color: #bbb;
    font-size: 18px;
    line-height: 1.6;
}

.art-gallery {
    width: min(1200px, 92%);
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.artwork {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid #292929;
    background: #1b1b1b;
    color: #777;
    text-align: center;
}

.artwork-featured {
    aspect-ratio: auto;
    display: block;
    padding: 0;
    overflow: hidden;
    background: #161616;
    color: #fff;
    text-align: left;
}

.artwork-featured img {
    display: block;
    width: 100%;
    height: auto;
}

.artwork-portrait {
    display: flex;
    flex-direction: column;
}

.artwork-portrait > img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    background: #111;
}

.artwork-portrait .artwork-info {
    width: 100%;
}

.artwork-info {
    padding: 18px 20px 20px;
}

.artwork-info h2 {
    margin: 0 0 8px;
    font-size: 20px;
}

.artwork-info p {
    margin: 4px 0;
    color: #999;
    font-size: 14px;
    line-height: 1.4;
}


/* ---------- ART DETAIL PAGE ---------- */

.frida-page {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
}

.frida-page::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url("../images/frida-background-alex-reynoso-art.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    opacity: 0.05;
    pointer-events: none;
}

.buddha-page {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
}

.buddha-page::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url("../images/gratitude-and-joy-buddha-background-alex-reynoso-art.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    opacity: 0.05;
    pointer-events: none;
}

.prince-page {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
}

.prince-page::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url("../images/prince-background-alex-reynoso-art.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    opacity: 0.05;
    pointer-events: none;
}

.art-detail {
    width: min(1100px, 92%);
    margin: 40px auto 90px;
}

.art-detail-header {
    max-width: 900px;
    margin: 0 auto 35px;
    text-align: center;
}

.art-detail-back {
    margin: 0 0 35px;
    text-align: left;
}

.art-detail-back a {
    color: #999;
    text-decoration: none;
}

.art-detail-back a:hover {
    color: #fff;
}

.art-detail-header h1 {
    margin: 0 0 10px;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1;
}

.art-detail-year {
    margin: 0;
    color: #999;
    font-size: 18px;
}

.art-detail-hero {
    max-width: 1000px;
    margin: 0 auto 50px;
}

.art-detail-hero img {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.art-detail-hero-portrait {
    max-width: 650px;
}

.art-detail-info {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: 60px;
}

.art-detail-meta {
    color: #bbb;
    font-size: 16px;
    line-height: 1.6;
}

.art-detail-meta p {
    margin: 0 0 24px;
}

.art-detail-meta strong {
    color: #fff;
}

.art-detail-story h2 {
    margin: 0 0 18px;
    font-size: 30px;
}

.art-detail-story p {
    margin: 0 0 20px;
    color: #ccc;
    font-size: 18px;
    line-height: 1.7;
}


/* ---------- SHARED INFO PAGES ---------- */

.info-page {
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 25px;
    text-align: center;
}

.info-page h1 {
    margin: 0 0 15px;
    font-size: clamp(48px, 8vw, 80px);
}

.info-page p {
    max-width: 600px;
    margin: 0;
    color: #bbb;
    font-size: 18px;
    line-height: 1.6;
}

.coming-soon {
    margin-top: 35px;
    padding: 12px 22px;
    border: 1px solid #444;
    color: #aaa;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ---------- SHOP ---------- */

.shop {
    max-width: 1100px;
    margin: 40px auto 90px;
    padding: 0 20px;
}

.shop-header {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.shop-header h1 {
    margin: 0 0 15px;
    font-size: clamp(48px, 8vw, 80px);
}

.shop-header p {
    margin: 0;
    color: #bbb;
    font-size: 18px;
    line-height: 1.6;
}


/* ---------- FEATURED COLLECTION ---------- */

.collection-heading {
    margin-bottom: 25px;
}

.collection-heading h2 {
    margin: 0 0 8px;
    font-size: 30px;
}

.collection-heading p {
    margin: 0;
    color: #999;
    line-height: 1.5;
}

.featured-product {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 40px;
    align-items: center;
    margin-bottom: 75px;
}

.featured-product-image {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.featured-product-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.featured-product-image:hover img {
    transform: scale(1.02);
}

.featured-product-info h3 {
    margin: 0 0 8px;
    font-size: 38px;
}

.featured-product-info .product-type {
    margin: 0 0 10px;
    color: #bbb;
    font-size: 17px;
}

.featured-product-info .price {
    margin: 0 0 24px;
}

.product-link {
    display: inline-block;
    padding: 14px 25px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.product-link:hover {
    opacity: 0.85;
}


/* ---------- COUNTRY COLLECTION ---------- */

.country-section {
    padding-top: 10px;
    margin-bottom: 75px;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 25px;
}

.country-card {
    min-height: 88px;
    padding: 16px 12px;
    border: 1px solid #333;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #161616;
    color: #777;
}

.country-name {
    color: #aaa;
    font-size: 16px;
}

.country-status {
    margin-top: 7px;
    color: #666;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* ---------- FUTURE SHOP CATEGORIES ---------- */

.shop-categories {
    margin-top: 20px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 25px;
}

.category-card {
    min-height: 150px;
    padding: 25px 20px;
    border: 1px solid #333;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #151515;
}

.category-card h3 {
    margin: 0 0 8px;
    font-size: 21px;
}

.category-card p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.5;
}


/* ---------- PRODUCT PAGE ---------- */

.product {
    max-width: 1100px;
    margin: 40px auto 80px;
    padding: 0 20px;
}

.product-header {
    text-align: center;
    margin-bottom: 40px;
}

.product-header h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 54px);
}

.product-header p {
    margin: 8px 0;
}

.price {
    color: #ccc;
    font-size: 22px;
}


/* ---------- PRODUCT GALLERY ---------- */

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 50px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.gallery img:hover {
    transform: scale(1.02);
}


/* ---------- PRODUCT INFORMATION ---------- */

.product-info {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.product-info p {
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
}


/* ---------- BUTTONS ---------- */

.buy-button {
    display: inline-block;
    margin-top: 15px;
    padding: 15px 30px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.buy-button:hover {
    opacity: 0.85;
}


/* ---------- PRODUCT VIDEO ---------- */

.video-section {
    margin-top: 60px;
    text-align: center;
}

.video-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.product-video {
    display: block;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    border-radius: 8px;
    background: #000;
    object-fit: cover;
}


/* ---------- SOCIAL VIDEO LINKS ---------- */

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 12px;
}

.social-links a:hover {
    color: #fff;
    text-decoration: underline;
}


/* ---------- BACK TO SHOP ---------- */

.back-shop {
    margin-top: 60px;
    text-align: center;
}

.back-shop a {
    color: #aaa;
    text-decoration: none;
}

.back-shop a:hover {
    color: #fff;
}


/* ---------- IMAGE LIGHTBOX ---------- */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 42px;
    cursor: pointer;
    line-height: 1;
}


/* ---------- FOOTER ---------- */

footer {
    text-align: center;
    padding: 30px 20px;
    color: #888;
    font-size: 14px;
}


/* ---------- MOBILE ---------- */

@media (max-width: 750px) {

    header {
        padding: 25px 16px;
    }

    .site-logo {
        width: min(280px, 90%);
        margin-bottom: 20px;
    }

    nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px 8px;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    nav a {
        text-align: center;
    }

    .hero {
        min-height: 45vh;
        padding: 20px 20px 35px;
    }

    .hello {
        margin-bottom: 30px;
    }

    .hello-main {
        letter-spacing: -2px;
    }

    .hello-translation {
        font-size: 16px;
    }

    .hero-tagline {
        font-size: 18px;
    }


    .home-doors {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 70px;
    }

    .home-door {
        min-height: 185px;
        padding: 22px 24px;
    }

    .home-door-title {
        margin-top: 28px;
    }

    .about {
        margin-top: 40px;
        padding: 0 22px;
    }

    .profile {
        width: 190px;
        height: 190px;
        margin-bottom: 30px;
    }

    .art-intro {
        margin-top: 45px;
    }

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

    .artwork-portrait > img {
        height: auto;
    }

    .art-detail {
        margin-top: 25px;
    }

    .art-detail-header {
        margin-bottom: 30px;
    }

    .art-detail-back {
        margin-bottom: 30px;
    }

    .art-detail-hero {
        margin-bottom: 40px;
    }

    .art-detail-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .art-detail-meta {
        padding-bottom: 10px;
        border-bottom: 1px solid #292929;
    }

    .art-detail-story h2 {
        font-size: 27px;
    }

    .art-detail-story p {
        font-size: 17px;
    }

    .info-page {
        min-height: 60vh;
        padding: 50px 22px;
    }

    .shop {
        margin-top: 20px;
    }

    .shop-header {
        margin-bottom: 45px;
    }

    .featured-product {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 65px;
    }

    .featured-product-info {
        text-align: center;
    }

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

    .category-grid {
        grid-template-columns: 1fr;
    }

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

    .product {
        margin-top: 20px;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    .social-links a {
        margin: 0;
    }
}
