/* ==========================================================================
   LOKALE LETTERTYPES ACTIVEREN (@font-face)
   ========================================================================== */

/* |====================================================
   | Lettertype » ORBITRON  (voor GuitarJan.com logo)  |
   |==================================================== */
/* --- Orbitron --- */
@font-face {
    font-family: 'Orbitron';
    src: url('Orbitron/orbitron-v25-latin-regular.woff2') format('woff2'),
         url('Orbitron/Orbitron.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Orbitron';
    src: url('Orbitron/Orbitron Bold.ttf') format('truetype'),
         url('Orbitron/orbitron-bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* |===========================================
   | Lettertype » CALIBRI  (Basis lettertpye) |
   |=========================================== */
/* --- Calibri --- */
@font-face {
    font-family: 'Calibri';
    src: url('Calibri/Calibri.woff2') format('woff2'),
         url('Calibri/calibri.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Calibri';
    src: url('Calibri/Calibri-Bold.woff2') format('woff2'),
         url('Calibri/Calibri-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Calibri';
    src: url('Calibri/Calibri-Italic.woff2') format('woff2'),
         url('Calibri/calibri-italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

/* |========================================================================|
   | Lettertype » ARDOUR  (Lettertype met schaduw) » Gebruiken voor "LICKZ" |
   >========================================================================| */
/* --- Ardour --- */
@font-face {
    font-family: 'Ardour';
    src: url('Ardour/Ardour3d.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* |================================================
   | Lettertype » BIONIC (voor FreebieZ logo)      |
   |=============================================== */
/* --- Bionic --- */
@font-face {
    font-family: 'Bionic';
    src: url('Bionic/12994-fontps.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Bionic';
    src: url('Bionic/Bionic Type Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* |================================================
   | Lettertype » LINEAR  (voor MuzicK logo)       |
   |================================================ */
   /* --- Linear --- */
   @font-face {
       font-family: 'Linear';
       src: url('Linear/linear-shadow-regular.ttf') format('truetype');
       font-weight: normal;
       font-style: normal;
   }
   
   /* We geven de bold-shadow variant een eigen, unieke font-family naam */
   @font-face {
       font-family: 'Linear-Shadow-Bold';
       src: url('Linear/linear-shadow-bold.ttf') format('truetype');
       font-weight: normal; /* We zetten dit op normal om browser-simulatie te voorkomen */
       font-style: normal;
   }
/* >================================================
   | Lettertype » MACEDONIA (voor ScrollZ logo)    |
   |================================================ */
/* --- Macedonia --- */
@font-face {
    font-family: 'Macedonia';
    src: url('Macedonia/Macedonia.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Macedonia-3D';
    src: url('Macedonia/Macedonia 3D Filled.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* |===========================================================================|
    | Lettertype » MEXICO  (Lettertype met schaduw) » Gebruiken voor "RHYTHMZ" |
    >==========================================================================| */
/* --- Mexico --- */
@font-face {
    font-family: 'Mexico';
    src: url('Mexico/Mexico Shadow-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Mexico';
    src: url('Mexico/Mexico Shadow-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* |===============================================================================|
   | Lettertype » TOURNEY (Tussentitels & Effectregels) » Gebruiken voor "CHORDZ"  |
   |===============================================================================| */
/* --- Tourney --- */
@font-face {
    font-family: 'Tourney';
    src: url('Tourney/Tourney-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Tourney';
    src: url('Tourney/Tourney-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Tourney-Condensed';
    src: url('Tourney/Tourney_Condensed-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



/* --- CSS Variabelen voor de applicatiekleuren --- */
:root {
    --color-green: #77ab56;
    --color-yellow: #fbdd7e;
    --color-cream: #FFFDD0;
    --color-red: #ec2d01;
    --color-blue: #87ceeb;
    --color-orange: #f2b949;
    --color-dark:  #222;
    --color-grey:  #3d3d3d;
    --color-lightgrey: #575757;
    --color-white: #ffffff;
}

/* --- Basis Reset & Layout --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Calibri', sans-serif; /* Gebruikt nu je lokale Calibri */
    color: var(--color-dark);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px; /* De maximale breedte van je website-inhoud */
    margin: 0 auto;    /* HET GEHEIM: 'auto' verdeelt de lege ruimte links en rechts exact gelijk, waardoor alles centreert */
    padding: 0 30px;   /* Zorgt dat de tekst op kleinere schermen niet tegen de rand plakt */
}

/* --- Menubalk (Sticky Top Strip) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-dark);
    color: var(--color-white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Gelijk aan de container in de bovenste laag */
    margin: 0 auto;    /* Centreert de menubalk-inhoud */
    padding: 15px 30px;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem; /* Iets vergroot voor betere leesbaarheid van de verschillende delen */
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.5px; /* Geeft het Orbitron font net wat meer ademruimte */
}

/* Kleur voor "Guitar" (Jouw rode steunkleur) */
.logo-guitar {
    color: #ec2d01;
}

/* Kleur voor "Jan" (Jouw groene hoofdkleur) */
.logo-jan {
    color: #77ab56;
}

/* Kleur voor ".com" (White Smokey kleur) */
.logo-com {
    color: whitesmoke;
    font-weight: normal; /* Optioneel: maakt de extensie iets subtieler dan de naam */
}

.color-split-freebiez {
    background: linear-gradient(to bottom, #87ceeb 50%, #f2b949 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-text-stroke: 0.5px black; /* Aangepast voor universele zichtbaarheid */
    font-weight: bold;
}

.color-split-muzick { 
background: linear-gradient(to bottom, #fbdd7e 57%, #77ab56 43%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
-webkit-text-stroke: 0.03px black;
font-weight: bold;
}


.color-split-scrollz {
    background: linear-gradient(to bottom, #fbdd7e 50%, #ec2d01 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-text-stroke: 0.5px black; /* Aangepast */
    font-weight: bold;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    font-size: 1.15rem; /* Lettertype van de knoppen vergroot */
    transition: color 0.2s ease-in-out;
}

/* Hover effect: knoppen worden nu groen bij muis-hover */
.nav-links a:hover {
    color: var(--color-green); /* #77ab56 via de variabele */
}

/* Versie & Datum Rechts in de kleur #f2b949 */
.nav-info {
    display: flex;
    gap: 15px;
    font-size: 0.95rem; /* Iets vergroot voor de balans met de grotere knoppen */
    font-weight: 500;
    color: var(--color-orange); /* #f2b949 via de variabele */
}

/* --- Dropdown Container --- */
.dropdown {
    position: relative;
}

/* De dropdown-lijst die naar beneden klapt */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* Klontert strak onder de menubalk */
    left: 0;
    background-color: var(--color-dark); /* Blijft dezelfde donkere kleur als de navbar */
    list-style: none;
    min-width: 200px; /* Iets verbreed voor de langere woorden */
    box-shadow: 0 8px 16px rgba(0,0,0,0.4); /* Luxe, diepe schaduw */
    padding: 5px 0;
    border-radius: 0 0 4px 4px; /* Subtiele afronding aan de onderkant */
    border-top: 2px solid var(--color-green); /* Strak groen accentlijntje aan de bovenkant van het menu */
}

/* De individuele links in het uitklapmenu */
.dropdown-content li a {
    display: block;
    padding: 10px 15px;
    font-size: 1.05rem; /* Iets compacter dan de hoofdknop voor een mooie hiërarchie */
    color: var(--color-white) !important; /* Dwingt de basiskleur wit af */
    font-weight: normal;
    transition: background-color 0.2s, color 0.2s;
}

/* Hover-effect BINNEN de dropdown: de tekst wordt GEEL en de achtergrond iets lichter grijs */
.dropdown-content li a:hover {
    background-color: #333333;
    color: var(--color-yellow) !important; /* Wordt prachtig geel bij aanwijzen */
}

/* Toon het menu zodra de muis over de dropdown-li beweegt */
.dropdown:hover .dropdown-content {
    display: block;
}

/* --- Scroll-correctie voor de sub-tabellen in de downloadsectie --- */
#downloads-hoofd,
#downloads-packages {
    scroll-margin-top: 85px; /* Iets ruimer dan 60px genomen voor een mooie witruimte onder de menubalk */
}



/* --- Content Strips (Inhoudvenster) --- */
.content-wrapper {
    margin-top: 60px; /* Ruimte voor de fixed menubalk */
    flex: 1;
}

.strip {
    padding: 25px 0;
    min-height: 40vh;
    display: flex;
    align-items: flex-start;
    scroll-margin-top: 60px; /* Pas de 60px aan naar de exacte hoogte van je menubalk */
}
/*
.strip h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}*/

/* Sectie specifieke achtergronden met jouw kleuren */
.bg-yellow { background-color: var(--color-yellow); }
.bg-cream  { background-color: var(--color-cream); }
.bg-white  { background-color: var(--color-white); }
.bg-blue   { background-color: var(--color-blue); }
.bg-green  { background-color: var(--color-green); color: var(--color-white); }
.bg-orange { background-color: var(--color-orange); }
.bg-dark   { background-color: var(--color-dark); }
.bg-grey   { background-color: var(--color-grey); }
.bg-lightgrey { background-color: var(--color-lightgrey); }

/* --- Drie-Koloms Footer Styling --- */
.main-footer {
    padding: 50px 0 20px 0;
    border-top: 1px solid #555; /* Subtiel scheidingslijntje aan de bovenkant */
    color: white;
    background-color: var(--color-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* De Grid die zorgt voor de 3 onafhankelijke kolommen */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Drie exact gelijke kolommen */
    gap: 40px; /* Ruimte tussen de kolommen */
    align-items: flex-start; /* Zorgt dat elke kolom onafhankelijk in hoogte kan groeien */
}

/* Kolom Titels */
.footer-column h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: #91bc76; /* Jouw gele kleur voor de koppen */
    margin-bottom: 20px;
    /* font-weight: bold; */
}

/* Lijstjes in de eerste kolom */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 3px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #77ab56; /* Wordt groen bij hover */
}

/* Copyright regel onderaan */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.95rem;
    color: #888;
}


h1 {                     /* Dit is een hoofdstuktitel   */
    font-size:36px;
    color:#77ab56; /* #009b77; */
    }
h2 {                     /* Dit is een sub-hoofdstuktitel       */
    font-size:32px; 
    color:#009b77;
    }                                  
h3 {                     /* Dit is een paragraaf-titel    */
    font-size:25px;
    color:#91bc76;
    }
h4 {                     /* Hoofdstuktitel voor een Pop-Up venster  */
    font-size:20px;
    color:white;
    }

.spacer {
    /* De spacer neemt de waarde van --s aan, met een fallback van 1rem */
    display: inline-block; /* Zorgt dat breedte werkt op dezelfde regel */
    width: var(--w, 1rem); /* Gebruikt de variabele --w */
    }
    
    /* --- Carrousel Layout --- */
    .carousel-section {
        width: 100%;
        padding: 40px 0;
        display: flex;
        justify-content: center;
    }
    
    .carousel-container {
        display: flex;
        align-items: center;
        gap: 30px;
        max-width: 1100px; /* Ruimte voor venster (900px) + pijlen + marges */
        width: 100%;
        justify-content: center;
    }
    
    /* Het venster begrensd op exact 50% van de maximale 1800px breedte */
    .carousel-window {
        width: 900px;
        height: 700px; /* 625px voor de SVG + extra ruimte voor het onderschrift */
        overflow: hidden;
        position: relative;
    }
    
    .carousel-slides {
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    /* Verberg standaard alle slides */
    .carousel-slide {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        height: 100%;
    }
    
    /* Toon alleen de actieve slide */
    .carousel-slide.active {
        display: flex;
    }
    
    /* De SVG screenshots gecentreerd en op maximaal 50% afmeting */
    .carousel-slide img {
        max-width: 900px;
        max-height: 625px;
        width: auto;
        height: auto;
        object-fit: contain; /* Zorgt dat kleinere SVG's netjes hun verhouding bewaren */
        box-shadow: 0 10px 25px rgba(0,0,0,0.5); /* Luxe schaduw achter de screenshots */
        border-radius: 4px;
    }
    
    /* Geel commentaar onder de afbeeldingen */
    .carousel-caption {
        color: #fbdd7e;
        font-size: 1.15rem;
        margin-top: 20px;
        text-align: center;
        font-weight: 500;
        width: 100%;
    }
    
    /* --- Gekleurde Navigatiepijlen --- */
    .carousel-btn {
        background-color: #77ab56; /* Jouw groene basiskleur */
        color: #3d3d3d; /* Donkergrijze pijl voor krachtig contrast */
        border: 3px solid #fbdd7e; /* Jouw gele steunkleur */
        font-size: 2rem;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease-in-out;
        user-select: none;
    }
    
    /* Kleuren wisselen om bij muis-hover (Geel met Groene rand) */
    .carousel-btn:hover {
        background-color: #fbdd7e;
        border-color: #77ab56;
        transform: scale(1.1); /* Subtiel groter worden bij aanwijzen */
    }
    
    .carousel-btn:active {
        transform: scale(0.95);
    }


    /* --- Download Tabellen Styling --- */
.download-table {
    width: 100%;
    border-collapse: collapse; /* Verwijdert dubbele randen */
    margin-top: 10px;
    font-size: 1.1rem;
    color: white;
    background-color: #2b2b2b; /* Iets donkerder dan #3d3d3d voor diepte */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border-radius: 6px;
    overflow: hidden; /* Zorgt dat de border-radius ook op de hoeken werkt */
}

/* Tabel Header */
.download-table th {
    background-color: #1a1a1a;
    color: #77ab56; /* Jouw groene hoofdkleur */
    text-align: left;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 1.15rem;
    border-bottom: 3px solid #91bc76;
}

/* Tabel Cellen */
.download-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #444;
    vertical-align: middle;
}

/* Zebra Striping: Om en om een lichtere/donkerdere achtergrond */
.download-table tbody tr:nth-child(even) {
    background-color: #333333;
}

/* Hover effect op de rijen */
.download-table tbody tr:hover {
    background-color: #3a3a3a;
}

/* Package Code Styling (PKG-01) */
.pkg-code {
    font-family: 'Calibri', sans-serif;
    font-weight: normal;
    color: whitesmoke;
}

/* Download Button Image */
.btn-download {
    height: 35px; /* Compacte hoogte voor in de tabel */
    width: auto;
    transition: transform 0.15s ease-in-out;
    cursor: pointer;
}
.btn-download:hover {
    transform: scale(1.1); /* Knoppen groeien subtiel bij hover */
}

/* --- Status Iconen --- */
.status-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1rem;
}
.status-yes {
    background-color: rgba(119, 171, 86, 0.2); /* Transparant groen */
    color: #77ab56; /* Fel groen vinkje */
}
.status-no {
    background-color: rgba(236, 45, 1, 0.2); /* Transparant rood */
    color: #ec2d01; /* Fel rood kruis */
}

/* --- Aanvraag Link Styling --- */
.request-link {
    color: #f2b949; /* Jouw oranje steunkleur */
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    padding: 6px 12px;
    border: 1px dashed #f2b949;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}
.request-link:hover {
    background-color: #f2b949;
    color: #222;
}


/* --- Installatiegids Grid --- */
.installatie-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Twee gelijke kolommen naast elkaar */
    gap: 40px;
    margin-top: 20px;
    color: white;
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Stappenplan Nummering */
.stappen-lijst {
    padding-left: 20px;
}
.stappen-lijst li {
    margin-bottom: 18px;
    list-style-type: none;
}
.stappen-lijst code {
    background-color: #222;
    padding: 2px 6px;
    border-radius: 4px;
    color: #fbdd7e; /* Geel accent voor bestanden/mappen */
    font-family: 'Courier New', Courier, monospace;
}
.stappen-lijst code.folder-highlight {
    color: #87ceeb; /* Blauw accent voor mappen */
}

/* --- Visuele Mappenboom --- */
.mappenboom-container {
    background-color: #2b2b2b; /* Dieptevlak */
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.folder-tree {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    color: #fff;
    line-height: 2;
}

/* Niveau-afstanden en hulplijntjes */
.tree-node {
    position: relative;
}
.lvl-1 { margin-left: 20px; color: #fbdd7e; }
.lvl-2 { margin-left: 50px; }
.lvl-3 { margin-left: 80px; color: #87ceeb; }
.lvl-4 { margin-left: 110px; color: #aaa; }

/* Subtiel commentaar achter de mappen */
.tree-comment {
    color: #77ab56; /* Jouw groen */
    font-size: 0.95rem;
    margin-left: 10px;
    font-family: 'Calibri', sans-serif;
    font-style: italic;
}

.cirkel {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: #77ab56;
    color: #fbdd7e;
    text-align: center;
    font-weight: bold;
  }


  /* --- Vast Gepositioneerde Pijl Omhoog --- */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999; /* Zorgt dat de pijl altijd over de content heen zweeft */
    
    /* Exact de stijl en kleuren van je carrousel-knoppen */
    background-color: #77ab56; /* Groene basis */
    color: #3d3d3d; /* Donkergrijze pijl */
    border: 3px solid #fbdd7e; /* Gele rand */
    
    font-size: 1.8rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-decoration: none;
    
    /* Pijl centreren en 90 graden draaien omhoog */
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg); 
    
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.2s ease-in-out;
}

/* Hover-effect: Kleuren wisselen dynamisch om (Geel met Groene rand) */
.scroll-top-btn:hover {
    background-color: #fbdd7e;
    border-color: #77ab56;
    /* Behoudt de rotatie én voegt de subtiele vergroting toe */
    transform: rotate(90deg) scale(1.1); 
}

.scroll-top-btn:active {
    transform: rotate(90deg) scale(0.95);
}



/* --- Verticale Gedraaide Tekst (Per Afbeelding) --- */
.vertical-text-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px; /* Reserveert een strakke breedte voor de gedraaide letters */
}

.vertical-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem; /* Iets compacter gemaakt zodat het mooi past bij 120px hoogte */
    font-weight:normal;
    color: #fbdd7e; /* Jouw gele applicatiekleur */
    letter-spacing: 1px;
    white-space: nowrap;
    
    /* Draait de tekst 90 graden naar links (van onder naar boven) */
    transform: rotate(-90deg);
    
    /* Zorgt dat het middelpunt van de tekst de spil is bij het draaien */
    transform-origin: center center; 
}
