/* Start custom CSS for html, class: .elementor-element-c3cea82 *//* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: #1C1F26;
    color: #E4E4E7;
    line-height: 1.7;
    overflow-x: hidden;
}
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

:root {
    --lime: #CCEE00;
    --lime-dim: #A3BF00;
    --bg-dark: #1C1F26;
    --bg-card: #23272F;
    --bg-alt: #191C22;
    --border: #2E3340;
    --text: #E4E4E7;
    --text-dim: #9CA3AF;
    --white: #FFFFFF;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 14px 0; transition: all 0.3s; border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(28,31,38,0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.3rem; }
.logo-text { font-weight: 900; font-size: 1.1rem; letter-spacing: 3px; color: var(--lime); }
.nav-menu { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-menu a {
    font-weight: 600; font-size: 0.85rem; letter-spacing: 0.5px;
    color: var(--text-dim); transition: color 0.2s; text-transform: uppercase;
}
.nav-menu a:hover { color: var(--lime); }
.nav-cta {
    background: var(--lime) !important; color: var(--bg-dark) !important;
    padding: 8px 22px !important; border-radius: 4px; font-weight: 800 !important;
}
.nav-cta:hover { background: var(--lime-dim) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, #13151A 0%, var(--bg-dark) 100%);
    border-bottom: 3px solid var(--lime);
}
.hero-topline {
    display: flex; align-items: center; gap: 16px; margin-bottom: 40px;
    flex-wrap: wrap;
}
.hero-tag {
    font-size: 0.75rem; font-weight: 800; letter-spacing: 2px;
    color: var(--lime); text-transform: uppercase;
}
.hero-divider { width: 24px; height: 1px; background: var(--border); }
.hero-title {
    font-size: 3.8rem; font-weight: 900; line-height: 1.1;
    margin-bottom: 40px; letter-spacing: -1px;
}
.hero-accent {
    font-family: 'Noto Serif', serif; font-style: italic;
    color: var(--lime); font-weight: 700;
}
.hero-sub {
    display: block; font-size: 1.3rem; font-weight: 400;
    color: var(--text-dim); margin-top: 12px; letter-spacing: 0;
    font-family: 'Noto Serif', serif; font-style: italic;
}
.hero-image-wrapper {
    position: relative; margin-bottom: 48px;
    border-radius: 8px; overflow: hidden;
    max-height: 420px;
}
.hero-image-wrapper img { width: 100%; height: 420px; object-fit: cover; }
.hero-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--bg-dark), transparent 50%);
}
.hero-bottom {
    display: flex; justify-content: space-between; align-items: flex-end;
    flex-wrap: wrap; gap: 24px;
}
.hero-info-row { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-info-item { display: flex; flex-direction: column; }
.info-label {
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--lime); margin-bottom: 4px;
}
.info-value { font-weight: 600; font-size: 0.95rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block; padding: 14px 32px; font-weight: 800;
    font-size: 0.9rem; letter-spacing: 0.5px; border: none; cursor: pointer;
    transition: all 0.2s; border-radius: 4px;
}
.btn-primary {
    background: var(--lime); color: var(--bg-dark);
}
.btn-primary:hover { background: var(--lime-dim); transform: translateY(-1px); }
.btn-large { padding: 18px 44px; font-size: 1rem; }

/* ===== SECTION COMMON ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-label {
    font-size: 0.72rem; font-weight: 800; letter-spacing: 3px;
    color: var(--lime); text-transform: uppercase; margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
}
.section-label::after {
    content: ''; flex: 1; height: 1px; background: var(--border); max-width: 200px;
}
.section-title {
    font-size: 2.4rem; font-weight: 900; line-height: 1.2;
    margin-bottom: 16px; letter-spacing: -0.5px; color: var(--white);
}
.section-title em {
    font-family: 'Noto Serif', serif; color: var(--lime); font-weight: 700;
}
.section-lead {
    font-size: 1.05rem; color: var(--text-dim); max-width: 600px; margin-bottom: 48px;
}

/* ===== FEATURES ===== */
.feature-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
}
.feature-card {
    background: var(--bg-card); padding: 36px 32px;
    border: 1px solid var(--border); transition: border-color 0.3s;
}
.feature-card:hover { border-color: var(--lime); }
.feature-number {
    font-size: 0.7rem; font-weight: 900; color: var(--lime);
    letter-spacing: 2px; margin-bottom: 16px;
}
.feature-card h3 {
    font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; color: var(--white);
}
.feature-card p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }

/* ===== GUEST ===== */
.guest-layout {
    display: grid; grid-template-columns: 380px 1fr; gap: 48px;
    align-items: start; margin-top: 8px;
}
.guest-photo {
    position: relative; border-radius: 6px; overflow: hidden;
    border: 2px solid var(--border);
}
.guest-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.guest-badge {
    display: inline-block; font-size: 0.7rem; font-weight: 800;
    letter-spacing: 2px; color: var(--lime); margin-bottom: 12px;
}
.guest-name {
    font-family: 'Noto Serif', serif; font-size: 2.8rem; font-weight: 700;
    color: var(--white); margin-bottom: 4px; line-height: 1.1;
}
.guest-role { color: var(--text-dim); font-weight: 600; font-size: 0.95rem; margin-bottom: 20px; }
.guest-divider { width: 48px; height: 3px; background: var(--lime); margin-bottom: 20px; }
.guest-bio { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 14px; line-height: 1.7; }
.guest-bio em { color: var(--lime); font-style: italic; }
.guest-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.guest-tags span {
    background: var(--bg-alt); border: 1px solid var(--border);
    padding: 5px 14px; font-size: 0.78rem; font-weight: 700; color: var(--lime);
    border-radius: 2px;
}

