/* ========================= */
/* === Algemene Styling === */
/* ========================= */

/* Font Import */
@font-face {
    font-family: 'Pacifico Regular';
    src: url('../assets/fonts/Pacifico-Regular.woff2') format('woff2'),
         url('../assets/fonts/Pacifico-Regular.woff') format('woff'),
         url('../assets/fonts/Pacifico-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.5;
}

/* ========================= */
/* === Links & Buttons === */
/* ========================= */
a {
    color: #4B2E19;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #D2A679;
}

button,
.action-button {
    background-color: #4B2E19;
    color: #fff;
    border: none;
    padding: 0.75em 1.5em;
    cursor: pointer;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover,
.action-button:hover {
    background-color: #D2A679;
    transform: translateY(-2px);
}

/* ========================= */
/* === Header & Nav === */
/* ========================= */
header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
}

#nav-links {
    display: flex;
    gap: 1em;
}

#nav-links li {
    list-style: none;
}

/* Hamburger menu voor mobiel */
#nav-toggle {
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    #nav-links {
        flex-direction: column;
        overflow: hidden;
        max-height: 0;
        display: none;
        transition: max-height 0.3s ease;
        width: 100%;
    }

    #nav-toggle {
        display: block;
    }
}

/* ========================= */
/* === Hero Sectie === */
/* ========================= */
.hero {
    position: relative;
    text-align: center;
    padding: 4em 1em;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    color: #333;
}

.hero h2,
.hero p {
    margin: 0.5em 0;
}

/* Hero actie container */
#hero-action {
    margin-top: 2em;
}

/* ========================= */
/* === Prijzen Tabel === */
/* ========================= */
.price-category {
    margin-bottom: 3em;
}

.price-category h2 {
    font-size: 1.75rem;
    color: #4B2E19;
    margin-bottom: 0.5em;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    border: 1px solid #eee;
    padding: 0.75em;
    text-align: left;
}

.price-table th {
    background-color: #f9f9f9;
}

.price-list-headers {
    display: flex;
    justify-content: space-between;
    padding: 0.5em 0;
    font-weight: bold;
}

.price-category ul li {
    display: flex;
    justify-content: space-between;
    padding: 0.5em 0;
    border-bottom: 1px solid #eee;
}

.service-subtext {
    font-size: 0.875rem;
    color: #666;
    margin-left: 0.5em;
}

/* ========================= */
/* === Footer === */
/* ========================= */
footer {
    background-color: #fff;
    border-top: 1px solid #eee;
    padding: 2em;
    color: #333;
}

footer a {
    color: #4B2E19;
}

/* ========================= */
/* === Carousel === */
/* ========================= */
.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 auto;
}

.carousel-button-prev,
.carousel-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(75, 46, 25, 0.7);
    border: none;
    padding: 0.5em 1em;
    cursor: pointer;
    color: #fff;
    border-radius: 4px;
}

.carousel-button-prev {
    left: 1em;
}

.carousel-button-next {
    right: 1em;
}

.is-hidden {
    display: none !important;
}

/* ========================= */
/* === Kleine Optimalisaties === */
/* ========================= */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    padding-left: 1.5em;
}

p {
    margin: 0.5em 0;
}

