/* ------------- Algemene achtergrondkleur voor de gehele website --------------- */
body {
    background-color: black; /* Zwarte achtergrondkleur */
    margin: 0;
    font-family: 'ABC Gravity Variable', sans-serif; /* Of een ander gewenst font */
    color: white; /* Zorgt ervoor dat tekst wit is tegen de zwarte achtergrond */
}
 

/* ----------------------- index HOMEPAGE ----------------------------- */
/* Algemene styling */
body {
    background-color: black;
    margin: 0;
    font-family: 'ABC Gravity Variable', sans-serif;
    overflow: hidden;
}

.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 80vw;
}

.image-ontwerpers {
    background-image: url(./images/eindcollage-getekend.png);
}

.homepage-image {
    max-width: 100%;
    max-height: 100%;
    height: auto;
}

/* Hover-zones styling */
.hover-zone {
    position: absolute;
    cursor: pointer;
}

a.hover-zone-1 { /* Zone 1 */
    top: 52%;
    left: 22%;
    width: 12%;
    height: 18%;
    z-index: 90;
}

a.hover-zone-2 { /* Zone 2 */
    top: 38%;
    right: 20%;
    width: 15%;
    height: 24%;
}

a.hover-zone-3 { /* Zone 3 */
    bottom: 0%;
    left: 50%;
    width: 8%;
    height: 23%;
}

/* Muisvolgende tekst */
.follow-text {
    position: absolute;
    color: white;
    font-size: 100px;
    font-weight: 400;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}


/* ----------------- Back-home button STYLING ------------ */
.back-home-button {
    position: fixed;
    width: 210px;
    height: 100px;
    text-align: center;
    top: 20px; /* Afstand van de bovenkant */
    left: 20px; /* Afstand van de linkerkant */
    color: white; /* Witte tekst */
    text-decoration: none; /* Geen onderstreping */
    font-size: 30px; /* Tekstgrootte */
    font-family: 'ABC Gravity Variable', sans-serif; /* Zorg dat het lettertype consistent is */
    padding: 62px 35px 0px 20px;    border: none; /* Geen standaard border */
    background-color: transparent; /* Transparante achtergrond */
    background-image: none; /* Geen afbeelding standaard */
    transition: background-image 0.3s ease; /* Alleen afbeelding verandert soepel */
    z-index: 10;
}

/* ----------------- Back-home button kader errond (hover) ---------- */ 
/* Hover-effect met kaderafbeelding */
.back-home-button:hover {
    background-image: url('images/Vorm-website.png'); /* Zet je eigen kaderafbeelding hier */
    background-size: cover; /* Zorg dat de afbeelding netjes binnen de knop past */
    background-repeat: no-repeat; /* Voorkom herhaling van de afbeelding */
    background-position: center; /* Centreer de afbeelding */
    background-color: none; /* Achtergrond blijft volledig transparant */
    /* padding: 40px 50px; Padding blijft consistent */
    font-size: 30px; /* Tekstgrootte blijft hetzelfde */
    font-family: 'ABC Gravity Variable', sans-serif; /* Lettertype blijft consistent */
}

/* Tekst blijft consistent en verandert niet */
.back-home-button {
    transform: none; /* Geen transformaties */
    line-height: 1.2; /* Zorg voor consistente lijnhoogte */
}

/* --------------- 
/* Algemene styling */
body {
    background-color: black;
    margin: 0;
    font-family: 'ABC Gravity Variable', sans-serif; 
    color: white; /* Zorg ervoor dat tekst zichtbaar is op een zwarte achtergrond */
}

h1, p, a {
    color: white; /* Wit maken van koppen, tekst en links */
}

a {
    text-decoration: none; /* Geen onderstreping van links */
}

/* Optioneel: centreren van inhoud */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}


/* ----------------------- eigenontwerpen PAGE ---------------------------------- */
/* Algemene styling */
body {
    background-color: black;
    margin: 0;
    font-family: 'ABC Gravity Variable', sans-serif; /* Of een ander gewenst font */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    overflow: hidden; /* Hoofdvenster scroll niet zichtbaar */
}

