/* Fonts van Google – voeg ook <link> toe in header.php */
body {
    font-family: 'Quicksand', 'Segoe UI', sans-serif;
    margin: 0;
    background: linear-gradient(to bottom, #fff8ef 0%, #ffeccc 100%);
    background-attachment: fixed;
    color: #333;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    body {
        font-size: 1rem;
    }
}

:root {
    --primary-color: #e07a5f;
    --primary-dark: #c85f47;
    --accent-color: #f4a261;
    --header-bg: #7b3e19;
}

header {
    background-image: url('images/border.jpg');
    background-size: cover;
    background-position: center;
    padding: 1rem 0;
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.logo {
    width: 120px;
}

nav {
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0;
    margin: 0;
    background-color: transparent;
}

nav ul li {
    background-color: transparent;
}

nav a {
    color: #5b2e0e;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
    background-color: transparent;
}

nav a::before {
    font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif;
    margin-right: 6px;
    font-size: 1.1em;
    vertical-align: middle;
}

nav a.home::before { content: '&#127968;'; }
nav a.overons::before { content: '&#128101;'; }
nav a.pakketten::before { content: '&#127891;'; }
nav a.boeken::before { content: '&#128197;'; }
nav a.transfer::before { content: '&#9992;&#65039;'; }
nav a.contact::before { content: '&#128222;'; }

nav a:hover {
    color: var(--primary-color);
    background-color: transparent !important;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

main {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: auto;
}

h1, h2 {
    color: #7b3e19;
    font-family: 'Merriweather', serif;
}

.btn {
    background: linear-gradient(135deg, var(--primary-color), #f48c06);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), #e85d04);
    transform: translateY(-2px);
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

footer .socials img {
    width: 32px;
    margin: 0 10px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

footer .socials img:hover {
    transform: scale(1.2);
}

/* TOURS OVERZICHT */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.package:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.package img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    max-width: 100%;
}

.package .content {
    margin-top: 1rem;
    width: 100%;
    text-align: left;
}

/* FORM STYLING */
.form-styled {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff8ef;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    font-family: 'Quicksand', sans-serif;
}

.form-styled label {
    font-weight: 600;
    margin-top: 1rem;
    display: block;
}

.form-styled input,
.form-styled select {
    width: 100%;
    padding: 0.6rem;
    margin: 0.4rem 0 1.2rem 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.form-styled button {
    background-color: #f39200;
    color: white;
    padding: 0.7rem 1.4rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.form-styled button:hover {
    background-color: #c47100;
}

.success-msg {
    text-align: center;
    color: green;
    font-weight: bold;
    margin-top: 1.5rem;
}

.banner {
    position: relative;
    width: 100%;
    height: 300px;
    background: url('images/hero-banner.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 2rem;
}

.banner-slogan {
    background-color: rgba(255, 255, 255, 0.75);
    color: #7b3e19;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    padding: 1rem 2rem;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.about-banner {
    background-image: url('images/about.jpg');
}

main section img {
    display: block;
    margin: 1rem auto 0 auto;
    border-radius: 12px;
    width: 100%;
    height: auto;
    max-width: 100%;
}

@media (min-width: 769px) {
    main section img {
        max-width: 60%;
    }
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 1rem;
}

.socials img {
    width: 36px;
    transition: transform 0.3s ease;
}

.socials img:hover {
    transform: scale(1.1);
}

@keyframes fadeInUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .container {
        flex-direction: column;
        text-align: center;
    }

    .banner-slogan {
        font-size: 1.3rem;
        padding: 0.8rem 1.2rem;
    }

    .banner {
        height: 220px;
    }
}
