/* css/style.css */

/* Algemene Stijlen */
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

a {
    color: #1e90ff;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff6347; /* Helderdere kleur bij hover */
    text-decoration: none;
}

.card {
    background-color: #1e1e1e;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #ff6347; /* Helderdere accentkleur */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.form-control {
    background-color: #2c2c2c;
    border: 1px solid #444;
    color: #e0e0e0;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.form-control:focus {
    background-color: #3a3a3a;
    border-color: #ff6347; /* Helderdere focus kleur */
    color: #ffffff;
}

.btn-primary {
    background-color: #ff6347; /* Helderdere knopkleur */
    border-color: #ff6347;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff4500; /* Donkerdere tint bij hover */
    border-color: #ff4500;
}

footer ul li a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #1e90ff;
    text-decoration: underline;
}

.cookieNote456 {
    background-color: rgba(255, 255, 255, 0.95);
    color: #000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookieNote456 a {
    color: #1e90ff;
}

.cookieNote456 a:hover {
    color: #ff6347;
    text-decoration: underline;
}

/* Secties */
section {
    padding: 60px 0;
}

.section-icon {
    font-size: 3rem;
    color: #ff6347; /* Helderdere icon kleur */
    margin-bottom: 20px;
}

.carousel-item p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Navigatiebalk Onderrand */
.navbar {
    border-bottom: 4px solid #ff6347; /* Helderdere onderrand */
}

/* Carrousel Animaties */
.carousel-item {
    transition: transform 0.5s ease-in-out;
}

/* Responsiviteit */
@media (max-width: 768px) {
    .carousel-caption h5 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .section-title::after {
        width: 40px;
        height: 3px;
    }

    .form-control {
        font-size: 0.9rem;
    }

    .btn-primary {
        font-size: 0.9rem;
    }

    .carousel-item p {
        font-size: 1rem;
    }
}

/* Extra Styling voor Buttons in Cards */
.card-footer .btn {
    background-color: #1e90ff;
    border-color: #1e90ff;
}

.card-footer .btn:hover {
    background-color: #ff6347;
    border-color: #ff6347;
}

/* Verbeterde Typografie */
p {
    font-size: 1.05rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 300;
    color: #dcdcdc;
}

/* Sectie Achtergronden */
.bg-secondary {
    background-color: #1c1c1c !important; /* Donkere achtergrond voor secties */
}

.bg-light {
    background-color: #f8f9fa !important;
    color: #000 !important;
}

/* Hero Sectie Verbeteringen */
.hero-section {
    position: relative;
    color: #ffffff;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.map-responsive iframe {
    border-radius: 10px;
}

/* Toevoegen van een Gradient Overlay op Secties */
.section-overlay {
    background: linear-gradient(135deg, rgba(255, 99, 71, 0.8), rgba(30, 144, 255, 0.8));
    padding: 20px;
    border-radius: 10px;
}

/* Verbeterde Footer */
footer {
    padding: 40px 0;
}

footer p {
    margin: 0;
}

/* Animatie voor Cookie Acceptatie */
.cookie_accept {
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.cookie_accept:hover {
    background-color: #ff6347;
    border-color: #ff6347;
}

a.nav-link {
    text-transform: uppercase;
}

.carousel-item {
    margin-right: 0;
}