/* ======================================
   WE! V1 HOMEPAGE
====================================== */

.hero-v1 {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 10;
    min-height: 70vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;

    padding: 2rem;
}

.hero-content h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: 1rem;
}

.hero-content p {
    max-width: 700px;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-content form {
    display: flex;
    gap: 0.75rem;
    width: min(700px,100%);
}

.hero-content input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
}

.hero-content button {
    padding: 1rem 1.5rem;
}

/* Intro */

.intro-section {
    padding: 3rem 1.5rem;
    background: #fff;
}

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

.intro-content p {
    font-size: 1.1rem;
}

/* What's Happening */

.events-track {
    display:flex;
    gap:2rem;
    overflow:hidden;
}

.events-track::-webkit-scrollbar {
    height: 8px;
}

.events-track::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 20px;
}

.event-card {

    min-width: 360px;

    background: #fff;

    padding: 2rem;

    border-radius: 12px;

    box-shadow: 0 2px 8px rgba(0,0,0,0.08);

    transition: transform .2s ease;

    flex-shrink: 0;
}

.event-card:hover {

    transform: translateY(-3px);

}

.event-card h3 {

    margin-top: 0;

    margin-bottom: 1rem;

    line-height: 1.3;
}

.event-meta {

    margin-bottom: 1.5rem;

    color: #555;

    line-height: 1.6;
}
/* Voices */

.section-dark {

    background: #f2efe8;

    color: #222;

}

.quote-box {

    max-width: 900px;

    margin: auto;

    background: #ffffff;

    border-radius: 16px;

    padding: 2.5rem 3rem;

    text-align: center;

    box-shadow: 0 4px 20px rgba(0,0,0,0.08);

}

.quote-text {

    font-size: 1.5rem;

    line-height: 1.7;

    margin-bottom: 1.5rem;

    color: #222;

}

.quote-author {

    color: #666;

    font-size: 1rem;

}

/* Cards */

.cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}

.card {
    background: white;
    border: 1px solid rgba(0,0,0,.08);
    padding: 2rem;
}

.small-note {
    color: #777;
    font-size: .9rem;
}

/* Footer */

footer {
    text-align: center;
}

/* Mobile */

@media (max-width:768px) {

    .hero-content form {
        flex-direction: column;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .event-card {
        min-width: 85%;
    }

    .hero-content {
        min-height: 500px;
    }

    .quote-box {
        padding: 2rem;
    }
}