:root {
    --cyan: #00C2E8;
    --magenta: #E6007E;
    --dark-bg: #0b0c10;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --gradient-primary: linear-gradient(135deg, var(--cyan), var(--magenta));
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

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

/* Background Effects */
.bg-glow {
    position: fixed;
    width: 60vw;
    height: 60vw;
    min-width: 400px;
    min-height: 400px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.3;
    animation: drift 15s infinite alternate ease-in-out;
}

.glow-cyan {
    top: -20%;
    left: -20%;
    background: var(--cyan);
}

.glow-magenta {
    bottom: -20%;
    right: -20%;
    background: var(--magenta);
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5vw, 5vh) scale(1.1); }
}

/* Glassmorphism Utilities */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    border: 0.1rem solid var(--glass-border);
    border-radius: 1.5rem;
    padding: var(--spacing-md);
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-0.5rem);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Typography */
h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

p {
    font-size: clamp(1rem, 1.2vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 600;
    color: var(--text-main);
    background: var(--gradient-primary);
    border: none;
    border-radius: 3rem;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0.5rem 1.5rem rgba(230, 0, 126, 0.4);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    box-shadow: 0 0.8rem 2rem rgba(0, 194, 232, 0.6);
    transform: scale(1.05);
}

.btn.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 0, 126, 0.7); }
    70% { box-shadow: 0 0 0 1rem rgba(230, 0, 126, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 0, 126, 0); }
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: var(--spacing-xl) 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    width: 80%;
    max-width: 800px;
    height: 80%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    filter: grayscale(100%);
    z-index: -1;
    pointer-events: none;
}

.hero p.subheadline {
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    color: var(--text-main);
    margin-bottom: var(--spacing-lg);
    max-width: 80%;
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.event-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.event-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.event-details i {
    color: var(--cyan);
}

/* Description Section */
.description-content {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

/* Hosts Section */
.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 25rem), 1fr));
    gap: var(--spacing-lg);
}

.host-card {
    text-align: center;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.host-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    display: block;
    overflow: hidden;
}

.host-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.host-card h3 {
    margin-top: var(--spacing-sm);
    padding: 0 var(--spacing-md);
}

.host-card .host-socials {
    margin-top: auto;
    padding: 0 var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.host-socials {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--glass-bg);
    color: var(--text-main);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 0.1rem solid var(--glass-border);
}

.social-link:hover {
    background: var(--magenta);
    color: white;
    transform: translateY(-0.2rem);
}

/* Footer */
footer {
    padding: var(--spacing-lg) 0;
    text-align: center;
    border-top: 0.1rem solid var(--glass-border);
    margin-top: var(--spacing-xl);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-logo {
    margin-top: 1.5rem;
}

.footer-logo img {
    max-width: 150px;
    opacity: 0.8;
}

/* --- Multistep Booking Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 12, 16, 0.8);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    width: 90%;
    max-width: 50rem;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    /* Custom scrollbar for modal */
}

.modal-content::-webkit-scrollbar {
    width: 0.5rem;
}
.modal-content::-webkit-scrollbar-thumb {
    background: var(--cyan);
    border-radius: 1rem;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--magenta);
}

.modal-step {
    display: none;
    animation: fadeInStep 0.4s ease forwards;
}

.modal-step.active {
    display: block;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(1rem); }
    to { opacity: 1; transform: translateY(0); }
}

/* Form Elements */
.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 0.1rem solid var(--glass-border);
    border-radius: 0.8rem;
    color: var(--text-main);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 1rem rgba(0, 194, 232, 0.2);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 0.65rem auto;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 1.5rem;
    height: 1.5rem;
    accent-color: var(--cyan);
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-group label {
    cursor: pointer;
    font-size: 1.1rem;
}

.modal-nav {
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-md);
}

.btn-outline {
    background: transparent;
    border: 0.1rem solid var(--glass-border);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--cyan);
    background: rgba(0, 194, 232, 0.1);
    box-shadow: none;
}

/* Summary Details */
.summary-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.8rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    border-bottom: 0.1rem solid rgba(255,255,255,0.05);
    padding-bottom: 0.4rem;
}

.summary-label {
    color: var(--text-muted);
}

.summary-value {
    font-weight: 600;
}

/* Loader */
.loader {
    display: none;
    border: 0.3rem solid rgba(255,255,255,0.1);
    border-radius: 50%;
    border-top: 0.3rem solid var(--cyan);
    width: 2rem;
    height: 2rem;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .modal-nav {
        flex-direction: column-reverse;
        gap: 1rem;
    }
    
    .modal-nav button {
        width: 100%;
    }
}
