:root {
    --primary-color: #FF6B00; /* Tix orange */
    --primary-hover: #E65A00;
    --accent-color: #CCFF00; /* Jedevent neon-ish accent */
    --secondary-color: #111111; /* Darker black */
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #FFFFFF;
    --background-alt: #F5F5F5;
    --border-color: #E0E0E0;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --container-width: 1200px;
    --spacing-unit: 1rem;
    --hero-bg: #0A0A0A; /* Dark hero background */
    --hero-text: #FFFFFF;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Header */
.header {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px; /* Fully rounded */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    font-family: var(--font-main);
}

.btn-text {
    background: transparent;
    color: var(--text-color);
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.25);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255,255,255,0.3);
    color: white;
}

.btn-outline:hover {
    border-color: white;
    background-color: rgba(255,255,255,0.1);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background-color: var(--hero-bg);
    color: var(--hero-text);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern/gradient */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px; /* Constrain width for centered layout */
}

.hero-tagline {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    background: rgba(255, 107, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    width: 100%;
}

/* Popular Events Section */
.popular-events {
    padding: 6rem 0;
    background-color: var(--background-alt);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.center-header {
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.event-image {
    height: 200px;
    background-color: #ddd;
    background-image: linear-gradient(45deg, #f3f3f3 25%, #e6e6e6 25%, #e6e6e6 50%, #f3f3f3 50%, #f3f3f3 75%, #e6e6e6 75%, #e6e6e6 100%);
    background-size: 20px 20px;
}

.event-details {
    padding: 1.5rem;
}

.event-date {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.event-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.event-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-price {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--background-alt);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    padding: 2.5rem;
    border-radius: 24px;
    background-color: white;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.08);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    padding: 5rem 0;
    background-color: white;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .nav {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Authentication Pages - Dark Theme */
.auth-container-dark {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background-color: #050505; /* Very dark background */
}

.auth-card-dark {
    background: #0A0A0A; /* Slightly lighter card background */
    padding: 3rem 2.5rem;
    border-radius: 24px;
    width: 100%;
    max-width: 450px;
    border: 1px solid #1A1A1A;
}

.auth-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -1px;
}

.auth-title-dark {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-subtitle-dark {
    color: #888;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.form-label-dark {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #CCC;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.form-input-dark {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: transparent;
    border: 1px solid #333;
    border-radius: 50px; /* Fully rounded */
    font-family: var(--font-main);
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.form-input-dark:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 1px var(--accent-color);
}

.form-input-dark::placeholder {
    color: #555;
}

.password-input-wrapper {
    position: relative;
}

.show-password-btn {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
}

.show-password-btn:hover {
    color: white;
}

.btn-accent {
    background-color: #1A1A1A;
    color: var(--accent-color);
    border: 1px solid #333;
}

.btn-accent:hover {
    background-color: #222;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(204, 255, 0, 0.1);
}

.btn-rounded {
    border-radius: 50px;
    padding: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.auth-footer-dark {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.auth-link-dark {
    color: white;
    font-weight: 600;
    margin-left: 0.25rem;
}

.auth-link-dark:hover {
    color: var(--accent-color);
}

.forgot-password-dark {
    color: #888;
    font-size: 0.85rem;
    font-weight: 500;
}

.forgot-password-dark:hover {
    color: white;
}

.legal-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.8rem;
}

.legal-links a {
    color: #555;
}

.legal-links a:hover {
    color: #888;
}
