/* Custom styles for BGV Bergisch Land website */

/* General styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header styles */
header {
    background-color: #0056b3 !important;
    border-bottom: 3px solid #003d7a;
}

header h1 {
    font-weight: bold;
    font-size: 1.8rem;
}

/* Navigation styles */
.navbar {
    background-color: #343a40 !important;
    border-bottom: 1px solid #495057;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    background-color: #495057;
}

/* Card styles */
.card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 1.5rem;
    background-color: #fff;
}

.card-body {
    padding: 1.5rem;
}

.card h2 {
    color: #0056b3;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.5rem;
}

/* Button styles */
.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-primary:hover {
    background-color: #003d7a;
    border-color: #003d7a;
}

.btn-outline-primary {
    color: #0056b3;
    border-color: #0056b3;
}

.btn-outline-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Footer styles */
footer {
    margin-top: 3rem;
    background-color: #343a40 !important;
    border-top: 3px solid #0056b3;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Home page specific styles */
.lead {
    font-size: 1.2rem;
    font-weight: 300;
    color: #6c757d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    header .text-md-end {
        text-align: left !important;
        margin-top: 0.5rem;
    }
}

/* Show dropdown on hover for navbar */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .navbar .dropdown-menu {
    margin-top: 0;
  }
} 