/* =========================
   FONTS
========================= */

@font-face {
    font-family: 'Isocteur';
    src: url('/assets/fonts/isocteur.woff2') format('woff2'),
         url('/assets/fonts/isocteur.woff') format('woff'),
         url('/assets/fonts/isocteur.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body {
    margin: 0;
    background: #111;
    color: #fff;
    font-family: Helvetica, Arial, sans-serif;
}

/* =========================
   HERO
========================= */

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100vh;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
    pointer-events: none;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 5;
}

.hero-content {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.logo {
    width: 120px;
    margin-bottom: 10px;
}

/* =========================
   SECTIONS
========================= */

.section {
    padding: 100px 20px;
}

.section.dark {
    background: #000;
}

.narrow {
    max-width: 700px;
    margin: 0 auto;
}

/* =========================
   TYPOGRAPHY
========================= */

h1, h2 {
    font-family: 'Isocteur', sans-serif;
    letter-spacing: 2px;
}

h2 {
    margin-bottom: 40px;
}

p {
    color: #ccc;
}

/* =========================
   GRID
========================= */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* =========================
   CARDS
========================= */

.card-minimal {
    border: 1px solid #333;
    padding: 80px 20px;
    text-align: center;
    transition: 0.3s;
}

.card-minimal:hover {
    background: #111;
}

/* =========================
   EVENTS
========================= */

.event-card img {
    width: 100%;
    display: block;
}

/* =========================
   BUTTON
========================= */

.btn-light {
    border-radius: 0;
    padding: 12px 26px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .logo {
        width: 90px;
    }

    h2 {
        font-size: 22px;
    }
}
