/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Hero Section */
.hero-section {
    background-image: url("../images/uitstap-beverland.jpg");
    padding: 80px 0;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Navbar */
.navbar {
    background: #014a0b;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    transition: all 0.3s ease;
    color: white;
}

.nav-link:hover {
    transform: translateY(-2px);
    color: #9cf38f;
}

.nav-link.active {
    font-weight: bold;
    color: #35fb58 !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* Buttons */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Form Styles */
.form-control:focus {
    border-color: #78ea66;
    box-shadow: 0 0 0 0.2rem rgba(102, 234, 120, 0.25);
}

/* Footer */
footer {
    margin-top: auto;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
}

/* Page Headers */
.bg-primary, .bg-warning, .bg-info {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
