/*
Theme Name: Dutch Pancakes
Theme URI: https://insidebalance.nl
Description: Een gezellige Nederlandse pannenkoeken website met windmolens, tulpen en klompen
Version: 1.0
Author: WordPress
Author URI: https://wordpress.org
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dutch-pancakes
Domain Path: /languages
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #87CEEB 0%, #FFD700 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Styling */
header {
    background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 100%);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.site-title {
    font-size: 36px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Navigatie */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 15px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

nav a:hover {
    border-bottom-color: #FFD700;
    transform: scale(1.1);
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Windmolen Animatie */
.windmill {
    width: 100px;
    height: 100px;
    position: fixed;
    top: 80px;
    right: 40px;
    z-index: 999;
}

.windmill-blades {
    width: 100%;
    height: 100%;
    animation: spin 4s linear infinite;
    position: relative;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.blade {
    position: absolute;
    width: 20px;
    height: 50px;
    background: #8B4513;
    left: 40px;
    top: 0;
}

.blade:nth-child(2) {
    transform: rotate(90deg);
}

.blade:nth-child(3) {
    transform: rotate(180deg);
}

.blade:nth-child(4) {
    transform: rotate(270deg);
}

.windmill-pole {
    position: absolute;
    width: 15px;
    height: 100%;
    background: #654321;
    left: 42.5px;
    z-index: -1;
}

/* Tulpen */
.tulip {
    position: fixed;
    font-size: 40px;
    animation: sway 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes sway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.tulip-1 { bottom: 10%; left: 5%; animation-delay: 0s; }
.tulip-2 { bottom: 15%; right: 8%; animation-delay: 0.5s; }
.tulip-3 { bottom: 20%; left: 15%; animation-delay: 1s; }

/* Pagina Content */
.page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.page-article h1 {
    color: #FF6B35;
    font-size: 42px;
    margin-bottom: 30px;
    text-align: center;
}

.page-article p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

/* Nederland Sectie */
.netherlands-section {
    margin-top: 40px;
}

.windmill-image-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.netherlands-photo {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.netherlands-photo:hover {
    transform: scale(1.02);
}

.netherlands-section h2 {
    color: #FF6B35;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

/* Windmolens Grid */
.windmills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.windmill-card {
    background: linear-gradient(135deg, #FFE4B5 0%, #FFF8DC 100%);
    border-left: 6px solid #FF6B35;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.windmill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.windmill-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #FF6B35;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.windmill-card h3 {
    color: #FF6B35;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 24px;
}

.windmill-card p {
    margin-bottom: 10px;
    color: #555;
}

.windmill-card ul {
    list-style: none;
    padding-left: 0;
}

.windmill-card li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
    color: #666;
}

.windmill-card li:before {
    content: "🌷";
    position: absolute;
    left: 0;
}

/* Pancake Showcase */
.pancake-showcase {
    text-align: center;
    margin: 40px 0;
}

.pancake-showcase h2 {
    color: #FF6B35;
    font-size: 32px;
    margin-bottom: 30px;
}

.pancakes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pancake {
    font-size: 80px;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.pancake:hover {
    transform: rotate(360deg) scale(1.2);
    animation: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Footer */
footer {
    background: linear-gradient(90deg, #8B0000 0%, #FF6B35 100%);
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .site-title {
        font-size: 24px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .windmill {
        width: 60px;
        height: 60px;
        top: 120px;
        right: 20px;
    }

    .page-content {
        padding: 20px;
    }

    .page-article h1 {
        font-size: 28px;
    }

    .windmills-grid {
        grid-template-columns: 1fr;
    }
}
