/* =====================================================
   SOUL WEST FEST 2027
   MAIN WEBSITE STYLESHEET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080808;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

:root {
    --black: #080808;
    --dark: #111111;
    --white: #ffffff;
    --gold: #d6a21e;
    --gold-light: #f1c84b;
    --gray: #bdbdbd;
}


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

.site-header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    padding: 20px 4%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 100;
}

.brand a {
    display: flex;
    flex-direction: column;

    line-height: .8;
}

.brand-soul {
    font-size: 27px;
    font-weight: 900;
    letter-spacing: 1px;
}

.brand-west {
    color: var(--gold);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
}

.brand-fest {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 4px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.desktop-nav a:hover {
    color: var(--gold-light);
}

.nav-button {
    background: var(--gold);
    color: #000000;

    padding: 12px 22px;

    transition: .25s ease;
}

.nav-button:hover {
    background: var(--white) !important;
    color: #000000 !important;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image:
        url("images/hero.jpg");

    background-size: cover;
    background-position: center center;

    text-align: left;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.55) 45%,
            rgba(0,0,0,.28) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(1150px, 90%);

    padding-top: 100px;
}

.eyebrow,
.section-label {
    color: var(--gold);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(70px, 12vw, 170px);

    font-weight: 900;

    line-height: .77;

    letter-spacing: -6px;
}

.hero-year {
    color: var(--gold);

    font-size: clamp(40px, 6vw, 72px);

    font-weight: 900;

    letter-spacing: 10px;

    margin-top: 30px;
}

.hero-location {
    font-size: 15px;

    letter-spacing: 5px;

    margin-top: 5px;
}

.hero-tagline {
    font-size: 14px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-top: 22px;
}

.hero-tagline span {
    color: var(--gold);
    padding: 0 7px;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}


/* =====================================================
   BUTTONS
===================================================== */

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 13px 24px;

    border: 1px solid var(--white);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.3px;

    text-align: center;

    transition: .25s ease;
}

.button-gold {
    background: var(--gold);

    border-color: var(--gold);

    color: #000000;
}

.button-gold:hover {
    background: var(--white);

    border-color: var(--white);
}

.button-outline {
    background: transparent;

    color: var(--white);
}

.button-outline:hover {
    background: var(--white);

    color: #000000;
}

.button-dark {
    background: transparent;

    color: #111111;

    border-color: #111111;
}

.button-dark:hover {
    background: #111111;

    color: #ffffff;
}


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    background: #ffffff;

    color: #111111;

    padding: 100px 0;
}

.about-container {
    width: min(1200px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns:
        40% 60%;

    gap: 50px;

    align-items: center;
}

.about-copy h2 {
    font-size: clamp(40px, 5vw, 70px);

    line-height: .92;

    margin-bottom: 28px;
}

.about-copy p:not(.section-label) {
    font-size: 17px;

    margin-bottom: 18px;

    max-width: 550px;
}

.text-link {
    display: inline-block;

    margin-top: 12px;

    font-weight: 800;

    font-size: 12px;

    letter-spacing: 1.5px;

    border-bottom: 2px solid #111111;

    padding-bottom: 5px;
}

.text-link span {
    margin-left: 8px;
}

.about-gallery {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;
}

.about-gallery img {
    width: 100%;

    height: 310px;

    object-fit: cover;
}

.about-gallery img:nth-child(2) {
    margin-top: 35px;
}

.about-gallery img:nth-child(4) {
    margin-top: 35px;
}


/* =====================================================
   2027
===================================================== */

.future-section {
    background:
        linear-gradient(
            rgba(0,0,0,.90),
            rgba(0,0,0,.90)
        ),
        url("images/festival-stage.jpg");

    background-size: cover;

    background-position: center;

    padding: 100px 0;
}

.future-container {
    width: min(1200px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns:
        1.4fr repeat(4, 1fr);

    gap: 0;
}

.future-intro {
    padding-right: 35px;
}

.future-intro h2 {
    font-size: clamp(40px, 5vw, 65px);

    line-height: .9;

    margin-bottom: 25px;
}

.future-intro p {
    font-size: 15px;
}

.future-highlight {
    color: var(--gold-light);

    font-size: 19px !important;

    font-weight: 800;

    margin-bottom: 18px;
}

.feature-card {
    min-height: 280px;

    padding: 25px;

    border-left:
        1px solid rgba(255,255,255,.25);

    text-align: center;
}

.feature-icon {
    font-size: 40px;

    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--gold-light);

    font-size: 20px;

    margin-bottom: 14px;
}

.feature-card p {
    font-size: 13px;

    color: #dddddd;
}


/* =====================================================
   JOIN
===================================================== */

.join-section {
    background: #f3f3f3;

    color: #111111;

    padding: 75px 0;
}

.join-container {
    width: min(1200px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1.3fr 1fr;

    gap: 35px;

    align-items: center;
}

.join-copy h2 {
    font-size: clamp(40px, 5vw, 65px);

    line-height: .9;
}

.join-message p {
    font-size: 16px;

    margin-bottom: 20px;
}

.join-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.join-buttons .button {
    font-size: 9px;

    padding: 11px 13px;
}

.join-image img {
    width: 100%;

    height: 270px;

    object-fit: cover;
}


/* =====================================================
   SOCIAL
===================================================== */

.social-section {
    background: #090909;

    padding: 100px 0;
}

.social-container {
    width: min(1200px, 90%);

    margin: auto;
}

.social-container h2 {
    font-size: clamp(40px, 5vw, 65px);

    line-height: .95;

    margin-bottom: 45px;
}

.social-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.social-card {
    min-height: 280px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border: 1px solid rgba(255,255,255,.25);

    background-size: cover;

    background-position: center;

    transition: .3s ease;
}

.youtube-card {
    background-image:
        linear-gradient(
            rgba(0,0,0,.68),
            rgba(0,0,0,.68)
        ),
        url("images/festival-stage.jpg");
}

.facebook-card {
    background-image:
        linear-gradient(
            rgba(0,0,0,.68),
            rgba(0,0,0,.68)
        ),
        url("images/community.jpg");
}

.instagram-card {
    background-image:
        linear-gradient(
            rgba(0,0,0,.68),
            rgba(0,0,0,.68)
        ),
        url("images/culture.jpg");
}

.social-card:hover {
    transform: translateY(-7px);

    border-color: var(--gold);
}

.social-icon {
    font-size: 42px;

    font-weight: 900;
}

.social-content h3 {
    font-size: 28px;

    margin-bottom: 8px;
}

.social-content p {
    color: #dddddd;

    font-size: 14px;

    margin-bottom: 18px;
}

.social-content span {
    color: var(--gold-light);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}


/* =====================================================
   LEGACY
===================================================== */

.legacy-section {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    background: #ffffff;

    color: #111111;
}

.legacy-copy {
    padding: 80px 8%;
}

.legacy-copy h2 {
    font-size: clamp(40px, 5vw, 65px);

    line-height: .92;

    margin-bottom: 25px;
}

.legacy-copy > p:not(.section-label) {
    max-width: 550px;

    font-size: 16px;

    margin-bottom: 25px;
}

.legacy-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.legacy-buttons .button {
    font-size: 9px;

    padding: 11px 14px;
}

.legacy-image {
    position: relative;

    min-height: 450px;
}

.legacy-image img {
    position: absolute;

    width: 100%;

    height: 100%;

    object-fit: cover;
}

.legacy-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    color: #ffffff;

    background:
        rgba(0,0,0,.35);
}

.legacy-overlay h2 {
    font-size: clamp(32px, 4vw, 55px);

    line-height: .95;

    margin-bottom: 10px;
}

.legacy-overlay p {
    color: var(--gold-light);

    font-size: 22px;

    font-weight: 900;

    letter-spacing: 5px;

    margin-bottom: 20px;
}


/* =====================================================
   FINAL CTA
===================================================== */

.final-section {
    min-height: 500px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        url("images/beach-sunset.jpg");

    background-size: cover;

    background-position: center;
}

.final-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,.58);
}

