/* ============================================
   RESET
============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {

    --dark: #17251f;
    --dark-green: #243b31;
    --cream: #f3eee4;
    --light: #faf8f3;
    --gold: #c79545;
    --text: #29332e;
    --muted: #68736d;

}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: var(--light);

    line-height: 1.6;

}


a {

    color: inherit;

    text-decoration: none;

}


img {

    max-width: 100%;

    display: block;

}


/* ============================================
   HEADER
============================================ */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: var(--dark);

    color: white;

}


.header-inner {

    max-width: 1250px;

    margin: auto;

    padding: 18px 35px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.logo-main {

    font-size: 23px;

    letter-spacing: 4px;

    font-weight: bold;

}


.logo-sub {

    font-size: 10px;

    letter-spacing: 4px;

    margin-top: 6px;

    color: var(--gold);

}


.main-nav {

    display: flex;

    align-items: center;

    gap: 34px;

}


.main-nav a {

    font-size: 14px;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: color 0.25s ease;

}


.main-nav a:hover,
.main-nav a.active {

    color: var(--gold);

}


/* ============================================
   MOBILE MENU
============================================ */

.menu-toggle {

    display: none;

    background: none;

    border: none;

    cursor: pointer;

}


.menu-toggle span {

    display: block;

    width: 28px;

    height: 2px;

    background: white;

    margin: 6px 0;

    transition: 0.3s;

}


.menu-toggle.open span:nth-child(1) {

    transform: rotate(45deg)
               translate(6px, 6px);

}


.menu-toggle.open span:nth-child(2) {

    opacity: 0;

}


.menu-toggle.open span:nth-child(3) {

    transform: rotate(-45deg)
               translate(5px, -5px);

}


/* ============================================
   HERO
============================================ */

.hero {

    min-height: 650px;

    display: flex;

    align-items: center;

    background:

        linear-gradient(
            90deg,
            rgba(20, 34, 28, 0.94),
            rgba(20, 34, 28, 0.45)
        ),

        url("images/band1.jpg")
        center / cover no-repeat;

}


.hero-content {

    max-width: 1250px;

    width: 100%;

    margin: auto;

    padding: 80px 35px;

    color: white;

}


.eyebrow {

    font-size: 12px;

    letter-spacing: 3px;

    font-weight: bold;

    margin-bottom: 18px;

    color: var(--gold);

}


.eyebrow.dark {

    color: var(--gold);

}


.hero h1 {

    font-family: Georgia, serif;

    font-size: clamp(50px, 7vw, 94px);

    line-height: 0.98;

    font-weight: normal;

    margin-bottom: 30px;

}


.hero-intro {

    max-width: 520px;

    font-size: 19px;

    margin-bottom: 35px;

}


/* ============================================
   BUTTONS
============================================ */

.button {

    display: inline-block;

    padding: 14px 25px;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: all 0.25s ease;

}


.button-light {

    border: 1px solid white;

    color: white;

}


.button-light:hover {

    background: white;

    color: var(--dark);

}


.button-dark {

    background: var(--dark);

    color: white;

}


.button-dark:hover {

    background: var(--gold);

    color: var(--dark);

}


/* ============================================
   INTRO
============================================ */

.intro-section {

    background: var(--cream);

    padding: 90px 35px;

}


.intro-inner {

    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}


h2 {

    font-family: Georgia, serif;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.1;

    font-weight: normal;

}


.intro-text {

    font-size: 19px;

    color: var(--muted);

}


/* ============================================
   CONCERTS
============================================ */

.concert-section {

    max-width: 1250px;

    margin: auto;

    padding: 100px 35px;

}


.section-heading {

    text-align: center;

    margin-bottom: 55px;

}


.section-heading > p:last-child {

    margin-top: 15px;

    color: var(--muted);

}


.concert-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;

}


.concert-card {

    background: white;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.07);

    overflow: hidden;

}


.concert-image-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e8e3d9;
}

.concert-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.concert-card:hover .concert-image {

    transform: scale(1.05);

}


.concert-date {

    position: absolute;

    bottom: 0;

    left: 0;

    background: var(--gold);

    color: var(--dark);

    padding: 13px 20px;

    display: flex;

    flex-direction: column;

}


.concert-date span {

    font-size: 13px;

    font-weight: bold;

}


.concert-date strong {

    font-size: 20px;

}


.concert-content {

    padding: 30px;

}


.concert-content h3 {

    font-family: Georgia, serif;

    font-size: 29px;

    font-weight: normal;

    margin-bottom: 15px;

}


.concert-content p {

    color: var(--muted);

    font-size: 15px;

}


.concert-links {

    margin-top: 22px;

}


.concert-links a {

    font-size: 13px;

    font-weight: bold;

    color: var(--dark);

}


.concert-links a:hover {

    color: var(--gold);

}


/* ============================================
   VENUE
============================================ */

.venue-section {

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 500px;

}


.venue-image {

    background:

        linear-gradient(
            rgba(20, 34, 28, 0.1),
            rgba(20, 34, 28, 0.1)
        ),

        url("images/band2.jpg")
        center / cover no-repeat;

}


.venue-content {

    background: var(--dark-green);

    color: white;

    padding: 80px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

}


.venue-content h2 {

    margin-bottom: 20px;

}


.venue-content p {

    max-width: 470px;

    margin-bottom: 30px;

    color: #d5ddd8;

}


/* ============================================
   NEWSLETTER
============================================ */

.newsletter-section {

    max-width: 1100px;

    margin: auto;

    padding: 90px 35px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

}


