/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    background-color: black;
}

/* Algemene stijl voor de pagina */
body {
    font-family: Arial, sans-serif;
}

/* Logo container */
.logo-container {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.logo {
    width: 200px;
    height: auto;
}

/* Navigatiebalk linksboven */
.nav-container {
    position: absolute;
    top: 50px;
    left: 10px;
    z-index: 5;
}

/* Navigatiebalk: ul horizontaal naast elkaar */
.nav-container nav ul {
    display: flex; /* Zorgt ervoor dat de items naast elkaar staan */
    list-style-type: none;
    padding: 0;
    gap: 15px; /* Ruimte tussen de navigatie-items */
}

/* Navigatie-items stijl */
.nav-container nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

/* Navigatie-item hover effect */
.nav-container nav ul li a:hover {
    text-decoration: underline;
}

/* Promo Banner stijlen */
.promo-banner {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
    position: relative;
    z-index: 10;
}

/* Video-container styling */
.video-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sectie styling */
.section {
    padding: 50px;
    margin: 20px;
    background-color: #000;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: white;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.section p {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 20px;
}

/* Flexbox container voor TimePieces categorieën */
.flex-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.flex-item {
    text-align: center;
    flex-basis: 30%;
    margin-bottom: 20px;
}

.category-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* FAQ accordion */
.accordion {
    background-color: black;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

.accordion:hover {
    background-color: #111;
}

.accordion:after {
    content: '\02795';
    font-size: 13px;
    float: right;
}

.active:after {
    content: "\2796";
}

.panel {
    padding: 0 18px;
    background-color: black;
    color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

/* Review sectie styling */
.reviews-section {
    background-color: #111;
    color: white;
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin: 20px;
    text-align: center;
}

.review-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

/* Individuele review styling */
.review-item {
    display: flex;
    align-items: center;
    background-color: #222;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: left;
    gap: 20px;
}

/* Styling voor klantfoto's */
.review-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%; /* Rond de foto's af */
    object-fit: cover;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

/* Review tekst en details */
.review-content {
    flex-grow: 1;
}

.review-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-author {
    font-weight: bold;
}

.review-stars {
    font-size: 18px;
    color: gold;
}


/* Footer stijlen */
footer {
    text-align: center;
    padding: 10px;
    background-color: #000;
    color: white;
}
