:root {
    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --text-main: #000000;
    --text-muted: #000000;
    --accent-gold: #ff6600; /* orange */
    --accent-gold-dark: #ff6600;
    --accent-green: #ff6600;
    --border-color: #000000;
    
    --font-heading: 'Bubblegum Sans', cursive;
    --font-main: 'Alata', system-ui, -apple-system, sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    font-family: var(--font-heading);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    /* cursor: pointer; */
    text-align: center;
    border: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--bg-dark);
    /* shadow removed */
}

.btn-primary:hover {
    transform: translateY(-2px);
    /* shadow removed */
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--text-muted);
}

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

.w-full {
    width: 100%;
}

.mt-4 {
    margin-top: 1rem;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    background: #ffffff;
    border-bottom: 2px solid #000000;
    animation: fadeDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.navbar.scrolled {
    background: #ffffff;
    border-bottom: 2px solid #000000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding var(--transition-normal);
}

.navbar.scrolled .nav-container {
    padding: 15px 24px;
}

.top-announcement {
    background: var(--text-main);
    color: white;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    transition: all 0.3s ease;
    max-height: 50px;
}

.navbar.scrolled .top-announcement {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
}

.top-announcement a.whatsapp-link {
    color: var(--accent-gold);
    text-decoration: underline;
    font-weight: 700;
}
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo span {
    color: var(--accent-gold);
    font-weight: 400;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-main);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
    font-family: var(--font-heading);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 1.5rem;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

/* Sections General */
.section {
    padding: 120px 0;
}

.dark-section {
    background-color: #ffffff;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    margin-bottom: 64px;
}

.section-header.text-center {
    text-align: center;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-header h2 span {
    color: var(--accent-gold);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    font-family: var(--font-heading);
}

.section-header.text-center p {
    margin-inline: auto;
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.schedule-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: #000000;
}

.card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    z-index: 2;
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #000000;
}

.day-header h3 {
    font-size: 2rem;
}

.event-type {
    background: #ffffff;
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

.timeline {
    list-style: none;
}

.timeline li {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    position: relative;
}

.timeline li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 60px;
    top: 24px;
    bottom: -24px;
    width: 1px;
    background: var(--border-color);
}

.time {
    width: 90px;
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    padding-top: 2px;
}

.time .small {
    font-size: 0.75rem;
    opacity: 0.7;
}

.event-details h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.event-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.event-details p.compulsory {
    color: var(--accent-gold);
    font-weight: 500;
}

.timeline li.highlight .event-details h4 {
    color: var(--accent-gold);
}

.timeline li.break .event-details h4 {
    color: var(--text-muted);
    font-weight: 400;
}

/* Sunday Specific */
.sunday-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tour-info {
    display: flex;
    gap: 16px;
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
}

.tour-info i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.tour-info h4 {
    margin-bottom: 8px;
}

.tour-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.stops-container h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.stops-path {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stops-path .stop {
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
}

.stops-path .tbc {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.stops-path i {
    margin-left: 24px;
    color: var(--border-color);
}

.image-wrapper {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 200px;
}

.decorative-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

.mt-auto {
    margin-top: auto;
}

/* Tickets Grid */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ticket-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-normal);
}

.ticket-card:hover {
    transform: translateY(-8px);
    border-color: #000000;
}

.ticket-card.popular {
    border-color: var(--accent-gold);
    transform: scale(1.05);
    z-index: 2;
    /* shadow removed */
}

.ticket-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--bg-dark);
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticket-header {
    border-bottom: 2px solid #000000;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.ticket-header h3 {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.ticket-header .price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.ticket-header .availability {
    font-size: 0.85rem;
    color: var(--accent-gold);
}

.ticket-card:not(.popular) .availability {
    color: var(--text-muted);
}

.ticket-body ul {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 24px;
}

.ticket-body ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.ticket-body ul li i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

/* Hotels Grid */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hotel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.hotel-card:hover {
    border-color: #000000;
    background: var(--bg-card-hover);
}

.hotel-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.hotel-icon i.ph-star {
    color: var(--accent-gold);
}

.hotel-info h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.hotel-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.hotel-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hotel-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.hotel-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.hotel-tag.budget {
    background: #ffffff;
    color: var(--text-muted);
}

