/* Logo-based Theme for Hulpdienst Veendam - Enhanced Version
 * Based on the four-color logo design with green, blue, orange and red
 */

:root {
    /* Logo-based colors */
    --hdv-green: #4CAF50;       /* Green square with plant icon */
    --hdv-blue: #2196F3;        /* Blue square with computer icon */
    --hdv-orange: #FF9800;      /* Orange square with book icon */
    --hdv-red: #FF5722;         /* Red square with hammer icon */
    
    /* Supporting colors */
    --hdv-dark-green: #388E3C;
    --hdv-dark-blue: #1976D2;
    --hdv-dark-orange: #F57C00;
    --hdv-dark-red: #E64A19;
    
    /* Light variants */
    --hdv-light-green: #C8E6C9;
    --hdv-light-blue: #BBDEFB;
    --hdv-light-orange: #FFE0B2;
    --hdv-light-red: #FFCCBC;
    
    /* Neutral colors */
    --hdv-white: #FFFFFF;
    --hdv-light-gray: #F5F5F5;
    --hdv-gray: #9E9E9E;
    --hdv-dark-gray: #424242;
    --hdv-black: #212121;
    
    /* Override existing hotel theme variables */
    --hotel-primary: var(--hdv-green);
    --hotel-secondary: var(--hdv-blue);
    --hotel-secondary-icon: var(--hdv-orange);
    --hotel-secondary-footer: var(--hdv-dark-blue);
    --hotel-accent: var(--hdv-orange);
    --hotel-dark: var(--hdv-dark-gray);
    --hotel-light: var(--hdv-light-gray);
    --hotel-text: var(--hdv-black);
    --hotel-border: var(--hdv-light-gray);
    --hotel-success: var(--hdv-green);
    --hotel-error: var(--hdv-red);
    --hotel-warning: var(--hdv-orange);
    --text-color-title: var(--hdv-green);
    
    /* Gradients */
    --hotel-gradient: linear-gradient(135deg, var(--hdv-green) 0%, var(--hdv-blue) 100%);
    --hdv-gradient-green: linear-gradient(135deg, var(--hdv-green) 0%, var(--hdv-dark-green) 100%);
    --hdv-gradient-blue: linear-gradient(135deg, var(--hdv-green) 0%, var(--hdv-blue) 100%);
    --hdv-gradient-orange: linear-gradient(135deg, var(--hdv-orange) 0%, var(--hdv-dark-orange) 100%);
    --hdv-gradient-red: linear-gradient(135deg, var(--hdv-red) 0%, var(--hdv-dark-red) 100%);
}

/* ===== HEADER AND NAVIGATION ===== */
.main-header {
    background-color: var(--hdv-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid var(--hdv-green);
}

.logo img {
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.03);
}

/* Main Menu */
.main-menu {
    display: flex;
    gap: 5px;
}