/* Scroll-container styling */
.scroll-container {
    background-color: black;
    width: 100%; /* Breedte van de container, maakt deze even breed als het scherm */
    height: 80vh; /* Hoogte van de container */
    overflow-x: scroll; /* Alleen horizontale scroll mogelijk */
    display: flex;
    flex-direction: row; /* Zet afbeeldingen naast elkaar (horizontaal) */
    gap: 20px; /* Ruimte tussen de afbeeldingen */
    padding: 10px;
    border: none; /* Optioneel: rand om de scrollcontainer */
    scroll-behavior: smooth; /* Zorgt voor vloeiend scrollen */
}

/* Styling voor afbeeldingen */
.scroll-container img {
    max-width: 100%; /* Zorgt ervoor dat de afbeelding niet breder wordt dan de container */
    height: auto;
    object-fit: cover; /* Houdt de verhouding van de afbeelding vast */
    border: none;
    border-radius: 10px; /* Optionele afgeronde hoeken */
}

/* Styling voor afbeeldingen */
.scroll-container img {
    max-width: 100%; /* Zorg dat afbeeldingen binnen de container blijven */
    height: auto;
    border: none; /* Optionele rand */
    border-radius: 10px; /* Optionele afgeronde hoeken */
    object-fit: cover; /* Houd verhouding consistent */
}


/* ----------------------- Tutorials PAGE ------------------------------ */
/* Algemene styling */
body {
    background-color: black;
    margin: 0;
    font-family: 'ABC Gravity Variable', sans-serif; /* Vervang door je gewenste font */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden; /* Zorgt ervoor dat zwevende woorden niet buiten de pagina scrollen */
}

/* Container voor de afbeelding en de woorden */
.floating-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Vergrote centrale afbeelding */
.center-image {
    width: 800px; 
    height: auto;
    border: none;
    border-radius: 10px;
    z-index: 1;
}

/* Zwevende woorden */
.floating-word {
    position: absolute;
    font-size: 40px;
    animation: float-word var(--animation-duration) infinite ease-in-out alternate;
    transform-origin: center;
    white-space: nowrap;
    color: white;
    pointer-events: auto; 
    z-index: 10;
}

/* Animatie voor zwevende woorden */
@keyframes float-word {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    50% {
        transform: translate(calc(var(--x-range)), -40px);
        opacity: 0.8;
    }
    100% {
        transform: translate(calc(-1 * var(--x-range)), 40px);
        opacity: 1;
    }
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 60px; /* Verplaats de knop iets lager */
    right: 20px; /* Houd hem rechts uitgelijnd */
    z-index: 15;
}

/* Dropdown-knop */
.dropdown-button {
    background-color: black;
    color: white;
    font-size: 1.5rem;
    padding: 35px 56px;
    cursor: pointer;
    text-align: center;
    border: none;
    position: relative;
    font-family: 'ABC Gravity Variable', sans-serif;
}

/* Hovereffect voor de knop */
.dropdown-button:hover {
    background-image: url('images/Vorm-website.png'); /* Voeg de kaderafbeelding toe */
    background-size: cover; /* Laat de afbeelding de volledige knop vullen */
    background-repeat: no-repeat;
    background-position: center;
    color: transparent; /* Verberg tekst, zodat alleen het kader zichtbaar is */
}

/* Tekst in het hover-kader */
.dropdown-button:hover::after {
    content: 'MENU'; /* Voeg 'MENU' toe in het kader */
    position: absolute;
    top: 50%; /* Horizontaal centreren */
    left: 50%; /* Verticaal centreren */
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: white;
    font-family: 'ABC Gravity Variable', sans-serif;
    z-index: 20; /* Zorg ervoor dat de tekst bovenop blijft */
}

/* Dropdown-content */
.dropdown-content {
    display: none; /* Verborgen standaard */
    position: absolute;
    background-color: black;
    min-width: 200px;
    z-index: 15;
    border: 1px solid white; /* Een subtiele rand */
    margin-top: 10px; /* Plaats het menu een beetje lager onder de knop */
    border-radius: 5px; /* Optionele afronding van hoeken */
}

/* Links binnen het dropdown-menu */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 1.2rem;
}

/* Hovereffect voor links in het dropdown-menu */
.dropdown-content a:hover {
    background-color: gray; /* Geef een subtiele achtergrondkleur bij hover */
}

/* Submenu container */
.dropdown-submenu {
    position: relative; /* Belangrijk voor positionering van het submenu */
}

