/* ALGEMEEN */
:root {
    --bg-dark: #1f1207;
    --accent: #e67e22;
    --accent-dark: #c85f0f;
    --text: #fff8f0;
    --card-bg: rgba(255, 255, 255, 0.08);
    --card-border: rgba(255, 255, 255, 0.18);
}

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: linear-gradient(180deg, #2c1708 0%, #e67e22 100%);
    color: var(--text);
    line-height: 1.6;
}

/* HERO */
.hero {
    min-height: 360px;
    background-image: url("img/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    width: 100%;
    min-height: 360px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.45));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo {
    width: 64px;
    height: auto;
}

h1 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.hero-subtitle {
    margin: 0.8rem 0 1rem;
    opacity: 0.95;
}

nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    transition: 0.2s ease;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* CONTENT */
main {
    padding: 1.5rem 1rem 2.5rem;
}

section {
    max-width: 900px;
    margin: 1.2rem auto;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 1.4rem;
    backdrop-filter: blur(2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

h2 {
    margin-top: 0;
}

.images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

.images img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

/* PRIJZEN */
.price-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 10px;
}

.price-table th,
.price-table td {
    padding: 0.75rem;
    text-align: left;
}

.price-table th {
    background: rgba(0, 0, 0, 0.25);
}

.price-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.05);
}

.price-note {
    margin-top: 1rem;
    opacity: 0.95;
}

/* CONTACT */
.contact-card {
    text-align: center;
}

.contact-link {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 1rem;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

footer a {
    color: #ffd7b0;
}

@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
    }

    .logo {
        width: 54px;
    }

    section {
        padding: 1.1rem;
    }
}
