/* === Basis Container === */
.global-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 600px) {
    .global-container {
        width: 95%;
        padding: 0 10px;
    }
}

/* === Buttons === */
.terug-button {
    display: inline-block;
    background-color: #404040;
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.terug-button:hover {
    background-color: #606060;
    transform: scale(1.05);
}

.global-container .terug-button {
    display: block;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .terug-button {
        padding: 12px 16px;
        font-size: 1em;
    }
}

/* === Keuzeknoppen === */
.keuze-knoppen {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.keuze-knoppen .terug-button,
.medewerker-profiel .terug-button {
    width: 300px;
}

/* === Prijslijst === */
.prijslijst {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.prijslijst h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    color: #333;
}

.categorie {
    margin-bottom: 40px;
}

.categorie h3 {
    font-size: 1.5em;
    color: #222;
    margin-bottom: 20px;
    border-bottom: 2px solid #404040;
    padding-bottom: 5px;
}

.prijs-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.dienst-container {
    display: flex;
    flex-direction: column;
}

.dienst {
    font-size: 1.1em;
    color: #555;
}

.beschrijving {
    font-size: 0.9em;
    color: #888;
    margin-top: 2px;
}

.prijs {
    font-size: 1.1em;
    font-weight: bold;
    color: #404040;
}

@media (max-width: 600px) {
    .prijs-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .prijs {
        margin-top: 8px;
        font-size: 1em;
        color: #666;
    }
}

/* === Medewerker Profiel Pagina === */
.medewerker-profiel {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    background-color: #fdfdfd;
    max-width: 960px;
    margin: 40px auto;
    padding: 40px 25px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    gap: 30px;
}

.profiel-foto {
    width: 260px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.profiel-tekst {
    flex: 1;
    font-family: Arial, sans-serif;
    color: #555;
    font-size: 1.1em;
    line-height: 1.8;
}

.profiel-tekst p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .medewerker-profiel {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profiel-tekst {
        font-size: 1em;
    }

    .profiel-foto {
        width: 200px;
    }
}

/* === Welkom Pagina (Home) === */
.welkom-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
}

.welkom-content {
    max-width: 800px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.welkom-content h1 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 10px;
}

.highlight {
    color: #6b9080;
}

.welkom-content h2 {
    color: #34495e;
    font-size: 24px;
    margin-bottom: 25px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.welkom-button {
    margin: 25px 0;
}

.welkom-button a {
    background: #6b9080;
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 20px;
    border-radius: 12px;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(107, 144, 128, 0.4);
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s infinite;
}

.welkom-button a:hover {
    background: #557767;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(85, 119, 103, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 144, 128, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(107, 144, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(107, 144, 128, 0);
    }
}

.bel-ons {
    font-size: 16px;
    margin: 20px 0 30px;
}

.bel-ons a {
    color: #6b9080;
    font-weight: bold;
    text-decoration: none;
}

.welkom-content h3 {
    color: #34495e;
    font-size: 22px;
    margin-bottom: 20px;
}

.adres-blok {
    background: #ecf0f1;
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
    font-size: 16px;
    margin-top: 30px;
}

.adres-blok p {
    margin: 5px 0;
}

@media (max-width: 600px) {
    .welkom-content h1 {
        font-size: 28px;
    }

    .welkom-content h2 {
        font-size: 20px;
    }

    .intro-text {
        font-size: 16px;
    }

    .welkom-button a {
        font-size: 18px;
        padding: 14px 28px;
    }
}

/* === Verberg Ongewenste Elementen === */
#sb_gallery,
.title-main,
.to-invoices-list,
#sb-invoices,
.sb-invoices,
.invoice-list,
#sb-invoices-list,
.sb_cart,
.sb_invoice,
.title.invoice-title,
.inv-cell-status,
#sb_product_container,
.booking-info--item_invoice {
    display: none !important;
}

/* Events specifieke classes (leeg gelaten maar klaar voor gebruik) */
#events h3,
#events p.duration,
#events div.duration,
#events p.description,
#events div.description,
#events .selectedEvent,
#events input.reserve_time_btn,
#events input.select_another_btn,
#eventForm #start_date-block-container h3,
#eventForm #timeline-container h3,
#eventForm #save_button,
div.ui-widget-content,
div.ui-widget-header,
#timeline-container table.timeline,
.timeline td.not_worked_time,
.timeline td.free_time,
.timeline td.selected_time,
.timeline td.reserved_time,
div#loading,
#start_date-block-container .zend_form dt,
#start_date-block-container .zend_form dt b,
#start_date-block-container .zend_form dd label {
    /* add your css rules here */
}




/* home */
.intro-flex {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.intro-flex.reverse {
    flex-direction: row-reverse;
}

.intro-foto {
    
    min-width: 100px;
    max-width: 150px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.intro-tekst {
    flex: 1;
}

.intro-tekst h1,
.intro-tekst h2,
.intro-tekst h3,
.intro-tekst p {
    margin-top: 0;
}

/* Mobiel */
@media (max-width: 768px) {
    .intro-flex,
    .intro-flex.reverse {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .intro-foto {
        width: 60%;
        max-width: 300px;
    }

    .intro-tekst {
        margin-top: 20px;
    }
}


