/* Donkergroen kleurenpalet */
:root {
    --bs-green-dark: #1b4332;
    --bs-green-primary: #2d6a4f;
    --bs-green-light: #e8f5e9;
    --bs-green-accent: #40916c;
}

/* Fonts */
body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

/* Basis styling */
html {
    font-size: 14px;
    position: relative;
    height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

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: #ececea; color: #333;
}

/* 🧶 BADSTOF TEXTUUR */
.bg-terrycloth {
    background-color: var(--bs-green-dark);
    background-image: 
        linear-gradient(rgba(15, 37, 27, 0.5), rgba(15, 37, 27, 0.5)), 
        url('/images/badstof.png');
    background-repeat: repeat;
    background-size: 300px auto;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.6);
}

.bg-green-light {
    background-color: var(--bs-green-light);
}

.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:#ececea;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: none;
    font-weight: 600;
}

.btn-light:hover {
    background-color: white;
    background-image: url('/images/badstof_wit.png');
    background-repeat: repeat;
    background-size: 300px auto;
    color: var(--bs-green-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo-header {
    /*max-width: 320px;*/
    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: white;
    transform: translateY(-3px);
    opacity: 0.8;
}

/* 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;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators button.active {
    background-color: white;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

/* 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: 200px;
    }

    .carousel-caption {
        bottom: 0 !important;
        padding: 0.5rem !important;
    }
}
