/* ===================== */
/* ALGEMENE STIJLEN (OVERGENOMEN VAN HOMEPAGE) */
/* ===================== */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8faff; /* lichte achtergrond zoals homepage */
  color: #003366;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/* ===================== */
/* NAVBAR (MENUBALK) */
/* ===================== */
/* Navigation */
:root {
    --primary: #4f46e5;
    --primary-light: #818cf8;
    --primary-dark: #3730a3;
    --accent: #14b8a6;
    --accent-2: #f59e0b;
    --text: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.8);
}
/* NAVBAR (MENUBALK) - FIXED */
/* ===================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: -0.5px;
}

.logo-img {
    max-height: 45px;
    width: auto;
    display: block;
}

.nav-list a {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  color: white;
  transition: all 0.3s ease;
  position: relative;
}

.nav-list a:hover {
  color: var(--primary-light);
}

.nav-list a::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.nav-list a:hover::after {
  transform: scaleX(1);
}
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text);
    cursor: pointer;
    font-weight: 300;
}

/* ===================== */
/* FORMULIER SCHADEN MELDEN */
/* ===================== */
.schade-melden {
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
    margin-top: 80px; /* ← Voor fixed nav */
}

.schade-content {
    max-width: 800px;
    width: 100%;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.schade-content h2 {
    font-family: 'Inter', sans-serif; /* ← Zelfde als homepage */
    font-weight: 700; /* ← Niet 900 */
    color: #003366;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.schade-content p {
    margin-bottom: 2rem;
    color: #003366cc;
    font-weight: 300; /* ← DUN */
}

form.schade-form .form-group {
  margin-bottom: 1.5rem;
}

form.schade-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

form.schade-form input,
form.schade-form select,
form.schade-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid #cce0ff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form.schade-form input:focus,
form.schade-form select:focus,
form.schade-form textarea:focus {
  border-color: #66a3ff;
  box-shadow: 0 0 5px rgba(102, 163, 255, 0.5);
  outline: none;
}

form.schade-form button {
  background-color: #0066cc;
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form.schade-form button:hover {
  background-color: #004c99;
}

.form-message {
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}
* Tiles Section */
.tiles {
    padding: 30px 20px;
    background: #f8f9fa;
    text-align: center;
}

.tiles-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.tile {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
}

.tile h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #003087;
}

.tile p, .tile li {
    font-size: 14px;
    margin-bottom: 10px;
}

.tile ul {
    list-style: none;
}

.tile ul li {
    padding-left: 20px;
    position: relative;
}

.tile ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
}

.tile a {
    color: #007bff;
    text-decoration: none;
}

.tile a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 30px 20px;
    background: #f8f9fa;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #003087;
}

.contact p {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-options {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.contact-options li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.contact-options li::before {
    content: "📞";
    position: absolute;
    left: 0;
    color: #007bff;
}

.contact-options a {
    color: #007bff;
    text-decoration: none;
}

.contact-options a:hover {
    text-decoration: underline;
}
/* ===================== */
/* FOOTER (OVERGENOMEN VAN HOMEPAGE) */
/* ===================== */
footer {
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 3rem 1.5rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand img {
    max-height: 90px;
    width: auto;
    margin: 0 auto 1rem;
    display: block;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.8;
    text-align: center;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    /* MENUBALK MOBIEL */
    .hamburger {
        display: block;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--glass);
        backdrop-filter: blur(20px);
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin: 0.5rem 0;
    }

    .nav-list a {
        font-size: 1rem;
        display: block;
        padding: 0.5rem 1rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    /* FOOTER MOBIEL */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-brand img {
        max-height: 70px;
    }

    footer {
        padding: 2rem 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo-img {
        max-height: 35px;
    }
  * Tiles Section */
.tiles {
    padding: 30px 20px;
    background: #f8f9fa;
    text-align: center;
}

.tiles-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.tile {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
}

.tile h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #003087;
}

.tile p, .tile li {
    font-size: 14px;
    margin-bottom: 10px;
}

.tile ul {
    list-style: none;
}

.tile ul li {
    padding-left: 20px;
    position: relative;
}

.tile ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
}

.tile a {
    color: #007bff;
    text-decoration: none;
}

.tile a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 30px 20px;
    background: #f8f9fa;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #003087;
}

.contact p {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-options {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.contact-options li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.contact-options li::before {
    content: "📞";
    position: absolute;
    left: 0;
    color: #007bff;
}

.contact-options a {
    color: #007bff;
    text-decoration: none;
}

.contact-options a:hover {
    text-decoration: underline;
}

}









