/* Root Variables */
:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --secondary-color: #c41e3a;
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --bg-card: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --text-dim: #808080;
    --border-color: rgba(212, 175, 55, 0.2);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f8e71c 100%);
    --gradient-dark: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.9) 100%);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.loader-content p {
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0000 0%, #330000 50%, #1a0000 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-gray);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-tagline {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--text-light);
    font-weight: 500;
    padding: 15px 30px;
    border: 2px solid var(--primary-color);
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-tagline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.hero-tagline:hover::before {
    left: 0;
}

.hero-tagline:hover {
    color: var(--bg-darker);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
}

/* Featured Event */
.featured-event {
    background: var(--bg-darker);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.featured-event-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.featured-event-image {
    position: relative;
    overflow: hidden;
}

.featured-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-event-image:hover img {
    transform: scale(1.05);
}

.featured-event-details {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-card) 100%);
}

.event-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--bg-darker);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    align-self: flex-start;
}

.featured-event-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
    margin-bottom: 20px;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-gray);
    font-size: 1rem;
}

.event-meta-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.event-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.event-contact {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.event-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--bg-darker);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.event-contact-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* Hosts Section */
.hosts-section {
    background: var(--bg-card);
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.host-card {
    background: var(--bg-dark);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.host-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
}

.host-card.placeholder::before {
    content: 'Coming Soon';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--bg-darker);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.host-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.host-card.placeholder .host-image {
    filter: grayscale(100%) blur(2px);
    opacity: 0.5;
}

.host-info {
    padding: 30px;
}

.host-name {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.host-bio {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1rem;
}

.host-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.host-contact:hover {
    color: var(--primary-color);
}

/* About Section */
.about-section {
    background: var(--bg-darker);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Events Grid */
.events-section {
    background: var(--bg-card);
}

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

.event-card {
    background: var(--bg-dark);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
}

.event-card-image {
    height: 400px;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.1);
}

.event-card-content {
    padding: 25px;
}

.event-card-title {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.event-card-date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.event-card-location {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* QR Code Section */
.qr-section {
    background: var(--bg-card);
    text-align: center;
}

.qr-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.qr-generator {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-dark);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.qr-display {
    min-height: 256px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.qr-display canvas {
    max-width: 100%;
    height: auto !important;
}

.qr-display.empty {
    background: var(--bg-darker);
    border: 2px dashed var(--border-color);
}

.qr-display.empty::before {
    content: 'QR Code will appear here';
    color: var(--text-dim);
    font-size: 1rem;
}

.qr-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.qr-btn {
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--bg-darker);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.qr-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

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

.qr-btn.download:hover {
    background: #a01828;
}

.qr-url {
    color: var(--text-gray);
    font-size: 0.9rem;
    word-break: break-all;
    padding: 15px;
    background: var(--bg-darker);
    border-radius: 8px;
    margin-top: 15px;
}

/* Contact Section */
.contact-section {
    background: var(--bg-darker);
    text-align: center;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--bg-darker);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.contact-btn.whatsapp {
    background: #25D366;
}

.contact-btn.whatsapp:hover {
    background: #1ea952;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer p {
    color: var(--text-dim);
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--primary-color);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 968px) {
    .featured-event-content {
        grid-template-columns: 1fr;
    }

    .featured-event-image {
        height: 400px;
    }

    .featured-event-details {
        padding: 40px 30px;
    }

    .hosts-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .hero {
        height: 50vh;
        min-height: 350px;
    }

    .featured-event-details {
        padding: 30px 20px;
    }

    .contact-methods {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-btn {
        justify-content: center;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: var(--bg-darker);
}

