@font-face {
    font-family: 'Satisfy';
    src: url('/fonts/Satisfy-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    font-family: 'Comic Sans MS', Arial, sans-serif;
    background: #FFF8F0;
    color: #4a3f3f;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

header {
    background: linear-gradient(120deg, #F07167, #FFD6A5, #F07167, #FFD6A5);
    background-size: 300% 300%;
    animation: gradientShift 120s ease infinite;
    color: #1d3557;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

header h1 {
    font-family: 'Satisfy', cursive;
    font-size: 3rem;
    margin: 0;
    position: relative;
    z-index: 10;
}

header p {
    font-size: 1.3rem;
    margin-top: 10px;
    opacity: 0.85;
    position: relative;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #FFD6A5 0%, #FFEAD0 50%, #FFD6A5 100%);
    border-bottom: 2px solid #F07167;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 8px rgba(240, 113, 103, 0.1);
    z-index: 100;
    border-bottom-left-radius: 100% 50%;
    border-bottom-right-radius: 100% 50%;
}

nav a {
    text-decoration: none;
    color: #F07167;
    font-weight: bold;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: 1px solid #F07167;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

nav a:hover {
    background: #F07167;
    color: #FFF8F0;
    transform: translateY(-1px);
}

/* Banner styling */
.banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF8F0;
    margin: 20px 20px 0 20px;
    width: calc(100% - 40px);
}

.banner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .banner {
        height: 250px;
    }

    .banner img {
        max-width: none;
        max-height: none;
        width: auto;
        height: auto;
        object-fit: cover;
        min-width: 100%;
        min-height: 100%;
    }
}

section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
    position: relative;
}

.intro {
    text-align: center;
}

/* Quote styling */
blockquote.quote {
    margin: 40px auto;
    padding: 30px 40px;
    max-width: 700px;
    background: linear-gradient(135deg, #FFF0E6 0%, #FFE8D6 100%);
    border-left: 5px solid #F07167;
    border-radius: 10px;
    font-size: 1.3rem;
    font-style: italic;
    color: #4a3f3f;
    box-shadow: 0 4px 15px rgba(240, 113, 103, 0.15);
    position: relative;
}

blockquote.quote::before {
    content: '"';
    font-size: 4rem;
    color: #FFD6A5;
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: Georgia, serif;
    line-height: 1;
}

blockquote.quote cite {
    display: block;
    margin-top: 15px;
    font-size: 1rem;
    font-style: normal;
    color: #F07167;
    font-weight: bold;
    text-align: right;
}

@media (max-width: 768px) {
    blockquote.quote {
        padding: 20px 25px;
        font-size: 1.1rem;
        margin: 30px 20px;
    }

    blockquote.quote::before {
        font-size: 3rem;
        top: -5px;
    }
}

/* Call-to-action button */
.cta-container {
    text-align: center;
    margin: 50px 0 30px 0;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #F07167 0%, #FFD6A5 100%);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(240, 113, 103, 0.3);
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 113, 103, 0.4);
    background: linear-gradient(135deg, #FFD6A5 0%, #F07167 100%);
}

.cta-button:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cta-button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

.intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #F07167;
}

/* Styling voor lijsten */
ul {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 600px;
}

li {
    margin: 30px 0;
}

li a {
    display: block;
    padding: 15px 25px;
    background: linear-gradient(135deg, #FFF0E6 0%, #FFE8D6 100%);
    border-radius: 15px;
    text-decoration: none;
    color: #F07167;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid #FFD6A5;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(240, 113, 103, 0.1);
    position: relative;
    overflow: hidden;
}

li a::before {
    content: '→';
    position: absolute;
    left: 25px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

li a:hover {
    background: linear-gradient(135deg, #FFD6A5 0%, #F07167 100%);
    color: white;
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(240, 113, 103, 0.3);
    padding-left: 50px;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 12s infinite ease-in-out, breathe 3s infinite ease-in-out;
    z-index: 0;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(-40px) translateX(20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    25% {
        transform: scale(1.4);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.7);
        opacity: 0.35;
    }
    75% {
        transform: scale(1.4);
        opacity: 0.4;
    }
}

/* Extra levendige elementen voor de header */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: sparkleAnim 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes sparkleAnim {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: #F07167;
    color: #FFF8F0;
    margin-top: 60px;
    border-top-left-radius: 50% 10%;
    border-top-right-radius: 50% 10%;
    position: relative;
    overflow: hidden;
}

/* Mobile versie - minder bollen */
@media (max-width: 768px) {
    .floating-circle.mobile-hide {
        display: none;
    }
}