:root {
  --blue1: #7C83FB;
  --blue2: #7CB6FB;
  --blue3: #7C9CFB;
  --blue4: #8E7CFB;
  --blue5: #A87CFB;
  --blue6: #472f75;
  --blue7: #afd6fe; 
  --blue8: #264473; 
  --blue9: #e1e8f4; 
  --silver: #C0C0C0;
  --text: #333;
  --hover: #ffffff;
  --lila: #c5d5ff;
  --green: #215356;
  --font: 'Poppins', sans-serif;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--blue9);
  color: var(--text);
}



.navbar {
    display: flex;
    /* Verdeel de ruimte tussen Links, Logo en Rechts */
    justify-content: space-between; 
    align-items: center;
    background-color: var(--blue9);
    padding: 0.5rem 2rem; /* Grotere padding aan de zijkanten */
    top: 0;
    z-index: 2000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Navigatie Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem; 
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--blue8);
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: block; /* Zorgt voor het volledige klikgebied */
}

.nav-links a:hover {
    background-color: var(--hover);
    color: var(--blue6);
    border: 2px solid var(--blue6);
}

/* Logo en Zoekbalk */
.logo-wrapper {
    flex-shrink: 0; /* Voorkom dat het logo krimpt */
}

.logo-img {
    max-height: 120px;
    height: auto;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
    margin: 0; /* Verwijder de onnodige marge */
}

.logo-img:hover {
    transform: scale(1.0) translateY(-5px);
}

/* Rechterkant - Groepering Zoek, Home, Cart */
.right-side-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem; 
}

/* Zoekbalk Wrapper */
.search-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--blue7);
    border-radius: 25px;
    padding: 5px 10px;
    background-color: var(--hover);
    width: fit-content;
    box-shadow: 0 0 8px rgba(var(--blue4), 0.3);
}

.search-bar {
    border: none;
    outline: none;
    font-size: 16px;
    padding: 10px;
    width: 200px;
    background-color: transparent;
}

.search-button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.search-icon {
    width: 20px;
    height: 20px;
    color: var(--blue8);
    transition: color 0.3s;
}

.search-button:hover .search-icon {
    color: var(--blue4); 
}

/* Home en Cart Iconen */
.home-icon img,
.cart-icon img {
    height: 45px;
    display: block;
    transition: transform 0.3s ease;
}

.home-icon img:hover,
.cart-icon img:hover {
    transform: scale(1.1);
}

/* Submenu's */
.submenu-container {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    background-color: var(--blue9);
    border: 1px solid var(--blue7);
    padding: 1rem 0; /* Verticale padding, horizontale padding door li */
    list-style: none;
    margin: 0;
    z-index: 100;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    border-radius: 5px;
}

.submenu li {
    margin: 0;
}

.submenu a {
    text-decoration: none;
    color: var(--blue8);
    font-weight: normal;
    padding: 0.5rem 1.5rem; /* Zorgt voor het klikgebied binnen de lijst */
}

.nav-item:hover .submenu {
    display: block;
}

/* Sub-Submenu Styling (Webshop) */
/* Vereist dat de <li> van de hoofditems in het submenu ook position: relative; krijgt */
.submenu li {
    position: relative; 
}

.sub-submenu {
    display: none;
    position: absolute;
    left: 100%; /* Plaats het rechts naast het hoofditem */
    top: 0;
    background-color: var(--blue7); /* Andere achtergrondkleur voor onderscheid */
    border: 1px solid var(--blue6);
    padding: 0.5rem 0;
    list-style: none;
    min-width: 150px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.submenu li:hover .sub-submenu {
    display: block;
}

.sub-submenu a {
    color: var(--blue8);
}

.sub-submenu a:hover {
    background-color: var(--lila);
}


/* Video en login */
.video-section {
  position: relative;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 1. DE BELANGRIJKSTE WIJZIGING: DE HOOFDCONTAINER */
/* De oude .login-form stijlen gaan nu naar .login-container */
.login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* Achtergrond, padding, afgeronde hoeken en schaduw gelden nu voor de hele container */
    background-color: rgba(230, 227, 236, 0.85);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);

    /* BELANGRIJK: Gebruik Flexbox om de twee formulieren naast elkaar te zetten */
    display: flex;
    justify-content: space-between; /* Geeft ruimte tussen de kolommen */
    align-items: flex-start; /* Zorgt dat elementen bovenaan beginnen */
    width: 650px; /* VERHOOGDE BREEDTE om ruimte te bieden aan twee kolommen */
}

