/* =========================================================
   TRAVIS DAMRON
   travisdamron.com
   ========================================================= */


/* ---------- COLOR PALETTE ---------- */

:root {
    --navy: #071824;
    --navy-light: #0d2635;
    --navy-soft: #123446;

    --aqua: #20c4c9;
    --aqua-light: #69e1df;

    --coral: #f05d3d;
    --orange: #f7943d;

    --sand: #f2e4cf;
    --white: #ffffff;
    --muted: #b9c4c9;

    --max-width: 1180px;
}


/* ---------- RESET ---------- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(7, 24, 36, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: var(--max-width);
    margin: auto;
    padding: 18px 24px;

    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-logo {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--aqua);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;

    min-height: auto;

    background:
    linear-gradient(
        rgba(3, 25, 37, 0.84),
        rgba(3, 25, 37, 0.88)
    ),
    url("images/travis-banner.png");

background-size: cover;
background-position: center 67%;
background-repeat: no-repeat;
}


/* subtle sunset glow */

.hero::after {
    content: "";

    position: absolute;
    width: 560px;
    height: 420px;

    right: -220px;
    bottom: -300px;

    border-radius: 50%;

    background: rgba(240, 93, 61, 0.12);

    filter: blur(110px);
}


.hero-overlay {
    position: absolute;
    inset: 0;

    opacity: 0.2;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 100% 8px;
}


.hero-content {
    position: relative;
    z-index: 2;

    max-width: var(--max-width);
    min-height: auto;

    margin: auto;
    padding: 30px 24px 18px;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    column-gap: 60px;
    row-gap: 30px;

    align-items: center;
}


/* ---------- HERO TEXT ---------- */

.eyebrow {
    color: var(--aqua);

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 18px;
}


.hero h1 {
    font-size: clamp(3.5rem, 6vw, 6rem);

    line-height: 0.84;

    letter-spacing: -3px;

    font-weight: 900;

    margin-bottom: 22px;
}


.tagline {
    color: var(--aqua-light);

    font-size: clamp(1.4rem, 3vw, 2.2rem);

    font-weight: 700;

    font-style: italic;

    margin-bottom: 10px;
}


.genres {
    color: var(--sand);

    font-size: 0.85rem;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 0;
}


.genres span {
    color: var(--coral);

    margin: 0 8px;
}


/* ---------- BUTTONS ---------- */

.hero-buttons {
    display: flex;
    gap: 14px;

    flex-wrap: wrap;
}


.button {
    display: inline-block;

    padding: 14px 24px;

    border: 2px solid transparent;

    text-transform: uppercase;

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 2px;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}


.button:hover {
    transform: translateY(-2px);
}


.button-primary {
    background: var(--coral);
    color: var(--white);
}


.button-primary:hover {
    background: var(--orange);
}


.button-secondary {
    border-color: rgba(255, 255, 255, 0.6);
}


.button-secondary:hover {
    border-color: var(--aqua);
    color: var(--aqua);
}


/* ---------- HERO PHOTO ---------- */

.hero-photo {
    position: relative;
    width: 55%;
    max-width: 380px;
    justify-self: end;
}

/* Soft atmospheric glow behind photo */
.hero-photo::before {
    content: "";
    position: absolute;
    inset: 5% -5% -5% 10%;
    background: rgba(32, 196, 201, 0.16);
    filter: blur(55px);
    z-index: -1;
}

.hero-photo img {
    width: 100%;
    max-height: 590px;
    object-fit: cover;

    /* Blend the photo into the surrounding hero */
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, black 10%, black 88%, transparent 100%),
        linear-gradient(to bottom, black 0%, black 82%, transparent 100%);

    -webkit-mask-composite: source-in;

    mask-image:
        linear-gradient(to right, transparent 0%, black 10%, black 88%, transparent 100%),
        linear-gradient(to bottom, black 0%, black 82%, transparent 100%);

    mask-composite: intersect;
}


/* =========================================================
   GENERAL SECTION STYLES
   ========================================================= */

.section-container {
    max-width: var(--max-width);

    margin: auto;

    padding: 100px 24px;
}


.section-label {
    color: var(--coral);

    font-size: 0.75rem;

    font-weight: 900;

    letter-spacing: 4px;

    margin-bottom: 12px;
}


section h2 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);

    line-height: 0.95;

    font-weight: 900;

    letter-spacing: -2px;
}


/* =========================================================
   FEATURED RELEASE
   ========================================================= */

.featured-release {
    position: relative;

    background:
        linear-gradient(
            120deg,
            #0b2433,
            #071824 65%
        );

    overflow: hidden;
}


