/* ===========================
   TUNING STILL WEBSITE
   Main Stylesheet
   =========================== */

/* Root Variables */
:root {
    --primary-color: #8B4513;      /* Saddle brown - earthy bluegrass feel */
    --secondary-color: #D2691E;    /* Chocolate */
    --accent-color: #F4A460;       /* Sandy brown */
    --dark-color: #2C1810;         /* Very dark brown */
    --light-color: #F5F5F0;        /* Off-white */
    --text-color: #333;
    --border-color: #ddd;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin: 2rem 0 1.5rem 0;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    transition: var(--transition);
}

.nav-logo a:hover {
    color: var(--secondary-color);
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    background: linear-gradient(rgba(44, 24, 16, 0.6), rgba(44, 24, 16, 0.6)),
                url('../images/placeholder-hero.png') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 150px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 4.5rem;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* ===========================
   SECTIONS
   =========================== */
.featured {
    background-color: white;
    padding: 60px 20px;
    border-bottom: 3px solid var(--primary-color);
}

.featured h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.featured p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-color);
}

/* ===========================
   QUICK LINKS SECTION
   =========================== */
.quick-links {
    background-color: var(--light-color);
    padding: 80px 20px;
}

.quick-links h2 {
    color: var(--primary-color);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.link-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.2);
}

.link-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.link-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.link-card a {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
}

.link-card a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* ===========================
   PAGE HEADER
   =========================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--accent-color);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    background-color: white;
    padding: 60px 20px;
    margin: 40px 0;
}

.about-image {
   align-content: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: #555;
}

/* ===========================
   MEMBERS SECTION
   =========================== */
.members-section {
    background-color: var(--light-color);
    padding: 60px 20px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.member-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.2);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #ddd;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-card h3 {
    color: var(--primary-color);
    margin: 1.5rem 1.5rem 0.5rem;
}

.member-card .instrument {
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0 1.5rem;
    font-size: 0.9rem;
}

.member-card .bio {
    margin: 1rem 1.5rem 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

/* ===========================
   MEDIA SECTIONS
   =========================== */
.media-section,
.gallery-section,
.press-section {
    padding: 60px 20px;
}

.media-section {
    background-color: white;
}

.gallery-section {
    background-color: var(--light-color);
}

.press-section {
    background-color: white;
    text-align: center;
}

.press-section h2 {
    color: var(--primary-color);
}

.press-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.video-card h3 {
    color: var(--primary-color);
    margin: 1.5rem;
    margin-bottom: 0.5rem;
}

.video-card p {
    margin: 0 1.5rem 1.5rem;
    color: #666;
}

.video-card a {
    display: block;
    margin: 0 1.5rem 1.5rem;
    text-align: center;
}

/* ===========================
   GALLERY
   =========================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(139, 69, 19, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

/* ===========================
   SHOWS SECTION
   =========================== */
.shows-section {
    background-color: white;
    padding: 60px 20px;
}

.shows-list {
    max-width: 900px;
    margin: 0 auto;
}

.show-poster {
    max-width: 200px;
}

.show-card {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-color), white);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.show-card:hover {
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.2);
    transform: translateX(5px);
}

.show-date {
    flex-shrink: 0;
    text-align: center;
    min-width: 100px;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
}

.date-month {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.date-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.show-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.show-details .venue,
.show-details .location,
.show-details .time {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.show-details .venue {
    font-weight: 600;
    color: var(--text-color);
}

.show-details a {
    display: inline-block;
    margin-top: 1rem;
}

/* ===========================
   NEWSLETTER SECTION
   =========================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.newsletter-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    background-color: white;
    color: var(--primary-color);
    border: none;
}

.newsletter-form button:hover {
    background-color: var(--light-color);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background-color: var(--dark-color);
    color: #ccc;
    padding: 40px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #aaa;
    font-weight: 600;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
    .nav-container {
        height: 70px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border: none;
        border-bottom: 1px solid var(--border-color);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero {
        padding: 100px 20px;
        min-height: 400px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .show-card {
        flex-direction: column;
        gap: 1rem;
    }

    .show-date {
        min-width: auto;
        width: 100%;
        display: flex;
        gap: 1rem;
    }

    .date-month,
    .date-day {
        flex: 1;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .nav-logo span {
        display: none;
    }

    .logo-img {
        height: 50px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .quick-links,
    .members-section,
    .shows-section {
        padding: 40px 20px;
    }

    .links-grid,
    .members-grid,
    .gallery-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }
}