/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}


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

/* Hero Section */
.hero {
    background: #1a1a1a;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.7;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border: 1px solid white;
    font-weight: 300;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cta-button:hover {
    background: white;
    color: #1a1a1a;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f8f8;
}

.about h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-top: 40px;
}

.about-item {
    text-align: center;
    padding: 0;
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    opacity: 0.6;
}

.about-item h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-item p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 280px;
    margin: 0 auto;
}

/* Events Section */
.events {
    padding: 100px 0;
    background: white;
}

.events h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.events-description {
    text-align: center;
    font-size: 1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.event-placeholder {
    display: flex;
    justify-content: center;
}

.event-card {
    background: #f8f8f8;
    padding: 50px 40px;
    border: 1px solid #e8e8e8;
    text-align: center;
    max-width: 400px;
}

.event-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.event-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.event-note {
    font-style: italic;
    color: #999;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Updates Section */
.updates {
    padding: 100px 0;
    background: #f8f8f8;
}

.updates h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.updates-description {
    text-align: center;
    font-size: 1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

#email {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    background: white;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

#email:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-button {
    background: #1a1a1a;
    color: white;
    border: 1px solid #1a1a1a;
    padding: 12px 25px;
    font-size: 0.9rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.submit-button:hover {
    background: white;
    color: #1a1a1a;
}

.success-message {
    text-align: center;
    color: #666;
    font-weight: 300;
    margin-top: 20px;
    padding: 15px;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer p {
    margin: 0 0 10px 0;
    font-weight: 300;
    opacity: 0.7;
    font-size: 0.9rem;
}

.content-section {
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: -0.01em;
    text-align: center;
}

.content-section h3 {
    font-size: 1.3rem;
    margin: 40px 0 15px 0;
    color: #1a1a1a;
    font-weight: 400;
}

.content-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }


    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-group {
        flex-direction: column;
    }

    .submit-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about h2,
    .events h2,
    .updates h2 {
        font-size: 2rem;
    }

    .about-item,
    .event-card {
        padding: 25px 15px;
    }
}