.featured-release::after {
    content: "♪";

    position: absolute;

    right: 6%;
    top: 50%;

    transform: translateY(-50%);

    color: rgba(32, 196, 201, 0.06);

    font-size: 28rem;

    font-weight: 900;
}


.release-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
}


.release-content h2 {
    margin-bottom: 20px;
}


.release-date {
    color: var(--aqua);

    font-size: 1.15rem;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 24px;
}


.release-description {
    max-width: 600px;

    color: var(--muted);

    font-size: 1.15rem;

    margin-bottom: 32px;
}


.streaming-buttons {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}


.stream-button {
    padding: 12px 20px;

    border: 1px solid rgba(255,255,255,0.25);

    font-weight: 700;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.platform-icon {
    width: 45px;
    height: 45px;
}


.apple-music-icon {
    transform: translateY(9px);
}


.youtube-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}


.amazon-music-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transform: translateX(8px);
}


.amazon-music-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.amazon-music-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.stream-button:hover {
    background: var(--aqua);

    border-color: var(--aqua);

    color: var(--navy);
}


.coming-soon {
    color: #7f929b;

    font-size: 0.8rem;

    margin-top: 20px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
    background: var(--sand);
    color: var(--navy);
}

.about-section .section-container {
    padding-top: 40px;
    padding-bottom: 20px;
}


.about-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    align-items: start;
}


.about-heading h2 {
    color: var(--navy);
}


.about-copy {
    max-width: 650px;

    font-size: 1.05rem;
}


.about-copy p {
    margin-bottom: 22px;
}


.about-lead {
    color: #0c7380;

    font-size: 1.5rem;

    font-weight: 800;

    line-height: 1.3;
}


/* =========================================================
   TEXAS GULF COAST SECTION
   ========================================================= */

.coast-section {
    min-height: 460px;

    position: relative;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(7,24,36,0.95),
            rgba(7,24,36,0.65)
        ),
        linear-gradient(
            180deg,
            #175467,
            #e36d46
        );
}


/* abstract palm silhouettes */

.coast-section::after {
    content: "🌴";

    position: absolute;

    right: 8%;
    bottom: -30px;

    font-size: 17rem;

    opacity: 0.18;

    filter: grayscale(1);
}


.coast-content {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: var(--max-width);

    margin: auto;

    padding: 90px 24px;
}


.coast-content p {
    color: var(--orange);

    font-size: 0.8rem;

    font-weight: 900;

    letter-spacing: 5px;

    margin-bottom: 15px;
}


.coast-content h2 {
    max-width: 800px;

    color: var(--white);
}


/* =========================================================
   FOLLOW
   ========================================================= */

.follow-section {
    background: #06131d;
    text-align: left;
}

.follow-section .section-container {
    padding-top: 45px;
    padding-bottom: 45px;
}

.follow-section .section-label {
    font-size: 0.95rem;
    letter-spacing: 4px;
    margin-bottom: 14px;
}

.follow-section h2 {
    margin-bottom: 25px;
}


.social-links {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
}


