:root {
    --background: rgb(214, 214, 214);
    --white: rgba(245, 245, 245, 0.75);
    --text: rgb(29, 25, 26);
    --accent: rgb(158, 175, 179);
    --lt-gray: rgb(179, 175, 175);
    --rule: rgb(141, 141, 141);
    --button: rgba(60, 60, 60);
    --copyright: rgb(25, 18, 10);
    --hover-accent: rgb(190, 196, 192);
    --hover-green: rgb(1, 162, 41);
    --hover-orange: rgb(246, 114, 38);
    --hover-blue:  rgb(38, 111, 246);
    --hover-red:  rgb(141, 21, 5);
    --hover-teal:  rgb(10, 152, 177);
}

html, body {
    margin: 0;
    padding: 0;
}

body {
  position: relative;
  background: none;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/page-bk-2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.275;   /* adjust here */
  z-index: -1;
}

h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    margin: 0 0 1.25rem 0;
}

p {
    font-family: 'Red Hat Text', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    font-family: system-ui, sans-serif;
    font-size: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}


a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Red Hat Text', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
}

a:hover {
    color: var(--accent);
    text-decoration: none;
}

a:active {
    color: var(--hover-orange);
    text-decoration: none;
}

/* ============================================
   NAVIGATION
============================================ */

.navbar {
    background: var(--button);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
}

.logo:hover {
    color: var(--hover-accent);
}

.start-button {
    display: inline-block;
    padding: 4px 14px 8px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid;
    cursor: pointer;
    transition: background 140ms ease, color 140ms ease;
    color: var(--white);
    border-color: var(--lt-gray);
}

.start-button:hover {
    background: var(--hover-teal);
    /*color: var(--white);*/
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--lt-gray);
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--lt-gray);
    text-decoration: none;
    font-size: 1.25rem;
    padding: 0 6px;
}

.nav-links a:hover {
    color: white;
}
.nav-links a:active {
    color: var(--hover-orange);
}

.index-links {
    padding-top: .45em;
    vertical-align: middle;
}

/* MOBILE NAV */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
        z-index: 9999;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 20px;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        background: var(--rule);
        display: none;
        z-index: 9998;
    }

    .nav-links.active {
        display: flex;
        color: var(--hover-orange);
    }

    .nav-links a {
        padding: 0 6px;
        font-size: 1.25rem;
        color: var(--text);
        text-decoration: none;
    }
}


/* ============================================
   PAGE HEADER
============================================ */


.page-header {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 5rem;
    color: var(--hover-red);
    text-shadow: 0.125rem 0.125rem 0.15rem rgba(0,0,0,0.5);
}

/* ============================================
   GALLERY (INDEX)
============================================ */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 3rem;
    max-width: 1800px;
    margin: 3rem auto;
    position: relative;
    border-radius: 0.5rem;
    box-shadow: 0 0.625rem 0.625rem rgba(0,0,0,0.2);
    background-color: var(--white);
}

.thumb {
    display: block;
    padding: 1.5rem;
    cursor: pointer;
    line-height: 0;
}

.thumb img {
    width: 100%;
    display: block;
    border: 1px solid var(--rule);
    box-shadow: 0 0.625rem 0.625rem rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.thumb:hover img {
    transform: scale(1.05);
}

.thumb-title {
    font-family: 'Red Hat Text', sans-serif;
    font-size: 1rem;
    margin-top: 0.5rem;
    text-align: center;
    color: var(--text);
    line-height: 1.6;
}
.thumb-title:hover {
    margin-top: 14px;
    margin-bottom: -14px;
    color: var(--hover-teal);
    transform: scale(1.05);
    text-decoration: underline 1px dotted var(--hover-teal);
    transition: transform 0.3s ease;
}

.index-description {
    color: var(--text);
    width: 90%;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15px;
}

/* ============================================
   HEADER - ABOVE IMAGE
============================================ */
.art-header {
    margin-bottom: 40px;
    text-align: left;
}

.art-header h1 {
    margin: 0 0 10px 0;
    font-family: sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
}

.art-header .desc {
    font-family: sans-serif;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--text);
    opacity: 0.8;
}

/* ============================================
   STRUCTURE
============================================ */

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrap {
    margin: 20px 0;
    padding: 40px 50px;
    border-radius: 0.5rem;
    box-shadow: 0 0.625rem 0.625rem rgba(0,0,0,0.2);
    background-color: var(--white);
}

.art-top {
    max-width: 1200px;
    margin: 0 auto;
}

.image-block {
    margin-bottom: 40px;
}

#mainImage {
    width: 100%;
    height: auto;
        cursor: pointer;
    border: 1px solid #1d0101;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* ============================================
   LISTING
