/* ============================================================
   GLOBAL STYLES
   ============================================================ */

body {
    background-color: #000;
    color: #F5F2D8;
    font-family: "oxtail", serif;
    font-weight: 400;
    line-height: 1.6;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ============================================================
   HEADER
   ============================================================ */

.internal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    margin-bottom: 20px;
}

.internal-logo {
    width: 200px;
    height: auto;
}


/* ============================================================
   REGION NAVIGATION (Header)
   ============================================================ */

.region-nav {
    text-align: right;
    margin-top: 10px;
    margin-bottom: 20px;
    font-family: "oxtail", serif;

    /* Horizontal scroll behaviour */
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    position: relative;
}

.region-nav::-webkit-scrollbar {
    display: none;
}

.region-nav a {
    color: #1B458F;
    text-decoration: none;
    font-size: 1rem;
    margin: 0 6px;
    position: relative;
    padding: 0.5rem 0.65rem;
    display: inline-block;
}
/* Divider */
.region-nav .divider {
    opacity: 0.45;
    margin: 0 4px;
    color: #1B458F;
}

/* Ochre underline animation — 2px */
.region-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;          /* always full width */
    height: 1px;
    background-color: #D9A441;
    opacity: 0;           /* hidden by default */
}

.region-nav a:hover::after,
.region-nav a.active::after {
    opacity: 1;           /* appears on hover/active */
}
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .region-nav a {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .region-nav {
        text-align: center;
        line-height: 1.8;
        margin-top: 14px;
    }
    .region-nav a {
        font-size: 0.9rem;
    }
}


/* ============================================================
   REGION INTRO
   ============================================================ */

.region-intro {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 60px;
}

.region-title {
    font-family: "adage-script-jf", sans-serif;
    font-size: 3.2rem;
    color: #fff;
    -webkit-text-stroke: 0.75px #000;
    margin-bottom: 18px;
}

.region-description {
    max-width: 900px;
    font-size: 1.2rem;
    color: #F5F2D8;
    margin-bottom: 20px;
}

.amp {
    font-family: "bree-serif", serif;
    font-weight: 700;
    color: #000;
    -webkit-text-stroke: 0.6px #fff;
    font-size: 0.9em;
    position: relative;
    top: -2px;
}


/* ============================================================
   GRID TITLE
   ============================================================ */

.grid-title {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 60px;
    font-family: 'Bree Serif', serif;
    font-size: 2rem;
    color: #fff;
}

.grid-label {
    font-variant: small-caps;
    letter-spacing: 0.6px;
}


/* ============================================================
   PLAYLIST GRID
   ============================================================ */

.playlist-grid {
    margin-bottom: 80px;
}

.playlist-card {
    display: block;
    text-decoration: none;
    color: #fff;
    padding-bottom: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.playlist-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-bottom: 1px solid #222;
}

.playlist-card h3 {
    font-family: 'Bree Serif', serif;
    font-size: 1.6rem;
    margin-top: 14px;
    margin-bottom: 6px;
    color: #fff;
}

.playlist-card p {
    font-size: 1rem;
    color: #cccccc;
}

.playlist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.12);
}


/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeIn {
    to { opacity: 1; }
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background-color: #000;
    border-top: 1px solid #333;
    color: #F5F2D8;
    font-family: "oxtail", serif;
    margin-top: 80px;
}

.footer-nav a {
    color: #1B458F;
    text-decoration: none;
    font-size: 1rem;
    margin: 0 6px;
    position: relative;
    padding-bottom: 3px;
}

.footer-nav .divider {
    opacity: 0.45;
    margin: 0 4px;
    color: #1B458F;
}

.footer-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background-color: #D9A441;
    transition: width 0.25s ease;
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-heading {
    font-family: 'Bree Serif', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #fff;
}

.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}


/* ============================================================
   HOMEPAGE-SPECIFIC STYLES
   ============================================================ */

.homepage-header,
.homepage-header .internal-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.tagline {
    font-family: "bree-serif", serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #000;
    -webkit-text-stroke: 2px #fff;
    letter-spacing: 0.5px;
    margin-top: -10px;
    margin-bottom: 32px;

    opacity: 0;
    transform: translateY(4px);
    animation: taglineFade 1.2s ease-out forwards;
    animation-delay: 0.25s;
}

@keyframes taglineFade {
    0% { opacity: 0; transform: translateY(4px); }
    100% { opacity: 1; transform: translateY(0); }
}

.tagline-box {
    background: none !important;
    padding: 0 !important;
    border: none !important;
}

.intro-heading {
    font-family: "adage-script-jf", sans-serif;
    font-size: 3.2rem;
    color: #fff;
    -webkit-text-stroke: 0.75px #000;
    margin-bottom: 20px;
    text-align: center;
}

.intro-text {
    color: #F5F2D8;
    text-align: center;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.card-title {
    font-family: "adage-script-jf", sans-serif;
    font-size: 2.4rem;
    color: #fff;
    -webkit-text-stroke: 0.75px #000;
    margin-top: 12px;
    margin-bottom: 6px;
    text-align: left;
}

.intro {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 60px;
}

@media (max-width: 600px) {
    .intro-heading {
        font-size: 2.4rem;          /* larger and more confident */
        line-height: 1.15;          /* tighter, more unified */
        -webkit-text-stroke: 0.6px #000;  /* reduce stroke so it doesn’t fragment */
        margin-bottom: 14px;        /* reduce empty space */
        text-align: center;
    }
}
@media (max-width: 600px) {
    .intro-heading {
        text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    }
}


/* ============================================================
   HOMEPAGE FIXES — FINAL PASS
   ============================================================ */

.intro header,
.intro .tagline,
.intro .tagline-box {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.intro-divider {
    display: none !important;
}

.intro .tagline {
    text-align: center !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.intro {
    display: block !important;
    text-align: center;
    padding-bottom: 60px;
}

.card {
    background-color: #000 !important;
    border: none !important;
    transition:
        transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
        filter 0.35s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(255, 255, 255, 0.10);
}

.card img {
    transition: filter 0.35s ease;
}

.card:hover img {
    filter: brightness(1.12);
}

.card-text,
.small {
    color: #cccccc !important;
}

.archive-heading {
    margin-top: 40px;
    margin-bottom: 28px;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.grid-section {
    row-gap: 32px;
    margin-bottom: 40px;
}

.intro p,
.intro li {
    line-height: 1.55;
    color: #e6e6e6;
    margin-bottom: 14px;
}

.intro ul {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-left: 22px;
}

.card-title {
    line-height: 1.1;
    letter-spacing: 0.5px;
}
.cookie-banner {
    position: fixed;
    top: 0;                 /* move to top */
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 12px 20px;
    text-align: center;
    font-size: 0.9rem;
    z-index: 9999;
    display: none;
}

.cookie-banner button {
    margin-left: 10px;
    padding: 6px 12px;
    background: #D9A441;
    border: none;
    color: #000;
    cursor: pointer;
    font-weight: bold;
}