.hotel-tag.mid-range {
    background: #ffffff;
    color: var(--accent-green);
}

.hotel-tag.boutique {
    background: #ffffff;
    color: var(--accent-gold);
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.rating i {
    color: var(--accent-gold);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    margin-top: 80px;
}

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

.footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-logo span {
    color: var(--accent-gold);
    font-weight: 400;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations & Utilities */
@keyframes slowZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Language Switcher */
.lang-flags {
    display: flex;
    gap: 8px;
    align-items: center;
}

.flag-btn {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* cursor: pointer; */
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.flag-btn.active {
    border-color: #ff6600;
    transform: scale(1.1);
}

.flag-btn:hover {
    transform: scale(1.1);
    border-color: #ff6600;
}

/* Video Trailer */
.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--border-color);
    /* shadow removed */
    background: var(--bg-card);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--text-muted);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

/* Guests Grid */
.guests-.grid-guests {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.guest-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    transition: var(--transition-normal);
}

.guest-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    /* shadow removed */
}

.guest-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 24px auto;
    background: var(--bg-dark);
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.guest-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.guest-group {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 100%;
    min-height: 450px;
}

.amenities-container h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

.amenities-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.amenities-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.amenities-list i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-top: 4px;
}

.amenities-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.amenities-list p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Form Container */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    /* shadow removed */
}

.form-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
}

.form-placeholder i {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.form-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-placeholder p {
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .schedule-grid, .tickets-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .guests-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 350px;
    }
    
    .ticket-card.popular {
        transform: scale(1);
    }
    
    .ticket-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .timeline li:not(:last-child)::after {
        left: 30px;
    }
    
    .time {
        width: 60px;
        font-size: 0.8rem;
    }
    
    .card-content {
        padding: 24px;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Interactive Schedule Component Redesign */
.interactive-schedule {
    --bg-color: transparent;
    --card-bg: rgba(25, 25, 25, 0.4);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-hover-border: rgba(255, 255, 255, 0.2);
    --text-color: #f0ece4;
    --text-muted: #a0a0a0;
    
    /* Vibrant Premium Colors */
    --accent-training: #10B981; /* Brighter Emerald */
    --accent-lunch: #0EA5E9; /* Sky Blue */
    --accent-ceremony: #8B5CF6; /* Vibrant Violet */
    --accent-roda: #F43F5E; /* Rose / Coral */
    
    font-family: var(--font-body), system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .interactive-schedule {
        gap: 20px;
    }
}

.phase-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.interactive-schedule .phase-label:first-child {
    margin-top: 0;
}

.schedule-slot {
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid #000000;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.schedule-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: #ffffff;
}



.slot-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: inherit;
    padding: 16px;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 16px;
    align-items: center;
    /* cursor: pointer; */
    min-height: 64px;
    font-family: inherit;
}

.slot-header img {
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

.schedule-slot[data-phase="training"] .slot-header img { border-color: var(--accent-training) !important; }

.slot-header:not(:has(img)) {
    grid-template-columns: auto 1fr auto;
}

.schedule-slot.neutral .slot-header {
    cursor: default;
}

/* Time Pill Design */
.slot-time {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.schedule-slot[data-phase="training"] .slot-time { background: var(--accent-training); }
.schedule-slot[data-phase="lunch"] .slot-time { background: var(--accent-lunch); }
.schedule-slot[data-phase="ceremony"] .slot-time { background: var(--accent-ceremony); }
.schedule-slot[data-phase="roda"] .slot-time { background: var(--accent-roda); }

.slot-title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slot-title {
    font-family: var(--font-heading), 'Bubblegum Sans', cursive;
    font-size: 1.3rem;
    margin: 0 0 4px 0;
    line-height: 1.2;
    color: #000000;
    letter-spacing: 0.5px;
}

.slot-leader {
    font-family: var(--font-body), sans-serif;
    font-size: 0.9rem;
    color: #555555;
    font-weight: 500;
}

.slot-icon {
    font-size: 1.4rem;
    color: #444444;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    justify-self: end;
}

.schedule-slot:hover .slot-icon {
    color: #000000;
}







.slot-content {
    padding: 0 16px 24px 16px;
    font-family: var(--font-body), sans-serif;
}

/* Align expanded content with the title on desktop */
@media (min-width: 768px) {
    .slot-content {
        padding: 0 24px 24px 122px; 
    }
}

.slot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.slot-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    background: #f0f0f0;
    color: #222222;
    border: 1px solid #d0d0d0;
}

.slot-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #333333;
    margin: 0 0 16px 0;
}

.bio-card {
    background: #f8f9fa;
    border-left: 3px solid #000000;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444444;
    margin-top: 20px;
}

.info-callout {
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
    padding: 16px 20px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    color: #333333;
    margin-top: 20px;
}

.info-callout.tint-green { 
    color: var(--accent-training); 
    background: rgba(16, 185, 129, 0.1); 
    border-color: rgba(16, 185, 129, 0.2);
}
.info-callout.tint-amber { 
    color: #F59E0B; 
    background: rgba(245, 158, 11, 0.1); 
    border-color: rgba(245, 158, 11, 0.2);
}

/* Beautiful Mobile Layout */
@media (max-width: 600px) {
    .slot-header {
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        grid-template-areas: 
            "time . icon"
            "avatar title title";
        gap: 12px;
        padding: 16px;
    }
    
    .slot-time {
        grid-area: time;
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .slot-header img {
        grid-area: avatar;
        width: 40px !important;
        height: 40px !important;
    }
    
    .slot-title-wrapper {
        grid-area: title;
        align-self: center;
    }
    
    .slot-icon {
        grid-area: icon;
        align-self: center;
    }
    
    .slot-header:not(:has(img)) {
        grid-template-columns: auto 1fr auto;
        grid-template-areas: 
            "time . icon"
            "title title title";
    }
    
    .slot-title {
        font-size: 1.2rem;
    }
    
    .slot-content {
        padding: 0 16px 24px 16px;
    }
}

/* Global Schedule Toggle */
.schedule-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}
.schedule-section-header > div:first-child {
    flex: 1 1 300px;
}
.schedule-view-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    background: #f0f0f0;
    padding: 8px 16px;
    border-radius: 30px;
}
.toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888888;
    transition: color 0.3s;
}
.toggle-label.active {
    color: #111111;
}
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    /* cursor: pointer; */
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #cccccc;
    transition: .4s;
    border-radius: 24px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: var(--accent-training);
}
input:checked + .slider:before {
    transform: translateX(24px);
}

