﻿/* ================================================
   Music Under the Trees â€” Static HTML Site
   Based on Escapade/Primer WordPress theme
   Fonts: Oswald (headings), Droid Serif (body)
   Primary: #395926  Text: #0a0a0a
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Droid+Serif:ital,wght@0,400;0,700;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: "Droid Serif", serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #0a0a0a;
    background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: #395926; }
a:hover { color: #3d8c38; }

p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }

/* ---- CONTAINER ---- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container--narrow { max-width: 780px; }

/* ================================================
   HEADER / NAV  (Escapade sidebar-style at desktop,
   top bar at mobile)
   ================================================ */
.site-header {
	background: #395926;
}
.site-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 70px;
}

/* Branding */
.site-branding {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.75rem 0;
}
.site-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    line-height: 1.1;
    letter-spacing: 0.02em;
}
.site-title:hover { color: rgba(255,255,255,0.85); }
.site-tagline {
    font-family: "Droid Serif", serif;
    font-style: italic;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.82);
    margin-top: 2px;
}

/* Nav */
.site-nav { display: flex; align-items: center; }
.site-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
}
.site-nav a {
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 0.6rem 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-top: 3px solid transparent;
    transition: background 0.15s, border-color 0.15s;
}
.site-nav a:hover,
.site-nav a.active {
    background: rgba(0,0,0,0.12);
    border-top-color: rgba(255,255,255,0.6);
    color: #fff;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    align-self: center;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* ================================================
   HERO - photo behind, text overlay
   ================================================ */
/* CLAUDE'S HERO IMAGE
 .hero {
    position: relative;
    min-height: 420px;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center 40%;
    display: flex;
    align-items: flex-end;
}*/
/* MY HERO IMAGE */
 .hero {
    position: relative;
    min-height: 520px;
  /*   background-image: url('../images/Wildpine-Summer-Stage.jpg');*/
    background-image: url('../images/menage-banner-crop.jpg'); 
    background-size: cover;
    background-position: center 60%;
    display: flex;
    align-items: flex-end;
}*/
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.62) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2.5rem 1.5rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
}
.hero-date {
	font-family: "Oswald", sans-serif;
	font-size: xx-large;
	letter-spacing: 0.18em;
	color: #fff;
	margin-bottom: 0.5rem;
	font-weight: bold;
}
.hero-title {
	font-family: "Oswald", serif;
	font-size: x-large;
	color: #fff;
	line-height: 1.15;
	text-transform: lowercase;
	letter-spacing: 0.03em;
	margin-bottom: 0;
	font-weight: lighter;
}

/* ================================================
   ANNOUNCEMENT BAND
   ================================================ */