/* ===== HOST ===== */
.host-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.host-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 6px; overflow: hidden; transition: border-color 0.3s;
}
.host-card:hover { border-color: var(--lime); }
.host-photo { height: 300px; overflow: hidden; }
.host-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: filter 0.3s; }
.host-card:hover .host-photo img { filter: grayscale(0%); }
.host-body { padding: 28px; }
.host-body h3 { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.host-role { color: var(--lime); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 14px; }
.host-bio { color: var(--text-dim); font-size: 0.9rem; line-height: 1.65; margin-bottom: 16px; }
.host-socials { display: flex; gap: 10px; }
.host-socials a {
    font-size: 0.8rem; font-weight: 700; color: var(--text-dim);
    border: 1px solid var(--border); padding: 5px 14px; border-radius: 2px;
    transition: all 0.2s;
}
.host-socials a:hover { border-color: var(--lime); color: var(--lime); }

/* ===== DETAIL ===== */
.detail-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.detail-venue { border-radius: 6px; overflow: hidden; border: 2px solid var(--border); }
.detail-venue img { width: 100%; height: 100%; object-fit: cover; }
.detail-list { margin-top: 24px; }
.detail-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 16px 0; border-bottom: 1px solid var(--border); gap: 20px;
}
.detail-key {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text-dim); flex-shrink: 0; min-width: 90px;
}
.detail-val { font-weight: 600; text-align: right; }
.detail-val.highlight { color: var(--lime); }
.detail-val small { font-weight: 400; color: var(--text-dim); font-size: 0.82rem; }

/* ===== RUNDOWN ===== */
.rundown-table { max-width: 720px; }
.rundown-row {
    display: flex; gap: 32px; padding: 20px 0;
    border-bottom: 1px solid var(--border); align-items: baseline;
    transition: all 0.3s;
}
.rundown-row:first-child { border-top: 1px solid var(--border); }
.rundown-row.active {
    background: var(--bg-card); padding: 20px 24px; margin: 0 -24px;
    border-color: var(--lime); border-left: 3px solid var(--lime);
}
.rundown-time {
    font-size: 1.1rem; font-weight: 900; color: var(--lime);
    min-width: 60px; font-variant-numeric: tabular-nums;
}
.rundown-content { flex: 1; }
.rundown-content strong { display: block; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.rundown-content span { font-size: 0.88rem; color: var(--text-dim); }

/* ===== CTA ===== */
.cta-section {
    padding: 100px 0;
    background: var(--bg-dark);
    border-top: 3px solid var(--lime);
}
.cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-inner h2 {
    font-size: 2.6rem; font-weight: 900; line-height: 1.15;
    margin-bottom: 16px; color: var(--white); letter-spacing: -0.5px;
}
.cta-accent {
    font-family: 'Noto Serif', serif; color: var(--lime); font-style: italic; font-weight: 700;
}
.cta-inner > p {
    color: var(--text-dim); font-size: 1rem; margin-bottom: 36px; line-height: 1.7;
}
.cta-note {
    display: block; margin-top: 14px; color: var(--text-dim);
    font-size: 0.78rem; font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    padding: 48px 0 24px; background: #13151A;
    border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo {
    font-weight: 900; font-size: 1rem; letter-spacing: 3px; color: var(--lime); margin-bottom: 10px;
}
.footer-brand p { color: var(--text-dim); font-size: 0.88rem; }
.footer-col h4 {
    font-size: 0.72rem; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px;
}
.footer-col a {
    display: block; font-size: 0.88rem; color: var(--text-dim);
    margin-bottom: 8px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
    border-top: 1px solid var(--border); padding-top: 20px; text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }
.footer-bottom strong { color: var(--lime); }

/* ===== ANIMATIONS ===== */
.anim { opacity: 0; transform: translateY(20px); transition: opacity 0.5s, transform 0.5s; }
.anim.visible { opacity: 1; transform: translateY(0); }
.feature-card:nth-child(2).anim { transition-delay: 0.08s; }
.feature-card:nth-child(3).anim { transition-delay: 0.16s; }
.feature-card:nth-child(4).anim { transition-delay: 0.24s; }
.rundown-row:nth-child(2).anim { transition-delay: 0.06s; }
.rundown-row:nth-child(3).anim { transition-delay: 0.12s; }
.rundown-row:nth-child(4).anim { transition-delay: 0.18s; }
.rundown-row:nth-child(5).anim { transition-delay: 0.24s; }
.rundown-row:nth-child(6).anim { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .hero-info-row { gap: 24px; }
    .guest-layout { grid-template-columns: 1fr; }
    .guest-photo { max-width: 380px; }
    .detail-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 260px; height: 100vh;
        background: var(--bg-card); flex-direction: column; padding: 80px 32px 40px;
        border-left: 1px solid var(--border); transition: right 0.3s; gap: 20px;
    }
    .nav-menu.active { right: 0; }
    .nav-toggle { display: flex; z-index: 1001; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
    .hero { padding: 100px 0 48px; }
    .hero-title { font-size: 2.2rem; }
    .hero-sub { font-size: 1rem; }
    .hero-bottom { flex-direction: column; align-items: flex-start; }
    .section-title { font-size: 1.9rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .host-grid { grid-template-columns: 1fr; }
    .cta-inner h2 { font-size: 2rem; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-topline { gap: 8px; }
    .hero-tag { font-size: 0.65rem; }
    .hero-info-row { flex-direction: column; gap: 16px; }
    .guest-name { font-size: 2rem; }
    .section-title { font-size: 1.6rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .btn { padding: 12px 24px; font-size: 0.85rem; }
    .btn-large { padding: 14px 32px; font-size: 0.9rem; }
    .detail-row { flex-direction: column; gap: 4px; }
    .detail-val { text-align: left; }
}/* End custom CSS */