:root {
    --bg-color: #060b13;
    --text-primary: #f0f4f8;
    --text-secondary: #a0aec0;
    --accent: #194e82;
    --accent-light: #2c72b8;
    --glass-bg: rgba(25, 35, 50, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    transition: all 4s ease;
}

.glow-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    animation: drift 15s infinite alternate;
}

.glow-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #0e1e33 0%, transparent 70%);
    animation: drift 20s infinite alternate-reverse;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
.hero {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
}

.tagline {
    font-family: 'Oswald', sans-serif;
    color: var(--accent-light);
    letter-spacing: 0.2em;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.text-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #87a5c5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Flyer Component */
.flyer-showcase {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    perspective: 1000px;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    width: 100%;
    max-width: 1000px;
}

.glass-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.7), 0 0 40px rgba(25, 78, 130, 0.3);
}

.flyer-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
}

/* Footer */
footer {
    width: 100%;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

.contact-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    flex: 1;
    justify-content: center;
}

.info-block svg {
    color: var(--accent-light);
    flex-shrink: 0;
}

.info-block p {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 3rem 1.5rem;
    }

    .glass-card {
        padding: 1rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-block {
        flex-direction: column;
        gap: 0.5rem;
    }
}