:root {
    --primary-color: #FFFFFF;
    --accent-color: #2E8B57;
    /* Fresh Green */
    --secondary-accent: #66BB6A;
    /* Lighter Green */
    --text-color: #333333;
    --bg-color: #F8F9FA;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(46, 139, 87, 0.2);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for sticky nav */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(46, 139, 87, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(102, 187, 106, 0.05) 0%, transparent 40%);
    background-attachment: fixed;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: #1a1a1a;
}

nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    text-transform: uppercase;
}

nav a:hover,
nav a.active {
    color: var(--accent-color);
}

.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Light overlay on top of the dark image to make it fit, or we assume image is okay and just add a light tint */
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.6)), url('img/top_new.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 8rem 1rem 2rem;
    position: relative;
    border-bottom: 4px solid var(--accent-color);
}

.hero-announcement {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 2rem;
    max-width: 600px;
    box-shadow: 0 8px 32px rgba(46, 139, 87, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero img.logo {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9));
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

/* Layout */
.page-content {
    padding: 2rem 2rem;
    min-height: 50vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

h1.page-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--accent-color);
    border-bottom: 3px solid #eee;
    padding-bottom: 1rem;
    display: block;
}

h2 {
    color: #1a1a1a;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Cards / Blocks */
.info-block {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 139, 87, 0.2);
    border-color: var(--accent-color);
}

/* Grid for Artists/Merch */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Lists */
ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 0.5rem;
}

/* Links */
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
}

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

footer {
    text-align: center;
    padding: 3rem;
    background: #fff;
    color: #666;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    nav ul {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .timetable-item {
        flex-direction: column;
        text-align: center !important;
    }

    .timetable-item>div:first-child {
        margin-bottom: 1rem;
    }
}