/* Algemene styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #eee;
}

/* Navigatie */
nav {
    background-color: #1a1a1a;
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 30px;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid #444;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

nav a:hover {
    color: #0ff;
    transform: scale(1.1);
}

/* Titel animatie */
h1 {
    text-align: center;
    margin-top: 50px;
    animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Afbeeldingen */
img {
    width: 80%;
    max-width: 700px;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 0 20px #000;
    transition: 0.4s;
}

img:hover {
    transform: scale(1.05);
}

/* Content blocks */
.container {
    width: 80%;
    max-width: 900px;
    margin: auto;
    margin-top: 40px;
    line-height: 1.6;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Specs tabel */
table {
    width: 60%;
    margin: 40px auto;
    border-collapse: collapse;
    background: #222;
}

table td {
    border: 1px solid #444;
    padding: 10px;
}

table tr:nth-child(even) {
    background: #333;
}

/* Parallax achtergrond */
.parallax {
    background-image: url('background.jpg'); /* verander naar je eigen afbeelding */
    min-height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Meer ruimte tussen secties */
.section {
    padding: 60px 20px;
}

/* Titel styling */
h2 {
    text-align: center;
    margin-top: 40px;
    color: #0ff;
}

/* YouTube embed */
.video {
    width: 80%;
    margin: 40px auto;
    display: block;
}

/* Plaatjes naast tekst */
.flex-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.flex-row img {
    width: 45%;
    border-radius: 10px;
}

.flex-column {
    flex: 1;
}

/* HERO SECTION */
.hero {
    height: 90vh;
    background-image: url('hero-emoto.jpg'); /* verander naar jouw foto */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    animation: fadeIn 2s ease-in-out;
}

.hero h1 {
    font-size: 60px;
    color: #0ff;
    text-shadow: 0 0 20px #00ffffaa;
    animation: glowPulse 3s infinite;
}

@keyframes glowPulse {
    0% { text-shadow: 0 0 10px #0ff; }
    50% { text-shadow: 0 0 25px #0ff; }
    100% { text-shadow: 0 0 10px #0ff; }
}

.hero p {
    font-size: 24px;
    color: white;
    max-width: 800px;
    margin: 20px auto;
}

.hero button {
    padding: 15px 35px;
    background-color: #0ff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.hero button:hover {
    transform: scale(1.1);
    background-color: #00b3b3;
}

/* ANIMATED E-MOTO GALLERY */
.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
	margin: 60px auto;
}

.gallery img {
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 15px 20px #000;
    transition: 0.5s;
}

.gallery img:hover {
    transform: scale(1.08) rotate(1deg);
    box-shadow: 0 25px 30px #000;
}

/* FLOATING ICONS */
.floating-icons img {
    width: 120px;
    position: absolute;
    opacity: 0.7;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.icon1 { top: 10%; left: 5%; animation-delay: 0s; }
.icon2 { top: 20%; right: 7%; animation-delay: 1s; }
.icon3 { bottom: 15%; left: 10%; animation-delay: 2s; }