.social-links a {
    min-width: 150px;

    padding: 15px 22px;

    border: 1px solid rgba(255,255,255,0.18);

    font-weight: 800;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.social-links a:hover {
    background: var(--aqua);

    color: var(--navy);

    transform: translateY(-3px);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #030b10;
}


.footer-message {
    padding: 42px 20px;

    text-align: center;

    color: var(--sand);

    font-size: clamp(1.4rem, 4vw, 2.6rem);

    font-weight: 900;

    font-style: italic;

    letter-spacing: 2px;

    background:
        linear-gradient(
            90deg,
            rgba(32,196,201,0.18),
            rgba(240,93,61,0.20)
        );
}


.footer-bottom {
    max-width: var(--max-width);

    margin: auto;

    padding: 24px;

    display: flex;

    justify-content: space-between;

    color: #71818a;

    font-size: 0.75rem;
}


/* =========================================================
   MOBILE / TABLET
   ========================================================= */

@media (max-width: 850px) {

    .nav-container {
        padding: 15px 18px;
    }


    .main-nav {
        gap: 15px;
    }


    .main-nav a {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }


    .hero-content {
        grid-template-columns: 1fr;

        gap: 45px;

        padding-top: 60px;

        padding-bottom: 60px;
    }


    .hero-text {
        text-align: center;
    }


    .hero h1 {
        letter-spacing: -2px;
    }


    .hero-buttons {
        justify-content: center;
    }


    .hero-photo {
        justify-self: center;

        width: 90%;
    }


    .about-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .section-container {
        padding-top: 75px;
        padding-bottom: 75px;
    }


    .footer-bottom {
        flex-direction: column;

        text-align: center;

        gap: 8px;
    }

}


/* ---------- SMALL PHONES ---------- */

@media (max-width: 560px) {

    .nav-container {
        justify-content: center;
    }


    .nav-logo {
        font-size: 1rem;
    }


    .main-nav {
        display: none;
    }


    .hero {
        min-height: auto;
    }


    .hero-content {
        min-height: auto;

        padding: 55px 18px;
    }


    .hero h1 {
        font-size: 4rem;
    }


    .genres {
        letter-spacing: 2px;

        font-size: 0.7rem;
    }


    .button {
        width: 100%;

        text-align: center;
    }


    .hero-photo {
        width: 100%;
    }


    .section-container {
        padding-left: 18px;
        padding-right: 18px;
    }


    .streaming-buttons {
        flex-direction: column;
    }


    .stream-button {
        text-align: center;
    }


    .social-links {
        flex-direction: column;
    }


    .social-links a {
        width: 100%;
    }


    .coast-section::after {
        font-size: 10rem;
    }

}


/* =========================================================
   MOBILE LAUNCH OPTIMIZATION
   ========================================================= */

@media (max-width: 600px) {

    /* Header */
    .nav-container {
        padding: 14px 20px;
        justify-content: center;
    }

    .nav-logo {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .main-nav {
        display: none;
    }


    /* Hero */
    .hero {
        min-height: auto;
        background-position: 70% center;
    }

    .hero-content {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 42px 20px 46px;
    }

    .hero-text {
        text-align: center;
    }

    .eyebrow {
        font-size: 0.62rem;
        letter-spacing: 3px;
        margin-bottom: 12px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 16vw, 4.4rem);
        line-height: 0.84;
        letter-spacing: -2px;
        margin-bottom: 20px;
    }

    .tagline {
        font-size: 1.35rem;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .genres {
        font-size: 0.68rem;
        letter-spacing: 2px;
        margin-bottom: 22px;
    }


    /* Photo */
    .hero-photo {
        width: min(88%, 390px);
        justify-self: center;
    }

    .hero-photo img {
        max-height: 350px;
        object-fit: cover;
    }


    /* Buttons */
    .hero-buttons {
        justify-content: center;
        gap: 10px;
    }

    .button {
        width: auto;
        min-width: 145px;
        padding: 13px 18px;
        font-size: 0.68rem;
    }


    /* Graffiti banner */
    .brand-banner img {
        height: 180px;
        max-height: none;
        object-fit: cover;
        object-position: center;
    }


    /* General sections */
    .section-container {
        padding: 60px 20px;
    }

    section h2 {
        font-size: clamp(2.5rem, 13vw, 3.7rem);
    }


    /* Featured release */
    .featured-release::after {
        font-size: 15rem;
        right: -10%;
    }

    .release-date {
        font-size: 0.85rem;
    }

    .release-description {
        font-size: 1rem;
    }


    /* About */
    .about-grid {
        gap: 30px;
    }

    .about-lead {
        font-size: 1.25rem;
    }


    /* Coast section */
    .coast-section {
        min-height: 330px;
    }

    .coast-content {
        padding: 60px 20px;
    }


    /* Follow */
    .follow-section h2 {
        margin-bottom: 28px;
    }


    /* Footer */
    .footer-message {
        padding: 30px 20px;
    }
}

/* =========================================================
   HERO RELEASE - USE FULL WIDTH
========================================================= */

.hero-release {
    grid-column: 1 / -1;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;

    align-items: center;

    width: 100%;
}

.hero-release-info {
    min-width: 0;
}

.hero-release-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;

    transform: translateX(190px);
}

.hero-release-actions .release-primary {
    margin: 0;
}

.hero-release-actions .streaming-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 10px;
    margin: 0;
}

.hero-release-actions .stream-button {
    width: 100%;
    text-align: center;
}


/* MOBILE */
@media (max-width: 850px) {

    .hero-release {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hero-release-actions {
        width: 100%;
        transform: none;
    }

    .hero-release-actions .release-primary {
        width: 100%;
        text-align: center;
    }

    .hero-release-actions .streaming-buttons {
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 480px) {

    .hero-release-actions .streaming-buttons {
        grid-template-columns: 1fr;
    }
}


#music {
    scroll-margin-top: 85px;
}

/* Featured release title */
.hero-release h2 {
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    line-height: 0.92;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-release .section-label {
    font-size: 0.95rem;
    letter-spacing: 4px;
    margin-bottom: 14px;
}