.announcement {
    background: #f7f7f7;
    border-top: 3px solid #395926;
    padding: 2.5rem 1.5rem;
}
.announcement .container { max-width: 900px; }
.announcement h2 {
    font-family: "Oswald", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #395926;
    margin-bottom: 0.75rem;
}
.announcement p { color: #333; font-size: 0.97rem; margin-bottom: 0.6rem; }
.announcement-note { font-style: italic; color: #555; font-size: 0.9rem !important; }
.announcement a {
    display: inline-block;
    margin-top: 0.8rem;
    color: #395926;
    font-family: "Oswald", sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-bottom: 2px solid #395926;
    padding-bottom: 1px;
}
.announcement a:hover { color: #3d8c38; border-color: #3d8c38; }

/* ================================================
   PERFORMERS GRID (Home page)
   ================================================ */
.performers-home {
    padding: 3.5rem 0 4rem;
}
.performers-home h2 {
    font-family: "Oswald", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #666;
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #e8e8e8;
}
.performers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.performer-card { text-align: center; }
.performer-card-img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 3px;
    margin-bottom: 1rem;
    background: #ddd;
}
.performer-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s;
}
.performer-card:hover .performer-card-img img { transform: scale(1.04); }
.performer-card h3 {
    font-family: "Oswald", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.performer-card a.learn-more {
    font-family: "Oswald", sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #395926;
    text-decoration: none;
    border-bottom: 1px solid #395926;
    padding-bottom: 1px;
}
.performer-card a.learn-more:hover { color: #3d8c38; border-color: #3d8c38; }

/* ================================================
   PAGE HEADER (inner pages)
   ================================================ */
.page-header {
    background: #395926;
    padding: 2.5rem 1.5rem;
}
.page-header h1 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ================================================
   PERFORMERS DETAIL PAGE
   ================================================ */
.performers-page { padding: 3rem 0 4rem; }
.performer-block {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e8e8e8;
}
.performer-block:last-child { border-bottom: none; margin-bottom: 0; }
.performer-block-img {
    flex-shrink: 0;
}
.performer-block-img img {
    width: 100%;
    border-radius: 3px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.performer-block-body h2 {
    font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #395926;
    margin-bottom: 0.75rem;
}
.performer-block-body p { color: #222; margin-bottom: 0.8rem; }
.performer-block-body a {
    color: #395926;
    font-weight: 700;
}

.tickets-box {
    background: #f0fae8;
    border: 2px solid #395926;
    border-radius: 4px;
    padding: 1.5rem 2rem;
    margin-top: 2.5rem;
    text-align: center;
}
.tickets-box h3 {
    font-family: "Oswald", sans-serif;
    font-size: 1.2rem;
    color: #395926;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}
.tickets-box p { color: #333; margin-bottom: 0.8rem; }
.btn-tickets {
    display: inline-block;
    background: #395926;
    color: #fff !important;
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    padding: 0.65rem 2rem;
    border-radius: 3px;
    transition: background 0.15s;
}
.btn-tickets:hover { background: #3d8c38; }

/* ================================================
   GALLERY PAGE
   ================================================ */
.gallery-page { padding: 3rem 0 4rem; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery-item {
    overflow: hidden;
    border-radius: 3px;
    aspect-ratio: 4/3;
    background: #ddd;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-page { padding: 3rem 0 4rem; }
.contact-page p { font-size: 1.05rem; color: #222; margin-bottom: 1rem; }
.contact-page a { font-weight: 700; }
.contact-email-hint {
    background: #f0fae8;
    border-left: 4px solid #395926;
    padding: 1rem 1.5rem;
    border-radius: 0 3px 3px 0;
    margin-top: 1.5rem;
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    color: #333;
    letter-spacing: 0.02em;
}

/* ================================================
   FAQ PAGE
   ================================================ */
.faq-page { padding: 3rem 0 4rem; }
.faq-intro { margin-bottom: 2rem; font-size: 1.05rem; }
.faq-intro a { font-weight: 700; }
.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-item summary {
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0a0a0a;
    padding: 1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    background: #f9f9f9;
    user-select: none;
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    font-size: 1.4rem;
    color: #395926;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
}
.faq-item[open] summary { background: #f0fae8; }
.faq-item[open] summary::after { content: 'âˆ’'; }
.faq-item p {
    padding: 1rem 1.25rem;
    color: #333;
    font-size: 0.97rem;
    border-top: 1px solid #e8e8e8;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
	background: #395926;
	color: rgba(255,255,255,0.9);
	text-align: center;
	padding: 1.5rem;
	font-family: "Oswald", sans-serif;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	margin-top: auto;
}
.site-footer a { color: #fff; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .site-nav {
        display: none;
        width: 100%;
        background: rgba(0,0,0,0.15);
    }
    .site-nav.open { display: block; }
    .site-nav ul { flex-direction: column; }
    .site-nav a {
        border-top: none;
        border-left: 3px solid transparent;
        padding: 0.75rem 1.25rem;
    }
    .site-nav a:hover, .site-nav a.active {
        border-left-color: rgba(255,255,255,0.6);
        border-top-color: transparent;
    }
    .site-header-inner { flex-wrap: wrap; }
    .site-nav { order: 3; }

    .performers-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
    .performer-block { grid-template-columns: 1fr; }
    .performer-block-img { max-width: 240px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { min-height: 300px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}
