/* Root Variables */
:root {
    --black: #000000;
    --gold: #D4AF37;
    --gold-light: #F4E4B8;
    --white: #FFFFFF;
    --gray-dark: #1a1a1a;
    --gray-medium: #333333;
    --gray-light: #999999;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--transition-smooth);
}

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

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    background: #000000;
}

.logo-container {
    max-width: 90%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo {
    width: 100%;
    height: auto;
    max-width: 750px;
    object-fit: contain;
    animation: fadeInScale 1.2s var(--transition-smooth);
    border: none;
    outline: none;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Section Styles */
section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

/* Events Section */
.events {
    background: var(--gray-dark);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.event-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.4s var(--transition-smooth);
}

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

.event-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 1.5rem;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--gray-dark);
    transition: transform 0.6s var(--transition-smooth);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

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

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-info {
    padding: 0 1rem;
}

.event-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.event-date,
.event-venue {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

/* About Section */
.about {
    background: var(--black);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    font-size: 1.375rem;
    color: var(--gold-light);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 4rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.highlight-item {
    background: var(--gray-dark);
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s var(--transition-smooth);
}

.highlight-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.highlight-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.highlight-text {
    font-size: 1.125rem;
    color: var(--white);
    line-height: 1.8;
}

.events-list {
    list-style: none;
    padding: 0;
}

.events-list li {
    font-size: 1.125rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.events-list li::before {
    content: '•';
    color: var(--gold);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

.events-list strong {
    color: var(--gold-light);
}

/* Footer */
.footer {
    background: var(--black);
    padding: 3rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    color: var(--gray-light);
}

.social-icon-link svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s var(--transition-smooth);
}

.social-icon-link:hover {
    color: var(--gold);
    transform: translateY(-5px);
}

.footer-content p {
    font-size: 0.875rem;
    color: var(--gray-light);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-content {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .main-logo {
        max-width: 600px;
    }

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

    .event-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-logo {
        max-width: 400px;
    }

    .nav-links {
        gap: 1rem;
    }
}
