/*
=== Project info ===
Project name: eetclub in English.
Start date: 01-Nov-2025.
release date:
*/
@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Small resetting */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* 🌐 Basisstijl */
body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: #000000;
  }
.index_body {

      background-image: url(achtergrond.jpg);
      height: 100vh;
      width: 100%;
      background-size: cover;
      background-position: center center;
}
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #C9C9C9;
    color: #000000;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #D1A700;
}

.menu-toggle {
    font-size: 1.5rem;
    background: none;
    border: none;
    color: black;
    cursor: pointer;
    display: none;
    margin-left: auto;
}

.nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav a {
    color: black;
    text-decoration: none;
    font-weight: 500;
}

/* 📱 Smartphones (tot 600px breed) */
@media (max-width: 600px) {
body {
    font-size: 14px;
    padding: 10px;
}

.container {
    flex-direction: column;
}
.menu-toggle {
    display: block;
}

.nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #0078d4;
    width: 100%;
    padding: 1rem 2rem;
}

.nav.open {
    display: block;
}

.nav ul {
    flex-direction: column;
    gap: 1rem;
}

nav {
    display: none;
}
}

@media (min-width: 601px) and (max-width: 900px) {
    body {
        font-size: 16px;
        padding: 10px; /* Verkleind van 20px */
        max-width: 100vw;
        overflow-x: hidden;
    }

    .container {
        flex-direction: column; /* Verander naar kolom voor smallere layout */
        width: 100%;
        max-width: 700px; /* Beperk breedte */
        margin: 0 auto; /* Centreer op scherm */
        padding: 0 1rem;
    }

    .site-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}

/* 💻 Laptops (901px – 1200px breed) */
@media (min-width: 901px) and (max-width: 1200px) {
body {
    font-size: 18px;
    padding: 30px;
}

.container {
    display: grid;
    grid-template-columns: 1fr 3fr;
}

nav {
    width: 250px;
}
}

/* 🖥️ Dashboards / Grote schermen (vanaf 1201px) */
@media (min-width: 1201px) {
body {
    font-size: 20px;
    padding: 40px;
}

.container {
    display: grid;
    grid-template-columns: 1fr 4fr;
}

nav {
    width: 300px;
}
}

/* 🌗 Dark mode ondersteuning */
@media (prefers-color-scheme: dark) {
body {
    background-color: #121212;
    color: #f0f0f0;
}

nav {
    background-color: #1f1f1f;
}

a {
    color: #90caf9;
}

.container {
    background-color: #1e1e1e;
}
}

/* 📐 Liggende modus */
@media (orientation: landscape) {
.container {
    flex-direction: row;
}
}
/* 📐 staande modus */
@media (orientation: portrait) {
.container {
    flex-direction: column;
}

}
/* End file */