============================================ */
.listing {
    margin-top: 40px;
    margin-bottom: 0;
}

/* ============================================
   PRICE + STATUS BUTTONS
============================================ */
.inline-row p {
    display: flex;
    align-items: center;
    gap: 12px;
}

.inline-row .price,
.inline-row .status,
.inline-row .next {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid;
    cursor: pointer;
    transition: background 140ms ease, color 140ms ease;
}

/*.inline-row .next {
    margin-left: auto;
}*/

.inline-row .divider {
    font-weight: 400;
    color: var(--rule);
}

.status.available {
    color: var(--hover-green);
    border-color: var(--hover-green);
}

.status.available:hover {
    background: var(--hover-green);
    color: white;
}

/* static */

.status.sold {
    color: #d9534f;
    border-color: #d9534f;
}

.status.secondary {
    color: #0275d8;
    border-color: #0275d8;
}


.price {
    color: var(--hover-orange);
    border-color: var(--hover-orange);
}

.price:hover {
    background: var(--hover-orange);
    color: white;
}



.next {
    color: var(--hover-teal);
    border-color: var(--hover-teal);
}

.next:hover {
    background: var(--hover-teal);
    color: white;
}

/* ============================================
   TWO-COLUMN GRID
============================================ */
.section-two-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
    min-width: 0;
}

.left-col,
.right-col {
    min-width: 0;
}

.right-col {
    max-width: 320px;
}

/* TABLET + MOBILE */
@media (max-width: 1023px) {
    .section-two-grid {
        grid-template-columns: 1fr;
    }
    .content-wrap {
        padding: 40px 30px;
    }
    .right-col {
        display: none;
    }
}

/* ============================================
   DETAIL-ROW
============================================ */

.detail-row {
    margin-bottom: 32px;
}

.detail-row h2 {
    margin-bottom: 8px;
    font-family: 'Red Hat Text', sans-serif;
    font-weight: 400;
    color: var(--hover-red);
}

.detail-row h3 {
    margin-bottom: 8px;
    font-family: 'Red Hat Text', sans-serif;
    font-weight: 400;
    color: var(--rule);
}

.detail-row p {
    margin-bottom: 1.25rem;
    font-family: 'Red Hat Text', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text);
}

@media (min-width: 1920px) {
    .nft-row {
        display: grid;
        grid-template-columns: 2fr 1fr;
        column-gap: 40px;
        align-items: start;
    }

    .left-column-block {
        grid-column: 2;
    }

    .right-column-block {
        grid-column: 1;
    }
}

.detail-thumbs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-thumbs .nft-image-wrapper {
    width: 100%;
    max-width: 300px;
    height: auto;
    border: 1px solid var(--hover-orange);
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

hr.nft-rule {
  border: none;
  height: 1px;
  background-color: var(--hover-teal);
  width: 100%;
  margin: .5rem 0 1rem 0;
}

.detail-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
}

.detail-caption {
    margin-top: 8px;
    font-family: "Red Hat Text", sans-serif;
    font-size: 0.85rem;
    text-align: center;
}


/* ============================================
   KEYWORDS
============================================ */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.tag-list li,
.tag-list button,
.tag-list .tag {
    padding: 0;
    margin: 0;
    font-family: 'Red Hat Text', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: none;
    border: none;
    cursor: default;
}

/* ============================================
   PALETTE SWATCHES
============================================ */
.palette-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.palette-row .swatch {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid var(--rule);
}

/* ============================================
   QUOTE
============================================ */
.quote-row {
    padding-top: 10px;
    font-size: 0.95rem;
    /*font-family: "Comic Relief", cursive;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;*/
    font-family: "Playwrite NZ Basic", cursive;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}


/* ============================================
   BOTTOM NAV LINKS
============================================ */
.bottom-nav-links {
    margin-top: 40px;
    font-family: 'Red Hat Text', sans-serif;
    font-size: 1.05rem;
}

.bottom-nav-links a {
    color: var(--text);
    text-decoration: none;
}

.bottom-nav-links a:hover {
    color: var(--hover-teal);
}
.bottom-nav-links a:active {
    color: var(--hover-orange);
}

.bottom-nav-links span {
    color: var(--lt-gray);
    margin: 0 8px;
}

/* ============================================
   STORIES
============================================ */

.story {
    column-count: 1;          /* mobile default */
    column-gap: 2.5rem;
    padding: 40px;
    margin: 20px auto 40px auto;
    position: relative;
    border-radius: 0.5rem;
    box-shadow: 0 0.625rem 0.625rem rgba(0,0,0,0.2);
    column-fill: balance;
    background-color: var(--white);
    text-indent: 1.05rem;
}

