@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Nunito:wght@400;700;800&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top, #d8f1f3 0%, #c9ebee 35%, #eef4ef 100%);
    color: #5f3a22;
    font-family: "Nunito", sans-serif;
}

/* ===== Homepagina titel ===== */
.hero-header {
    text-align: center;
    padding: 28px 20px 10px;
}

.title-ornament {
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    line-height: 1;
    color: #c68a2d;
    margin: 4px 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.page-title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 600;
    color: #7a431e;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.75);
}

.dropcap {
    font-size: 1.45em;
    font-weight: 700;
    color: #b25d1d;
    vertical-align: -0.08em;
    margin-right: 2px;
}

/* ===== Homepagina middenzone ===== */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px 40px;
    text-align: center;
}

.hero-stage {
    position: relative;
    width: min(92vw, 760px);
    min-height: 560px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 18px;
}

/* ===== Hugo ===== */
.hugo {
    width: min(340px, 72vw);
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.18));
    border-radius: 24px;
}

/* ===== Tekstballon ===== */
.speech-bubble {
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: 80px;

    width: min(360px, 42vw);
    min-width: 260px;
    min-height: 190px;
    padding: 28px 28px 30px;

    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 3px solid rgba(110, 74, 52, 0.6);
    border-radius: 34px;
    box-shadow:
        0 18px 30px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);

    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 3vw, 50px);
    line-height: 1.02;
    color: #000;
}

/* Buitenrand staart */
.speech-bubble::after {
    content: "";
    position: absolute;
    left: 28px;
    bottom: -34px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 36px 26px 0 8px;
    border-color: rgba(110, 74, 52, 0.6) transparent transparent transparent;
    transform: rotate(10deg);
}

.speech-bubble::before {
    content: "";
    position: absolute;
    left: 31px;
    bottom: -26px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 29px 21px 0 6px;
    border-color: rgba(255, 255, 255, 0.25) transparent transparent transparent;
    transform: rotate(10deg);
}

/* ===== Typcursor ===== */
.cursor {
    display: inline-block;
    margin-left: 2px;
    color: #b25d1d;
    animation: blink 0.9s steps(1) infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* ===== Voetnoot ===== */
.footnote {
    font-size: 13px;
    color: #6b4a2f;
    font-style: italic;
    background: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-radius: 12px;
    opacity: 0.9;
}

/* ===== Knoppen ===== */
/* .start-btn,
.walk-btn {
    display: inline-block;
    width: fit-content;
    padding: 14px 30px;
    border-radius: 999px;
    text-decoration: none;
    text-align: center;
    font-family: "Nunito", sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(to bottom, #db8448 0%, #c96e35 100%);
    box-shadow:
        0 12px 22px rgba(120, 63, 27, 0.22),
        inset 0 2px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
} */

.start-btn {
    display: block;
    width: fit-content;
    margin: 8px auto 10px;
    padding: 16px 34px;
    border-radius: 999px;
    text-decoration: none;
    text-align: center;
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: white;
    background: linear-gradient(to bottom, #db8448 0%, #c96e35 100%);
    box-shadow:
        0 12px 22px rgba(120, 63, 27, 0.22),
        inset 0 2px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.start-btn:hover,
.walk-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 16px 28px rgba(120, 63, 27, 0.28),
        inset 0 2px 0 rgba(255, 255, 255, 0.35);
}

.start-btn:active,
.walk-btn:active {
    transform: translateY(1px);
}

/* ===== Responsive home ===== */
@media (max-width: 900px) {
    .hero-stage {
        min-height: 500px;
    }

    .speech-bubble {
        top: 10px;
        right: 20px;
        width: min(360px, 82vw);
        min-width: unset;
        min-height: 160px;
        font-size: clamp(30px, 7vw, 42px);
    }

    .speech-bubble::after {
        left: 20px;
        bottom: -34px;
        transform: rotate(0deg);
    }

    .speech-bubble::before {
        left: 23px;
        bottom: -26px;
        transform: rotate(0deg);
    }

    .hugo {
        width: min(340px, 78vw);
    }
}

@media (max-width: 520px) {
    .hero-header {
        padding: 22px 14px 8px;
    }

    .hero-stage {
        min-height: 460px;
        width: 100%;
    }

    .speech-bubble {
        top: 0;
        right: 10px;
        width: min(320px, 88vw);
        padding: 22px 20px 24px;
        border-radius: 28px;
        font-size: clamp(26px, 7vw, 38px);
    }

    .speech-bubble::after {
        left: 18px;
    }

    .speech-bubble::before {
        left: 21px;
    }

    .start-btn,
    .walk-btn {
        font-size: 16px;
        padding: 13px 24px;
    }

    .footnote {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* ===== Wandelingen overzicht ===== */
.walks-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 20px 80px;
}

.walks-intro {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 18px;
    color: #6b4a2f;
}

.walk-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.walk-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(110, 74, 52, 0.35);
    border-radius: 28px;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.10);
    padding: 24px;
}

.walk-card h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    color: #7a431e;
}

.walk-meta {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #8b5a35;
}

.walk-card p {
    font-size: 16px;
    line-height: 1.6;
}

.walk-card-actions {
    margin-top: 18px;
}

.back-home {
    margin-top: 40px;
    text-align: center;
}

/* ===== Detailpagina wandeling ===== */
.walk-detail-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 20px 80px;
}

.detail-nav {
    margin-bottom: 24px;
    text-align: center;
}

.detail-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(110, 74, 52, 0.35);
    border-radius: 28px;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.10);
    padding: 24px;
    margin-bottom: 24px;
}

.detail-card h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    color: #7a431e;
}

.detail-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
    color: #7a431e;
}

.detail-card p,
.detail-card li {
    font-size: 16px;
    line-height: 1.7;
}

.detail-list {
    padding-left: 20px;
    margin: 0;
}

.audio-item {
    margin-bottom: 22px;
}

.audio-item audio {
    width: 100%;
    max-width: 460px;
}

.download-link {
    font-weight: 700;
    color: #8b4a1d;
    text-decoration: none;
}

.download-link:hover {
    text-decoration: underline;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.photo-grid img {
    width: 100%;
    display: block;
    border-radius: 18px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
}

@media (max-width: 520px) {
    .walk-card h2,
    .detail-card h2 {
        font-size: 28px;
    }

    .walks-intro,
    .walk-card p,
    .detail-card p,
    .detail-card li {
        font-size: 15px;
    }
}