:root {
    --primary-color: #B02E4B;

    /* Raspberry Red */
    --text-color: #404041;

    /* Dark Grey */
    --bg-color: #FFF;

    /* White */
    --accent-yellow: #F4D644;
    --accent-green: #A3CB60;
    --accent-blue: #0D87A6;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Courier Prime', monospace;
    --container-width: 1200px;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
}

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

body {
    font-family: var(--font-accent);

    /* Changed from Inter to Courier Prime */
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);

    /* Keeping Oswald for big impact headers */
    text-transform: uppercase;
    letter-spacing: 1px;
}

h4,
h5,
h6 {
    font-family: var(--font-accent);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgb(255 255 255 / 95%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgb(0 0 0 / 5%);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;

    /* Removed text styling in favor of image */
}

.logo-img {
    height: 50px;

    /* Adjust height as needed */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 1rem;
    font-family: var(--font-accent);

    /* Updating nav to Courier */
    font-weight: 700;
}


.lang-btn {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.5rem;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.lang-btn.active,
.lang-btn:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Static background removed in favor of slideshow */
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Overlay to improve text readability over images */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(255 255 255 / 70%), rgb(255 255 255 / 85%));
    z-index: 1;
}

.hero-content {
    z-index: 2;

    /* Ensure text is above overlay and slides */
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

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

.btn {
    padding: 0.8rem 2rem;
    font-family: var(--font-accent);

    /* Buttons now Courier */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    border-radius: 4px;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: white;
}

/* Balloons Overlay */
.balloon {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    filter: blur(40px);
}

.balloon-yellow {
    background: var(--accent-yellow);
    top: -50px;
    left: -100px;
}

.balloon-green {
    background: var(--accent-green);
    bottom: 50px;
    right: -50px;
}

.balloon-blue {
    background: var(--accent-blue);
    top: 40%;
    left: 80%;
}

/* Sections */
.section {
    padding: var(--spacing-lg) 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-yellow);
    margin: 10px auto 0;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

.spacer-lg {
    height: 4rem;
    display: block;
}

.text-block.hidden {
    display: none;
}

/* Members Grid */
.voice-group {
    margin-bottom: var(--spacing-lg);
}

.members-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    text-align: left; /* lists align left usually looks better */
    max-width: 900px;
    margin: 0 auto;
}

.voice-column {
    min-width: 150px;
}

.voice-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--accent-blue); /* Underline instead of side border */
    padding-bottom: 0.5rem;
    display: inline-block;
}

.members-list {
    list-style: none;
    padding: 0;
}

.members-list li {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    padding-left: 0;
}

/* Concerts List */
.concert-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.concert-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.concert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgb(0 0 0 / 5%);
}

.concert-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding-right: 2rem;
    border-right: 1px solid rgb(0 0 0 / 10%);
    color: var(--primary-color);
    font-family: var(--font-heading);
}

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

.concert-date .month {
    font-size: 1.2rem;
    font-weight: 500;
}

.concert-details {
    flex: 1;
}

.concert-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.concert-location {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.concert-desc {
    font-style: italic;
    font-family: var(--font-accent);
    color: #888;
}

.btn-small {
    padding: 0.5rem 1rem;
    border: 1px solid var(--text-color);
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer a {
    color: rgb(255 255 255 / 80%);
}

.footer a:hover {
    color: white;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
    border-top: 1px solid rgb(255 255 255 / 10%);
    padding-top: 2rem;
}

@media (width <= 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .concert-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .concert-date {
        border-right: none;
        border-bottom: 1px solid rgb(0 0 0 / 10%);
        padding-right: 0;
        padding-bottom: 1rem;
        width: 100%;
    }
}