.final-content {
    position: relative;

    z-index: 2;
}

.final-content h2 {
    font-size: clamp(48px, 7vw, 90px);

    line-height: .88;

    margin-bottom: 20px;
}

.final-content > p:not(.section-label) {
    font-size: 18px;

    margin-bottom: 25px;
}


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

footer {
    background: #050505;

    padding: 70px 0 20px;
}

.footer-container {
    width: min(1200px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.2fr;

    gap: 40px;
}

.footer-logo {
    font-size: 34px;

    font-weight: 900;

    line-height: .8;

    margin-bottom: 20px;
}

.footer-brand > p {
    color: #aaa;

    font-size: 13px;

    max-width: 300px;

    margin-bottom: 15px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {
    color: var(--gold);

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.footer-column a,
.footer-column p {
    color: #bbb;

    font-size: 12px;
}

.footer-column a:hover {
    color: var(--gold-light);
}

.footer-social {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.copyright {
    width: min(1200px, 90%);

    margin: 50px auto 0;

    padding-top: 20px;

    border-top:
        1px solid rgba(255,255,255,.15);

    text-align: center;

    color: #666;

    font-size: 11px;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

    .desktop-nav {
        display: none;
    }

    .hero {
        min-height: 850px;

        background-position: 60% center;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 75px;

        letter-spacing: -3px;
    }

    .hero-location {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .hero-tagline {
        font-size: 10px;

        letter-spacing: 2px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

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

    .about-gallery img {
        height: 250px;
    }

    .future-container {
        grid-template-columns: 1fr;
    }

    .future-intro {
        padding-right: 0;

        margin-bottom: 30px;
    }

    .feature-card {
        min-height: auto;

        border-left: 0;

        border-top:
            1px solid rgba(255,255,255,.25);
    }

    .join-container {
        grid-template-columns: 1fr;
    }

    .join-image {
        order: -1;
    }

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

    .legacy-section {
        grid-template-columns: 1fr;
    }

    .legacy-image {
        min-height: 400px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    .site-header {
        padding: 18px 5%;
    }

    .brand-soul {
        font-size: 22px;
    }

    .brand-west {
        font-size: 17px;
    }

    .brand-fest {
        font-size: 14px;
    }

    .hero {
        min-height: 780px;
    }

    .hero h1 {
        font-size: 62px;

        letter-spacing: -2px;
    }

    .hero-year {
        font-size: 40px;

        letter-spacing: 7px;
    }

    .hero-tagline {
        line-height: 2;
    }

    .button {
        width: 100%;

        padding: 14px 15px;
    }

    .about-section,
    .future-section,
    .social-section {
        padding: 75px 0;
    }

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

        gap: 6px;
    }

    .about-gallery img {
        height: 190px;
    }

    .about-gallery img:nth-child(2),
    .about-gallery img:nth-child(4) {
        margin-top: 20px;
    }

    .join-buttons {
        flex-direction: column;
    }

    .legacy-copy {
        padding: 65px 7%;
    }

    .legacy-buttons {
        flex-direction: column;
    }

    .legacy-buttons .button {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .copyright {
        margin-top: 35px;
    }
}