/* 2. STIJL VOOR HET STANDAARD FORMULIER (Linkerkolom) */
.form-standaard {
    /* Neem de stijlen over die eerder op .login-form stonden, maar nu voor de linkerhelft */
    text-align: center;
    padding-right: 30px; /* Zorgt voor ruimte voor de scheidingslijn */
    /* De breedte instellen, bijvoorbeeld de helft van de container */
    width: 50%; 
}

/* 3. STIJL VOOR HET SOCIALE FORMULIER (Rechterkolom) */
.form-sociaal {
    /* De Scheidingslijn wordt toegevoegd aan de linkerkant van deze div */
    border-left: 2px solid rgba(150, 150, 150, 0.5); /* Verticale lijn (lichtere kleur) */
    padding-left: 30px; /* Ruimte tussen de lijn en de knoppen */
    width: 50%; 
    display: flex; /* Zorgt dat h2 en knoppen onder elkaar staan */
    flex-direction: column;
    align-items: stretch;
    text-align: center;
}

/* NIEUW: Maak de knop een flex-container om de inhoud te centreren */
.form-sociaal .social-button {
    display: flex;
    justify-content: center; /* Centreer de inhoud horizontaal */
    align-items: center; /* Centreer de inhoud verticaal (indien nodig) */
    padding: 10px; /* Optioneel: voeg wat padding toe aan de knop */
}

/* NIEUW: Stijl om de afbeelding te verkleinen */
.form-sociaal .logo-img {
    width: 24px; /* Stelt de breedte in */
    height: 24px; /* Stelt de hoogte in om een vierkant te garanderen */
}

/* 4. BESTAANDE STIJLEN AANPASSEN ZODAT ZE ALLEEN HET STANDAARD FORMULIER BEÏNVLOEDEN */
/* Gebruik .form-standaard h1 in plaats van .login-form h1 */
.form-standaard h1 {
    margin-bottom: 20px;
    font-size: 30px;
    color: var(--blue8);
    font-family: 'Montserrat', sans-serif;
}

/* Stijl voor de Sociale sectie titel */
.form-sociaal h2 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--blue8);
    font-family: 'Montserrat', sans-serif;
}

/* Gebruik .form-standaard input in plaats van .login-form input */
.form-standaard input {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

/* Gebruik .form-standaard button in plaats van .login-form button */
.form-standaard button {
    background-color: var(--blue10);
    color: var(--blue8);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    width: 100%; /* Zorgt dat de knop de volledige breedte van de kolom inneemt */
    margin-top: 10px;
}

.form-standaard button:hover {
    background-color: var(--blue9);
}


/* 5. NIEUWE STIJL VOOR DE SOCIALE KNOPPEN */
.social-button {
    padding: 12px;
    margin: 8px 0;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s;
    
    /* Basisstijlen voor sociale knoppen */
    color: white; /* Tekstkleur wit */
    font-weight: bold;
}

/* Specifieke kleuren voor de sociale knoppen (als voorbeeld) */
.social-button.google {
    background-color: #ca8b87; /* Rood */
}
.social-button.google:hover {
    background-color: #a86c67;
}

.social-button.facebook {
    background-color: #6386cc; /* Blauw */
}
.social-button.facebook:hover {
    background-color: #365899;
}

.social-button.apple {
    background-color: #929292; /* Zwart */
}
.social-button.apple:hover {
    background-color: #767676;
}


/* Branding blok animatie */
#branding-block {
  transform: translateY(-100%);
  animation: brandingSlideDown 0.6s ease-out forwards;
}

@keyframes brandingSlideDown {
  to {
    transform: translateY(0);
  }
}

/* ------------------------------------------------ */
/* 4. FOOTER STYLING */
/* ------------------------------------------------ */

footer {
    text-align: center;
    padding: 2rem 0;
    background-color: var(--blue9);
    color: var(--blue8);
    margin-top: 40px;
    width: 100%;
    font-size: 0.9em;
}

footer p {
    margin: 5px 0;
}

/* Styling voor Social Media iconen in de footer */
footer img {
    height: 40px;
    width: 40px;
    margin: 0 10px;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

footer a:hover img {
    transform: scale(1.1);
}