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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.9em;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 40px 80px;
    background: #000;
    overflow: hidden;
}

/* Image Trail Effect */
.trail-image {
    position: absolute;
    max-width: 400px;
    max-height: 400px;
    width: auto;
    height: auto;
    pointer-events: none;
    z-index: 5;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

.hero-content {
    text-align: center;
    z-index: 20;
    animation: fadeInUp 1.2s ease;
    position: relative;
}

.hero-title {
    font-size: 5em;
    color: #fff;
    font-weight: 300;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title-gif {
    max-width: 533px;
    width: 100%;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
    position: relative;
    z-index: 20;
    opacity: 1 !important;
}

.hero-subtitle {
    font-size: 1.5em;
    color: #fff;
    font-style: italic;
    letter-spacing: 3px;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, transparent 25%, #000 25%, #000 75%, transparent 75%);
    padding: 0 10px;
    display: block;
    line-height: 1.4;
}

.hero-tagline {
    font-size: 1.2em;
    color: #fff;
    letter-spacing: 2px;
    font-style: italic;
    background: linear-gradient(to bottom, transparent 25%, #000 25%, #000 75%, transparent 75%);
    padding: 0 10px;
    display: block;
    line-height: 1.4;
}

.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Image Trail Effect */
.trail-image {
    position: absolute;
    max-width: 200px;
    height: auto;
    pointer-events: none;
    z-index: 10;
    transform: translate(-50%, -50%);
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 3em;
    color: #fff;
    font-weight: 300;
    letter-spacing: 6px;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    background: #000;
    position: relative;
}

.about .about-content-full {
    position: relative;
    background: #000;
    padding: 60px 100px;
    margin: 0 auto;
    max-width: 100%;
}

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

.about-content p {
    font-size: 1.2em;
    color: #b8b8b8;
    margin-bottom: 25px;
    line-height: 1.8;
    font-style: italic;
}

.about-content-full {
    width: 100%;
    text-align: justify;
}

.about-content-full p {
    font-size: 2.25em;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
    font-style: italic;
    font-weight: 300;
    text-align: justify;
}

/* Hover Effects for Words */
.about-content-full span {
    display: inline-block;
    cursor: pointer;
    filter: blur(0px);
    opacity: 1;
    transition: none;
}

/* Events Section */
.events {
    background: #000;
    min-height: 300vh;
    position: relative;
}

/* 3D Scroll Gallery */
.scroll-gallery {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
    overflow: hidden;
}

.gallery-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.gallery-card {
    position: absolute;
    width: 400px;
    height: 550px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    opacity: 0.5;
    will-change: transform, opacity;
    transform-style: preserve-3d;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.card-title {
    font-size: 2em;
    color: #fff;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.card-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 5em;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    line-height: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8em;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Gallery Section */
.gallery {
    background: #0d0d0d;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(13, 26, 13, 0.6), rgba(26, 16, 0, 0.4));
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: scale(0.9);
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(45, 134, 89, 0.3);
}

/* Contact Section */
.contact {
    background: #000;
    text-align: center;
}

.contact-text {
    color: #b8b8b8;
    font-size: 1.2em;
    margin-bottom: 40px;
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-btn {
    color: #fff;
    border: 1px solid #fff;
    padding: 15px 40px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.social-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
    background: #0d0d0d;
    padding: 60px 40px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer p {
    color: #555;
    margin: 10px 0;
    letter-spacing: 1px;
}

.footer-tagline {
    font-style: italic;
    font-size: 0.9em;
}

/* Placeholder Styling */
.placeholder-text {
    color: rgba(212, 175, 55, 0.3);
    font-size: 1.2em;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    }
    50% {
        text-shadow: 0 0 40px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3em;
        letter-spacing: 6px;
    }

    .section-title {
        font-size: 2em;
    }

    .accordion-container {
        flex-direction: column;
        height: auto;
    }

    .accordion-item {
        height: 200px;
    }

    .accordion-item:hover {
        flex: 1;
        height: 400px;
    }

    .accordion-title {
        font-size: 1.8em;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 0.8em;
    }

    .container {
        padding: 0 20px;
    }
}