.menu-item a {
    color: var(--hdv-dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 15px;
}

.menu-item a:hover,
.menu-item a.active {
    color: var(--hdv-green);
}

.menu-item a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--hdv-gradient-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-item a:hover::after,
.menu-item a.active::after {
    width: 80%;
}

/* Submenu */
.mega-submenu {
    border-top: 3px solid var(--hdv-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
}

.submenu-column h3 {
    color: var(--hdv-green);
    border-bottom: 2px solid var(--hdv-light-green);
    padding-bottom: 8px;
}

/* Contact Button */
.awesome-contact-btn {
    background: var(--hdv-gradient-blue);
    color: var(--hdv-white);
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.awesome-contact-btn:hover {
    background: var(--hdv-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(33, 150, 243, 0.4);
}

/* Mobile Menu */
.mobile-menu-toggle {
    color: var(--hdv-green);
    border: 2px solid var(--hdv-light-green);
    border-radius: 5px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--hdv-light-green);
}

.mobile-menu-container {
    background: var(--hdv-white);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-menu-header {
    border-bottom: 2px solid var(--hdv-light-green);
}

.mobile-menu-close {
    color: var(--hdv-red);
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-nav a {
    color: var(--hdv-dark-gray);
    border-bottom: 1px solid var(--hdv-light-gray);
    transition: all 0.3s ease;
    padding: 12px 20px;
}

.mobile-nav a:hover {
    background: var(--hdv-light-green);
    color: var(--hdv-green);
    border-left: 3px solid var(--hdv-green);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--hdv-gradient-green);
    height: auto;
    padding: 8px 0;
}

.top-bar-contact a {
    color: var(--hdv-white);
    margin-right: 15px;
    transition: all 0.3s ease;
}

.top-bar-contact a:hover {
    color: var(--hdv-light-green);
}

.top-bar-social a {
    color: var(--hdv-white);
    margin-left: 10px;
    transition: all 0.3s ease;
}

.top-bar-social a:hover {
    color: var(--hdv-light-green);
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-slider {
    margin-top: 20px;
}

.slide {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slide-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 30px;
}

.slide-content h1,
.slide-content h2 {
    color: var(--hdv-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.slide-content p {
    color: var(--hdv-white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-btn {
    background: var(--hdv-gradient-blue);
    color: var(--hdv-white);
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slide-btn:hover {
    background: var(--hdv-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* ===== SECTION STYLING ===== */
.section-title {
    color: var(--hdv-green);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--hdv-gradient-blue);
    border-radius: 3px;
}

/* ===== PORTFOLIO/SERVICES ===== */
.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-content img {
    transition: all 0.5s ease;
}

.portfolio-item:hover .portfolio-content img {
    transform: scale(1.05);
}

.portfolio-overlay {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9) 0%, rgba(56, 142, 60, 0.9) 100%);
    padding: 25px;
}

.portfolio-overlay h3 {
    color: var(--hdv-white);
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    color: var(--hdv-white);
    margin-bottom: 15px;
}

.portfolio-link {
    background: var(--hdv-gradient-blue);
    color: var(--hdv-white);
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.portfolio-link:hover {
    background: var(--hdv-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

/* ===== VRIJWILLIGER SECTION ===== */
.vrijwilliger-highlight {
    background: var(--hdv-light-gray);
    padding: 40px 0;
    margin: 40px 0;
}

.vrijwilliger-container {
    background: var(--hdv-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
}

.vrijwilliger-image {
    flex: 1;
    overflow: hidden;
}

.vrijwilliger-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vrijwilliger-container:hover .vrijwilliger-image img {
    transform: scale(1.05);
}

.vrijwilliger-content {
    flex: 1;
    padding: 30px;
}

.vrijwilliger-content h2 {
    color: var(--hdv-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.vrijwilliger-content .lead {
    color: var(--hdv-dark-gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.role-info ul li {
    color: var(--hdv-dark-gray);
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.role-info ul li::before {
    content: '✓';
    color: var(--hdv-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.why-list {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.why-list li {
    color: var(--hdv-dark-gray);
    margin-bottom: 10px;
}

.cta-vrijwilliger {
    background: var(--hdv-gradient-orange);
    color: var(--hdv-white);
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
    margin-top: 20px;
    display: inline-block;
}

.cta-vrijwilliger:hover {
    background: var(--hdv-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 152, 0, 0.4);
}

/* ===== CONTACT FORM ===== */
.contactform-modal {
    background: rgba(0, 0, 0, 0.5);
}

.contactform-modal-content {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contactform-modal-header {
    background: var(--hdv-gradient-green);
    color: var(--hdv-white);
    border-bottom: 1px solid var(--hdv-light-green);
    border-radius: 15px 15px 0 0;
    padding: 20px 30px;
}

.contactform-modal-title {
    color: var(--hdv-white);
    font-weight: 600;
    font-size: 1.5rem;
}

.contactform-close {
    color: var(--hdv-white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.contactform-close:hover {
    color: var(--hdv-light-green);
    transform: rotate(90deg);
}

.contactform-modal-body {
    padding: 30px;
}

.contactform-progress {
    background-color: var(--hdv-light-gray);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    height: 8px;
}

.contactform-progress-bar {
    background: var(--hdv-gradient-blue);
    height: 100%;
    transition: width 0.5s ease;
}

.contactform-step-indicator {
    color: var(--hdv-blue);
    font-weight: 500;
    display: inline-block;
    margin-bottom: 8px;
}

.contactform-step-title {
    color: var(--hdv-green);
    border-bottom: 2px solid var(--hdv-light-green);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.3rem;
}

/* Form Controls */
.contactform-form-group {
    margin-bottom: 20px;
}

.contactform-form-label {
    color: var(--hdv-dark-gray);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.contactform-form-control,
.contactform-form-select,
.contactform-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--hdv-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contactform-form-control:focus,
.contactform-form-select:focus,
.contactform-form-textarea:focus {
    border-color: var(--hdv-green);
    box-shadow: 0 0 0 3px var(--hdv-light-green);
    outline: none;
}

.contactform-form-check {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contactform-form-check-input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.contactform-form-check-input:checked {
    background-color: var(--hdv-green);
    border-color: var(--hdv-green);
}

.contactform-form-check-label {
    color: var(--hdv-dark-gray);
    cursor: pointer;
}

/* Contact Form Buttons */
.contactform-form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.contactform-btn {
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.contactform-btn-primary {
    background: var(--hdv-gradient-green);
    color: var(--hdv-white);
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.contactform-btn-primary:hover {
    background: var(--hdv-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
}

.contactform-btn-secondary {
    background: var(--hdv-gradient-blue);
    color: var(--hdv-white);
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.contactform-btn-secondary:hover {
    background: var(--hdv-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(33, 150, 243, 0.4);
}

.contactform-btn-success {
    background: var(--hdv-gradient-green);
    color: var(--hdv-white);
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.contactform-btn-success:hover {
    background: var(--hdv-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
}

/* ===== FOOTER ===== */
.main-footer {
    background: linear-gradient(135deg, var(--hdv-dark-gray) 0%, var(--hdv-black) 100%);
    padding-top: 60px;
    color: var(--hdv-light-gray);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--hdv-green);
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--hdv-light-green);
    display: inline-block;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info li i {
    color: var(--hdv-green);
    margin-right: 10px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--hdv-light-gray);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    color: var(--hdv-green);
    margin-right: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--hdv-white);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--hdv-white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--hdv-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    background: var(--hdv-black);
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-links a {
    color: var(--hdv-gray);
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--hdv-green);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--hdv-gradient-green);
    color: var(--hdv-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--hdv-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 992px) {
    .awesome-contact-btn {
        display: none !important;
    }
    
    .main-menu {
        display: none;
    }
    
    .vrijwilliger-container {
        flex-direction: column;
    }
    
    .vrijwilliger-image {
        height: 300px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-section {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .awesome-contact-btn {
        display: none !important;
    }
    
    .main-menu {
        display: none;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contactform-modal-content {
        width: 95%;
        padding: 15px;
    }
    
    .contactform-form-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .contactform-btn {
        width: 100%;
    }
}

/* ===== CUSTOM ELEMENTS ===== */
/* List Styling */
.list-styled {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.style-list {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--hdv-dark-gray);
}

.style-list::before {
    content: "✓";
    color: var(--hdv-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Cookie Banner */
.cookie-banner {
    background: var(--hdv-white);
    border-top: 3px solid var(--hdv-green);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner-btn {
    background: var(--hdv-gradient-green);
    color: var(--hdv-white);
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-banner-btn:hover {
    background: var(--hdv-green);
    transform: translateY(-2px);
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--hdv-light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--hdv-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--hdv-dark-green);
}
