/* --- Font Declaration --- */
@font-face {
    font-family: 'Dirty Bunny';
    src: url('fonts/DirtyBunny.woff2') format('woff2'),
    url('fonts/DirtyBunny.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --- Variables (Theme OLO) --- */
:root {
    --c-olo: #00FFCC;
    --bg-deep: #0f172a;
    --bg-surface: #1e293b;
    --border-color: #334155;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-on-olo: #0f172a;
    --font-head: 'Dirty Bunny', cursive;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.8;
    font-size: 18px;
    overflow-x: hidden;
}

h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; color: #fff; }
a { color: var(--c-olo); text-decoration: none; transition: 0.3s; }
a:hover { opacity: 0.8; }

/* --- Layout Utils --- */
.content-wrapper {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 25px;
}
.block-section { margin-bottom: 100px; }

/* --- Hero Section --- */
.hero-section {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at top, #1e293b 0%, var(--bg-deep) 70%);
    position: relative;
    padding: 20px;
}
.brand-logo {
    font-family: var(--font-head);
    font-size: 14vw;
    letter-spacing: 0.313rem;
    margin-bottom: 15px;
}
.olo-text { color: var(--c-olo); }
.r {
    display: inline-block;
    margin-right: -0.3rem;
}
.hero-sub {
    font-size: 1.3rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 20px 40px;
}
.city-tag {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--text-secondary);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.city-tag span { color: var(--c-olo); font-weight: bold; }
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    color: var(--text-secondary);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* --- Content Typography --- */
.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--c-olo);
    text-shadow: 0 0 15px rgba(0,255,204,0.15);
}
.text-block p { margin-bottom: 25px; color: var(--text-primary); }
strong { color: #fff; font-weight: 600; }
.small { font-size: 0.95rem; }

/* --- Host Section --- */
.host-section {
    background-color: var(--bg-surface);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 100px;
    border: 1px solid var(--border-color);
}
.host-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}
.host-img-container {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}
.host-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--c-olo);
    background-color: #0f172a;
}
.host-badge {
    background-color: var(--c-olo);
    color: var(--text-on-olo);
    display: inline-block;
    padding: 4px 12px;
    font-weight: bold;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-bottom: 15px;
}
.host-name { font-size: 1.8rem; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
.host-title { font-style: italic; color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 15px; }
.host-desc { font-size: 1rem; color: var(--text-primary); }

/* --- Timeline (Clean & Solid) --- */
.timeline-clean {
    list-style: none;
    border-left: 2px solid var(--border-color);
    padding-left: 0;
    margin-left: 10px;
}
.timeline-clean li {
    margin-bottom: 40px;
    position: relative;
    padding-left: 30px;
}
/* Solid Dot - No Glow */
.timeline-clean li::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--c-olo);
    border-radius: 50%;
}
.timeline-clean .time {
    display: block;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--c-olo);
    line-height: 1;
    margin-bottom: 5px;
}
.timeline-clean .event-data strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2px;
}
.timeline-clean .event-data small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* --- Optional / Soft Events Style (New CSS) --- */
.timeline-clean li.optional-event::before {
    background: var(--text-secondary);
}
.timeline-clean li.optional-event .time.soft {
    color: var(--text-secondary);
}
.timeline-clean li.optional-event .event-data {
    opacity: 0.8;
}

/* --- Status Block --- */
.status-block {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--text-secondary);
}
.sponsor-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
}
#contact-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
}

/* --- Q&A --- */
details {
    background-color: var(--bg-surface);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}
details:hover { border-color: rgba(255, 255, 255, 0.1); }
summary {
    padding: 20px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
summary::after {
    content: '+';
    color: var(--c-olo);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 0;
}
details[open] summary::after { content: '-'; }
summary::-webkit-details-marker { display: none; }
details p {
    padding: 0 20px 20px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 0;
    padding-top: 15px;
}

/* --- Newsletter Box --- */
.newsletter-section { margin-bottom: 120px; }
.newsletter-box {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.newsletter-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-olo), transparent);
    opacity: 0.8;
}
.newsletter-content h2 { margin-bottom: 10px; color: #fff; }
.newsletter-content p { color: var(--text-secondary); margin-bottom: 30px; }

/* Fixed Height Input Group */
.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}
.subscribe-form input,
.subscribe-form button {
    height: 52px;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
}
.subscribe-form input {
    padding: 0 20px;
    border: 1px solid #475569;
    background-color: #0f172a;
    color: #fff;
    outline: none;
    transition: border 0.2s;
}
.subscribe-form input::placeholder { color: #64748b; opacity: 1; }
.subscribe-form input:focus { border-color: var(--c-olo); }
.subscribe-form button {
    background-color: var(--c-olo);
    color: var(--text-on-olo);
    font-weight: 800;
    border: none;
    cursor: pointer;
    line-height: 52px;
    padding: 0;
    transition: background-color 0.2s;
}
.subscribe-form button:hover {
    background-color: #fff;
    transform: none;
}
.privacy-note {
    margin-top: 15px !important;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* --- Footer --- */
.main-footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.social-links { margin-bottom: 20px; }
.legal-links { margin-bottom: 20px; }
.legal-links span { margin: 0 10px; opacity: 0.3; }
.copyright { opacity: 0.5; font-size: 0.8rem; }

/* --- Responsive --- */
@media (min-width: 768px) {
    .brand-logo { font-size: 7rem; }
    .host-grid {
        flex-direction: row;
        text-align: left;
    }
    .host-img-container {
        width: 180px;
        height: 180px;
    }
    .subscribe-form {
        flex-direction: row;
    }
    .subscribe-form input { flex: 1; }
    .subscribe-form button { width: auto; padding: 0 30px; }
}

.form-message {
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
}
.form-message.success { color: var(--c-olo); opacity: 1; }
.form-message.error { color: #ff4757; opacity: 1; }

/* Loading Spinner for Button */
.btn-loading {
    color: transparent !important;
    position: relative;
}
.btn-loading::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #0f172a;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    transform: translate(-50%, -50%);
}
@keyframes spin { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }