body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #0b0d10;
    color: #f3e7d3;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.logo {
    height: 60px;
}

nav a {
    color: #f3e7d3;
    margin-left: 20px;
    text-decoration: none;
}

/* HERO */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: url('../images/hero.jpg') center/cover;
}

.title {
    font-family: 'Bebas Neue';
    font-size: 100px;
}

.subtitle {
    color: #f77f00;
    letter-spacing: 5px;
}

/* BUTTON */
.join-btn {
    margin-top: 20px;
    padding: 15px 25px;
    background: #c1121f;
    border: none;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

.join-btn:hover:{
    content: "  → Olet vain yhden klikkauksen päässä";
    font-size: 12px;
    opacity: 0.8;
}

/* MEMBERS */
.member-grid {
    display: flex;
    gap: 20px;
}

.member img {
    width: 100%;
}

/* GALLERY */
.carousel img {
    max-height: 50vh;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: black;
    justify-content: center;
    align-items: center;
}