/* Simplified/Detailed View Logic */
.slot-body {
    display: none;
    opacity: 0;
}
.interactive-schedule.detailed-view-active .slot-body {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.interactive-schedule.detailed-view-active .schedule-slot {
    background: #fcfcfc;
}

/* Schedule Table Redesign */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    color: #111111;
    text-align: left;
    font-size: 1rem;
}

.schedule-table th, 
.schedule-table td {
    padding: 16px;
    border: 1px solid #000000;
    vertical-align: top;
}

.schedule-table th {
    background-color: #e0e0e0;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.schedule-table .table-row-neutral {
    background-color: #f2f2f2;
}

.col-time {
    white-space: nowrap;
    font-weight: 600;
}

.col-event strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #000000;
}

.col-leader {
    min-width: 150px;
}

.table-leader {
    display: flex;
    align-items: center;
    gap: 8px;
}

.col-details {
    min-width: 300px;
}

.col-details p {
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.table-tags {
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.table-bio {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #444444;
    padding-left: 12px;
    border-left: 3px solid #cccccc;
}

/* Schedule Toggle UI */
.schedule-view-toggle {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-right: 8px;
}
.toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888888;
    transition: color 0.3s;
}
.toggle-label.active {
    color: #111111;
}
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #cccccc;
    transition: .4s;
    border-radius: 24px;
}
.slider:before {
    position: absolute;
    content: ;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: var(--accent-training);
}
input:checked + .slider:before {
    transform: translateX(24px);
}

/* Table Toggle Logic */
.schedule-table .col-details-header,
.schedule-table .col-details {
    display: none;
    opacity: 0;
}

.schedule-table.detailed-view-active .col-details-header,
.schedule-table.detailed-view-active .col-details {
    display: table-cell;
    animation: fadeIn 0.4s ease forwards;
}

strong, b {
    color: var(--accent-gold);
    font-weight: bold;
}