.newsletter-section p {

    color: var(--muted);

    margin-top: 15px;

}


/* ============================================
   PAGE HERO
============================================ */

.page-hero {

    min-height: 390px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

    background:

        linear-gradient(
            rgba(20, 34, 28, 0.78),
            rgba(20, 34, 28, 0.78)
        ),

        url("images/band3.jpg")
        center / cover no-repeat;

}


.page-hero h1 {

    font-family: Georgia, serif;

    font-size: clamp(48px, 7vw, 80px);

    font-weight: normal;

}


.jam-hero {

    background-image:

        linear-gradient(
            rgba(20, 34, 28, 0.78),
            rgba(20, 34, 28, 0.78)
        ),

        url("images/band4.jpg");

}


/* ============================================
   CONTACT
============================================ */

.contact-section {

    max-width: 1100px;

    margin: auto;

    padding: 100px 35px;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;

}


.contact-intro h2 {

    margin-bottom: 25px;

}


.contact-intro p {

    color: var(--muted);

    margin-bottom: 18px;

}


.contact-forms {

    display: flex;

    flex-direction: column;

    gap: 30px;

}


.form-card {

    background: white;

    padding: 35px;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.06);

}


.form-card h3 {

    font-family: Georgia, serif;

    font-size: 29px;

    font-weight: normal;

    margin-bottom: 8px;

}


.form-card > p {

    color: var(--muted);

    margin-bottom: 25px;

}


form {

    display: flex;

    flex-direction: column;

}


label {

    font-size: 13px;

    font-weight: bold;

    margin-bottom: 7px;

}


input,
textarea {

    width: 100%;

    padding: 13px;

    border: 1px solid #d6d6d6;

    margin-bottom: 20px;

    font: inherit;

    background: var(--light);

}


textarea {

    resize: vertical;

}


input:focus,
textarea:focus {

    outline: none;

    border-color: var(--gold);

}


/* ============================================
   FACEBOOK
============================================ */

.facebook-section {

    background: var(--dark-green);

    color: white;

    padding: 80px 35px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

}


.facebook-section > div {

    max-width: 600px;

    margin-left: max(0px, calc((100vw - 1100px) / 2));

}


.facebook-section p:not(.eyebrow) {

    color: #d5ddd8;

    margin-top: 18px;

}


/* ============================================
   JAMS
============================================ */

.empty-content {

    max-width: 750px;

    margin: auto;

    padding: 120px 35px;

    text-align: center;

}


.empty-icon {

    font-size: 70px;

    color: var(--gold);

    margin-bottom: 25px;

}


.empty-content h2 {

    margin-bottom: 25px;

}


.empty-content p {

    color: var(--muted);

    margin-bottom: 15px;

}


.empty-content .button {

    margin-top: 25px;

}


/* ============================================
   FOOTER
============================================ */

.site-footer {

    background: var(--dark);

    color: white;

    padding: 55px 35px 20px;

}


.footer-inner {

    max-width: 1100px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    gap: 50px;

}


.footer-logo {

    letter-spacing: 2px;

    font-weight: bold;

}


.footer-inner p {

    color: #aeb8b2;

    margin-top: 10px;

}


.footer-links {

    display: flex;

    flex-direction: column;

    gap: 9px;

}


.footer-links a {

    color: #d5ddd8;

    font-size: 14px;

}


.footer-links a:hover {

    color: var(--gold);

}


.footer-bottom {

    max-width: 1100px;

    margin: 45px auto 0;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,0.15);

    display: flex;

    justify-content: space-between;

    color: #89958e;

    font-size: 12px;

}


/* ============================================
   ANIMATIONS
============================================ */

.reveal {

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;

}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 800px) {


    .header-inner {

        padding: 16px 22px;

    }


    .menu-toggle {

        display: block;

    }


    .main-nav {

        position: absolute;

        top: 100%;

        left: 0;

        right: 0;

        background: var(--dark);

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px 22px 20px;

    }


    .main-nav.open {

        display: flex;

    }


    .main-nav a {

        padding: 15px 0;

        border-bottom: 1px solid rgba(255,255,255,0.1);

    }


    .hero {

        min-height: 600px;

    }


    .hero-content {

        padding: 60px 22px;

    }


    .intro-section {

        padding: 70px 22px;

    }


    .intro-inner {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .concert-section {

        padding: 70px 22px;

    }


    .concert-grid {

        grid-template-columns: 1fr;

    }


    .venue-section {

        grid-template-columns: 1fr;

    }


    .venue-image {

        min-height: 350px;

    }


    .venue-content {

        padding: 60px 30px;

    }


    .newsletter-section {

        padding: 70px 22px;

        flex-direction: column;

        align-items: flex-start;

    }


    .contact-section {

        grid-template-columns: 1fr;

        gap: 50px;

        padding: 70px 22px;

    }


    .facebook-section {

        flex-direction: column;

        align-items: flex-start;

        padding: 60px 22px;

    }


    .facebook-section > div {

        margin-left: 0;

    }


    .footer-inner {

        flex-direction: column;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 8px;

    }

}


@media (max-width: 480px) {


    .logo-main {

        font-size: 18px;

        letter-spacing: 3px;

    }


    .logo-sub {

        font-size: 8px;

    }


    .hero h1 {

        font-size: 54px;

    }


    .concert-image-wrapper {

        height: 230px;

    }


    .concert-content {

        padding: 25px;

    }


    .form-card {

        padding: 25px;

    }

}