.story p {
    margin: 0 0 1.5rem 0;
    font-family: 'Red Hat Text', sans-serif;
    font-size: .9rem;
    line-height: 1.6rem;
    color: var(--text);
    text-indent: 1.5rem;
    text-align: justify;
    hyphens: auto;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
    .story {
        column-count: 2;
        column-gap: 3rem;
    }
}

/* Desktop: 3 columns */
@media (min-width: 1280px) {
    .story {
        column-count: 3;
        column-gap: 4rem;
        max-width: 1200px;
    }
 
}

.page {
    color: var(--hover-teal);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--button);
    padding: 2% 8%;
    /*color: var(--lt-gray);*/
}

.footer-section {
    max-width: 1200px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Oswald', sans-serif;
    margin-top: 2rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.footer-section p,
.footer-section a {
    padding: 6px;
    font-family: sans-serif;
    color: var(--lt-gray);
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: white;
}

hr.footer-rule {
    border-bottom: 1px solid var(--hover-teal);
    margin: 20px 0;
}

.footer-bottom {
    padding-top: 20px;
    font-family: sans-serif;
    color: var(--hover-teal);
    opacity: 0.8;
    font-size: 1rem;
    max-width: 1200px;
    padding: 0;
    text-align: left;
}

/* ============================================
   LIGHTBOX
============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.9);
    cursor: zoom-out;
    z-index: 9999;
    opacity: 0;
    transition: opacity 180ms ease-out;
}

.lightbox.show {
    opacity: 1;
}

.lightbox img {
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    pointer-events: none;
}

/* ============================================
   RESPONSIVE TYPOGRAPHY
============================================ */

@media (max-width: 769px) {
    .content-wrap {
        padding: 30px;
    }

    .art-header h1 {
        font-size: 1.8rem;
    }

    .art-header .desc {
        font-size: 1.05rem;
    }

    .detail-row p {
        font-size: 1rem;
    }
}
/* ============================================
   CONTENT PAGES (ABOUT + CONTACT)
============================================ */
.content-page {
    padding: 0 3rem;
    max-width: 1200px;
    background-color: var(--white);
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.about-section h2,
.contact-section h2 {
    font-family: 'Oswald', sans-serif;
    color: var(--hover-red);
    margin: 1.5rem 0 1rem;
    font-size: 1.8rem;
}

.about-section p,
.contact-section p {
    font-family: 'Red Hat Text', sans-serif;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.contact-item {
    padding: 1.5rem;
    background: var(--lt-gray);
    border-radius: 0.5rem;
    border: 1px solid var(--hover-teal);
    box-shadow: 0 0.8rem 1.25rem rgba(0,0,0,0.12);
}

.contact-item h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--hover-red);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    
}

.contact-item p {
    margin: 0;
    color: var(--text);
}

.contact-item a {
    font-weight: 600;
    color: var(--button);
}

.contact-item a:hover {
    font-weight: 600;
    color: var(--hover-teal);
}
/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1280px) {
    .gallery,
    .page-header {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        padding: 1.5rem;
    }
    .page-header h1 {
        font-size: 3.5rem;
    }
    .gallery {
        margin: 1rem auto;
    }
}

@media (max-width: 768px) {
    .gallery,
    .page-header {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    .page-header h1 {
        font-size: 2rem;
    }
.gallery {
        margin: 0 auto;
    }
}
    .footer-section:nth-child(2) {
        display: none;
}


@media (max-width: 600px) {
    .container {
        max-width: 95%;
        padding: 0 1rem;
    }

    .index-description {
        width: 95%;
    }
}

.feature {
    margin-left: 40px;
    color: var(--hover-red);
    text-shadow: 0.1rem 0.1rem 0.10rem rgba(0,0,0,0.35);
}

.cta-button {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid;
    cursor: pointer;
    transition: background 140ms ease, color 140ms ease;
    color: var(--hover-orange);
    border-color: var(--hover-orange);
    margin-bottom: 40px;
}

.cta-button:hover {
    background: var(--hover-orange);
    color: white;

}

.collection-intro p,
.artist-block p {
    font-size: 1.15rem;
}

/* index list styles */

/* orange-disc NFT list style */
.nft-list-orange {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nft-list-orange li {
    position: relative;
    padding-left: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text);
}

/* Custom orange disc */
.nft-list-orange li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.45rem;
    height: 0.45rem;
    background: var(--hover-orange);
    border-radius: 50%;
}

/* teal-disc NFT list style */
.nft-list-teal {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nft-list-teal li {
    position: relative;
    padding-left: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text);
}

/* Custom teal disc */
.nft-list-teal li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.45rem;
    height: 0.45rem;
    background: var(--hover-teal);
    border-radius: 50%;
}

.social-separator {
    color: var(--hover-teal);
}