/* Submenu content */
.submenu-content {
    display: none; /* Verborgen standaard */
    background-color: black;
    border: 1px solid white; /* Optionele rand */
    border-radius: 5px;
    margin-top: 10px; /* Ruimte tussen de hoofdlink en het submenu */
}

/* Links in het submenu */
.submenu-content a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 1.1rem;
}

/* Hovereffect voor links in het submenu */
.submenu-content a:hover {
    background-color: gray;
}

/* Toon submenu bij hover over hoofditem */
.dropdown-submenu:hover .submenu-content {
    display: block; /* Maak het submenu zichtbaar */
}

/* Zorg dat de tekst van de hoofdoptie blijft */
.dropdown-submenu > a {
    cursor: default; /* Geen pointer, want er is geen link aan het hoofditem */
}


/* Zorg dat de body de achtergrond behoudt */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black; 
    height: 100vh; /* Volledige schermhoogte */
    overflow: hidden; /* Geen scrollbalken */
}

/* Hoverbare gebieden */
.hover-area {
    position: absolute;
    cursor: pointer;
     /* width: 30%; 
    height: 30%; */
    z-index: 2; /* Zorg dat de hovergebieden boven de hoofdafbeelding liggen */
    overflow: hidden;
}

/* ----------------- Ontwerpers PAGE ----------------------------- */
/* Specifieke gebieden */
.hover-1 {
    top: 10%;
    left: 7%;
    width: 29%;
    height: 40%;
}

.hover-2 {
    top: 55%;
    left: 25%;
    width: 30%;
    height: 40%;
}

.hover-3 {
    top: 70%;
    left: 70%;
    width: 30%;
    height: 30%;
}

.hover-4 {
    top: 7%;
    left: 65%;
    width: 30%;
    height: 45%;
}

/* ---------------- Fra-Gille, W&H, LoreVanKeer & Bobby PAGE -------------- */

#ontwerper-page .page-title {
    text-align: right;
    font-size: 4rem;
    color: white;
    margin: 0 5vw;
}

#ontwerper-page .page-text {
    text-align: left;
    margin-left: 2vw;
    margin-right: 2vw;
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
}

/* -------------- Arrow-button to go to previous PAGE --------------- */
.back-arrow {
    position: fixed;
    top: 94%;
    left: 91px;
    transform: translateY(-50%);
    z-index: 1000;
  }
  
  .back-arrow a img {
    width: 77px;
    height: 50px;
    object-fit: contain;
  }
  

  /* -------------- Styling om YouTube link toe te voegen aan woorden -------------- */
.custom-link-container {
    z-index: 9999999;
  }

.custom-link-container a {
  color: white; /* Blauwe tekstkleur */
  text-decoration: none; /* Geen onderstreping */
  font-weight: bold; /* Vetgedrukte tekst */
  font-size: 2.5rem; /* grootte van de tekst */ 
}

.custom-link-container a:hover {
  /* text-decoration: underline; Onderstreping bij hover */
  color: lightgray; 
}


.silver-link-container  a  {
color: white;
text-decoration: none;
font-weight: bold;
font-size: 2.5rem;
margin-bottom: 50px;
}


/* ----------- Styling afbeelding bezel PAGE ------- */ 
.custom-bezel-image {
    width: 35vw;
    height: auto;
    position: absolute;
    top: 90px;
    right: 68px;
}

/* ------------- Styling mold PAGE -------- */
.custom-mold-image {
    width: 35vw;
    height: auto;
    position: absolute;
    top: 200px;
    right: 28px;
}
 
/* ------------- Styling afbeelding soldering PAGE -------- */
.custom-soldering-image {
    width: 30vw;
    height: auto;
    position: absolute;
    top: 300px;
    right: 5px;
}

/* ------------- Styling afbeelding silver PAGE -------- */
.custom-silver-image {
    width: 35vw;
    height: auto;
    position: absolute;
    top: 90px;
    right: 5px;
}

.tutorial-image-container {
    width: 100%;
    height: auto;
}

.tutorial-image-container img {
    display: block;
}

.tutorial-image-container img.align-left {
    margin-left: 0;
    margin-right: auto;
}
.tutorial-image-container img.align-center {
    margin-left: auto;
    margin-right: auto;
}
.tutorial-image-container img.align-right {
    margin-left: auto;
    margin-right: 0;
}
