/* =========================================
   RUBI GROOVE — MAIN WEBSITE STYLES
   ========================================= */

:root {
    --black: #0b0909;
    --cream: #f4eee5;
    --gold: #c6a15b;
    --burgundy: #641f2c;
    --warm-gray: #aaa19a;
    --dark-gray: #171313;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
}

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

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


/* =========================================
   NAVIGATION
   ========================================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 5%;
    background: linear-gradient(
        to bottom,
        rgba(11, 9, 9, 0.95),
        rgba(11, 9, 9, 0)
    );
}

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

nav > a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.18em;
}

nav div {
    display: flex;
    gap: 30px;
}

nav div a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav div a:hover {
    color: var(--gold);
}


/* =========================================
   GENERAL SECTIONS
   ========================================= */

section {
    min-height: 70vh;
    padding: 120px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.08em;
    margin-bottom: 25px;
}

section p {
    max-width: 650px;
    color: var(--warm-gray);
    font-size: 1.1rem;
}


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

#home {
    position: relative;
    min-height: 100vh;
    padding: 140px 8% 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 4, 4, 0.97) 0%,
            rgba(5, 4, 4, 0.87) 24%,
            rgba(5, 4, 4, 0.52) 48%,
            rgba(5, 4, 4, 0.08) 73%
        ),
        url("rubi-hero.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(650px, 100%);
}

.hero-eyebrow {
    margin-bottom: 22px;
    color: var(--gold);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.32em;
}

#home h1 {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(4.5rem, 10vw, 9rem);
    font-weight: 800;
    line-height: 0.78;
    letter-spacing: -0.04em;
}

#home h1 span {
    display: block;
}

#home h1 span:last-child {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--cream);
}

.hero-tagline {
    margin-top: 35px;
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    font-style: italic;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 145px;
    padding: 14px 25px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.68rem;
    font-weight: bold;
    letter-spacing: 0.18em;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.button-primary {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--black);
}

.button-primary:hover {
    background: var(--cream);
    border-color: var(--cream);
}

.button-secondary {
    border: 1px solid rgba(244, 238, 229, 0.65);
    color: var(--cream);
}

.button-secondary:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--black);
}

/* =========================================
   MUSIC
   ========================================= */

#music {
    background: var(--dark-gray);
}


/* =========================================
   LIVE
   ========================================= */

#shows {
    background: var(--black);
}


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

#about {
    background:
        linear-gradient(
            135deg,
            rgba(100, 31, 44, 0.25),
            transparent
        ),
        var(--dark-gray);
}


/* =========================================
   VIDEOS
   ========================================= */

#videos {
    background: var(--black);
}


/* =========================================
   CONTACT
   ========================================= */

#contact {
    background:
        radial-gradient(
            circle at center,
            rgba(198, 161, 91, 0.08),
            transparent 55%
        ),
        var(--dark-gray);
}

#contact a {
    margin-top: 25px;
    color: var(--gold);
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.08em;
}


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

footer {
    padding: 35px 8%;
    text-align: center;
    background: var(--black);
}

footer p {
    color: #777;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}


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

@media (max-width: 700px) {

    header {
        padding: 20px 5%;
    }

    nav {
        flex-direction: column;
        gap: 15px;
    }

    nav div {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav div a {
        font-size: 0.65rem;
    }

    section {
        padding: 100px 7%;
    }

    #home h1 {
        font-size: clamp(3.5rem, 18vw, 6rem);
    }

    #home > p:nth-of-type(2) {
        font-size: 1.2rem;
    }
}
