@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --color-bg: #0a0a0a;
    --color-text: #ffffff;
    --color-accent: #D4AF37;
    /* Gold */
    --color-accent-subtle: #8B0000;
    /* Subtle Red */
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* Mobile Touch Targets */
@media (max-width: 768px) {

    a,
    button,
    [role="button"] {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Reset display for links that shouldn't be flex centered by default if needed, 
       but for now this ensures hit area. We might need to override for specific text links */
    p a {
        display: inline;
        min-height: auto;
        min-width: auto;
    }

    /* Section spacing for mobile */
    section {
        padding: 3rem 1rem;
    }
}

/* Custom Utilities */
.text-gold {
    color: var(--color-accent);
}

.bg-gold {
    background-color: var(--color-accent);
}

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

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

/* Section Spacing */
section {
    padding: 5rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hide scrollbar for clean look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* --- Hover Glow Effects --- */
.hover-glow-blue:hover {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
    border-color: rgba(0, 255, 255, 0.6) !important;
}

.hover-glow-green:hover {
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.4);
    border-color: rgba(0, 255, 0, 0.6) !important;
}

.hover-glow-amber:hover {
    box-shadow: 0 0 25px rgba(255, 191, 0, 0.4);
    border-color: rgba(255, 191, 0, 0.6) !important;
}

.hover-glow-purple:hover {
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
    border-color: rgba(255, 0, 255, 0.6) !important;
}

/* Animations & Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delays for stagger items */
.stagger-item:nth-child(1) {
    transition-delay: 100ms;
}

.stagger-item:nth-child(2) {
    transition-delay: 200ms;
}

.stagger-item:nth-child(3) {
    transition-delay: 300ms;
}

.stagger-item:nth-child(4) {
    transition-delay: 400ms;
}

.stagger-item:nth-child(5) {
    transition-delay: 500ms;
}

.stagger-item:nth-child(6) {
    transition-delay: 600ms;
}

.stagger-item:nth-child(7) {
    transition-delay: 700ms;
}

.stagger-item:nth-child(8) {
    transition-delay: 800ms;
}

/* Desktop Hover Scales */
@media (hover: hover) {
    .hover-scale {
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hover-scale:hover {
        transform: scale(1.05);
    }
}

/* --- Unified Event Card Styles --- */
.event-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-8px);
}

.event-card-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    background-color: #1a1a1a;
    transition: transform 0.5s ease;
}

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

.event-card h4 {
    color: var(--color-text);
    transition: color 0.3s ease;
}

.event-card:hover h4 {
    color: white;
}