/* Donkergroen kleurenpalet */
:root {
    /*--bs-green-dark: #1b4332;*/
    --bs-green-dark: #345750;
    --bs-green-primary: #2d6a4f;
    --bs-green-light: #e8f5e9;
    --bs-green-accent: #40916c;
    --bs-pink: #fad4df;
}

/* Fonts */
body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Basis styling */
html {
    font-size: 13px;
    position: relative;
    height: 100%;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    html {
        font-size: 14px;
    }
}

body {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /*background-image: url('/images/badstof_wit.png');
    background-repeat: repeat;
    background-size: 300px auto;*/
    background-color: #fff;
    color: #333;
}

/* 🧶 BADSTOF TEXTUUR */
.bg-terrycloth {
    background-color: var(--bs-green-dark);
    /*background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('/images/badstof.png');*/
    background-image: url('/images/badstof.png');
    background-repeat: repeat;
    background-size: 100% auto;
    /*box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.6);*/
}

/* Text selection on terrycloth background */
.bg-terrycloth ::selection {
    background-color: #ffafc2;
    color: inherit;
}

.bg-terrycloth ::-moz-selection {
    background-color: #ffafc2;
    color: inherit;
}

.bg-roze {
    background-color: var(--bs-pink);
}

.bg-green {
    background-color: #345750;
}

.bg-green-light {
    background-color: var(--bs-green-light);
}

.text-roze {
    color: var(--bs-pink);
}

.text-yellow {
    color: #ffdc44;
}

.text-green-dark {
    color: var(--bs-green-dark) !important;
}

.border-green {
    border-color: var(--bs-green-primary) !important;
}

/* Knoppen */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.btn-green {
    background-color: var(--bs-green-primary);
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: none;
}

.btn-green:hover {
    background-color: var(--bs-green-dark);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-light {
    /*background-color: #f5f5f5;
    background-image: url('/images/badstof_wit.png');
    background-repeat: repeat;
    background-size: 300px auto;
    color: var(--bs-green-dark);*/
    color: var(--bs-green-dark);
    background-color: #ffdc44;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: none;
    font-weight: 800;
    padding: 0.5rem;
}

    .btn-light:hover {
        background-color: var(--bs-pink);
        color: var(--bs-green-dark);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        font-weight: 800;
        padding-left:2rem;
        padding-right:2rem;
    }

/* Logo */
.logo-header {
    display: block;
    height: auto;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    header .logo-header {
        width: 500px !important;
        max-width: 92vw !important;
        height: auto;
    }
}

/* Social Media Iconen */
.social-icon {
    font-size: 1.8rem;
    color: white !important;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--bs-green-primary) !important;
    transform: translateY(-3px);
    opacity: 1;
}

/* Footer Links */
.footer-link {
    color: white !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-link:hover,
.footer-link:focus,
.footer-link:active {
    color: var(--bs-green-light) !important;
    text-decoration: none !important;
}

/* Footer section links override */
footer a {
    color: white !important;
    text-decoration: none;
}

footer a:hover {
    color: var(--bs-green-light) !important;
}

/* Carousel Shadow */
.plush-shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(27, 67, 50, 0.3) !important;
}

/* Carousel Styling */
.carousel {
    border-radius: 1rem;
    overflow: hidden;
}

/* List Group */
.list-group-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(27, 67, 50, 0.1);
}

.list-group-item:last-child {
    border-bottom: none;
}

.border-white-50 {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Section spacing */
section {
    scroll-margin-top: 80px;
}

/* Forms */
.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* Card Styling */
.card {
    border: none;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--bs-green-dark);
}

/* Footer */
footer {
    margin-top: auto;
}

footer a {
    transition: color 0.2s ease;
}

footer a:hover {
    color: #81c784 !important;
}

/* Header */
header {
    /*background-color: white;*/
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Navbar */
.navbar {
    background-color: var(--bs-green-dark) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: white !important;
    font-weight: 600;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: white !important;
}

/* Lead text */
.lead {
    /*color: #555;*/
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-header {
        max-width: 500px;
    }

    .carousel-caption {
        bottom: 0 !important;
        padding: 0.5rem !important;
    }
}
