:root {
    --brand-yellow: #D4AF37;
    --brand-black: #000000;
    --brand-grey: #1a1a1a;
    --brand-white: #ffffff;
    --text-muted: #ccc;
}

body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--brand-black);
    color: var(--brand-white);
}

/* --- NAVIGATION --- */
.navbar {
    background-color: var(--brand-black);
    border-bottom: 1px solid #222;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1001;
    min-height: 45px;
}

.burger-icon { color: var(--brand-yellow); font-size: 1.3rem; cursor: pointer; z-index: 1002; }

.motto-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.motto-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--brand-yellow);
    letter-spacing: 2px;
}

.menu-overlay {
    height: 100%; width: 0; position: fixed; z-index: 1002;
    top: 0; left: 0; background-color: rgba(0,0,0,0.7);
    overflow: hidden; transition: 0.2s;
}

.side-menu {
    height: 100%; width: 0; position: fixed; z-index: 1003;
    top: 0; left: 0; background-color: #050505;
    overflow-x: hidden; transition: 0.4s; padding-top: 60px;
    border-right: 1px solid var(--brand-yellow);
}

.side-menu a {
    padding: 12px 25px; text-decoration: none; font-size: 0.9rem;
    color: var(--brand-yellow); display: block; text-transform: uppercase;
    font-weight: bold; letter-spacing: 1px;
}

.side-menu .close-btn { position: absolute; top: 15px; right: 20px; font-size: 1.8rem; color: var(--brand-yellow); cursor: pointer; }

/* --- HERO & CONTENT --- */
.hero-container { margin-top: 56px; width: 100%; background-color: #000; display: flex; justify-content: center; border-bottom: 2px solid var(--brand-yellow); }
.hero-container img { width: 100%; max-width: 2000px; height: auto; max-height: 250px; object-fit: contain; }

.section { padding: 40px 20px; max-width: 1000px; margin: 0 auto; }
h1 { color: var(--brand-yellow); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }

.sub-header { border-left: 3px solid var(--brand-yellow); padding-left: 20px; margin: 15px 0 45px 0; }
.sub-header p { font-size: 1.15rem; font-style: italic; color: #eee; line-height: 1.6; margin: 0; font-weight: 300; }

h2 { color: var(--brand-yellow); text-transform: uppercase; letter-spacing: 1px; margin-top: 0; }
p { line-height: 1.7; color: var(--text-muted); font-size: 1.05rem; }

.link-btn { color: var(--brand-yellow); text-decoration: none; font-weight: bold; text-transform: uppercase; font-size: 0.85rem; }

/* --- EVENTS & PARTNERS --- */
.events-teaser { background: var(--brand-grey); border-left: 4px solid var(--brand-yellow); padding: 25px; margin-bottom: 25px; }
.mini-event-item { display: flex; align-items: center; justify-content: space-between; padding: 6px 10px; border-bottom: 1px solid #333; gap: 15px; border-radius: 4px; transition: 0.2s; }
.mini-event-item:last-child { border-bottom: none; }
.mini-event-item:hover { background: #252525; cursor: pointer; }
.mini-date { color: var(--brand-yellow); font-weight: bold; font-size: 0.9rem; min-width: 60px; flex-shrink: 0; }
.mini-title { flex-grow: 1; font-weight: bold; font-size: 1rem; color: #fff; text-align: center; }
.mini-logo { width: 35px; height: 35px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: #000; border-radius: 4px; padding: 3px; }
.mini-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 2px; }

.partner-row { display: flex; align-items: center; gap: 30px; margin: 20px 0; flex-wrap: wrap; }
.partner-item a { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--text-muted); transition: 0.3s; }
.partner-item a:hover { color: var(--brand-yellow); }
.partner-name { font-size: 0.9rem; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }
.partner-item img { height: 60px; filter: grayscale(100%); transition: 0.3s; opacity: 0.7; object-fit: contain; }
.partner-item:hover img { filter: grayscale(0%); opacity: 1; }

.social-bar { padding: 40px 20px; background: #050505; text-align: center; border-top: 1px solid #222; }
.social-links { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.social-links a { color: var(--brand-yellow); font-size: 1.8rem; transition: 0.3s; text-decoration: none; }

footer { padding: 20px; text-align: center; background: #000; font-size: 0.75rem; color: #444; border-top: 1px solid #111; }

.motto-link { text-decoration: none; }

@media (max-width: 768px) { .side-menu { width: 0; max-width: 70%; } .hero-container img { max-height: 140px; } }
.teaser-card {
    background: var(--brand-grey);
    padding: 25px;
    border-left: 4px solid var(--brand-yellow);
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.teaser-card h2 {
    margin-top: 0;
    color: var(--brand-yellow);
}
.teaser-card p {
    margin: 15px 0;
    line-height: 1.6;
}

.card-icon {
    color: var(--brand-yellow);
    font-size: 2.5rem;
}