/*
Theme Name: Willemijn Vos Art
Theme URI: https://art-willemijnvos.nl
Author: Willemijn Vos
Author URI: https://art-willemijnvos.nl
Description: Een elegant en artistiek WordPress theme voor kunst educatie. Ontworpen met zachte organische vormen, warme kleuren en een uitnodigende sfeer.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: willemijn-vos
Tags: art, education, portfolio, custom-menu, custom-logo, featured-images, theme-options
*/

/* ===== CSS Variables ===== */
:root {
    --cream: #faf8f5;
    --warm-white: #ffffff;
    --soft-blue: #a8c5d9;
    --dusty-rose: #d4a5a5;
    --soft-coral: #e8b4a0;
    --muted-gold: #c9a86c;
    --deep-blue: #2c4a5e;
    --charcoal: #2d2d2d;
    --text-muted: #5a5a5a;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* ===== Animated Background Shapes ===== */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--soft-blue), transparent);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--dusty-rose), transparent);
    top: 30%;
    left: -150px;
    animation-delay: -5s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--muted-gold), transparent);
    bottom: 10%;
    right: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--soft-coral), transparent);
    top: 60%;
    left: 30%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 3rem;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 1rem 3rem;
    box-shadow: 0 2px 30px rgba(0,0,0,0.05);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    flex-direction: column;
}

.site-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.site-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.02em;
    margin: 0;
}

.site-title a {
    color: inherit;
}

/* Custom Logo */
.custom-logo-link {
    display: block;
}

.custom-logo {
    max-height: 60px;
    width: auto;
}

/* ===== Navigation ===== */
.main-navigation ul {
    display: flex;
    gap: 2.5rem;
}

.main-navigation a {
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--dusty-rose), var(--soft-coral));
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after,
.main-navigation .current_page_item a::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

/* ===== Buttons ===== */
.btn,
.wp-block-button__link,
button[type="submit"],
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--charcoal);
    color: var(--warm-white);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn:hover,
.wp-block-button__link:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    background: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 74, 94, 0.2);
    color: var(--warm-white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--charcoal);
    color: var(--charcoal);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--warm-white);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 3rem 4rem;
    z-index: 1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.hero-text h1 span,
.hero-text .highlight {
    display: block;
    background: linear-gradient(135deg, var(--dusty-rose), var(--soft-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.hero-image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-frame:hover img {
    transform: scale(1.05);
}

.hero-decoration {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid var(--dusty-rose);
    border-radius: 50%;
    top: -30px;
    right: -30px;
    z-index: -1;
    animation: spin 20s linear infinite;
}

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

/* ===== Sections ===== */
.content-section {
    position: relative;
    z-index: 1;
    padding: 6rem 3rem;
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Section Backgrounds */
.section-blue-tint {
    background: linear-gradient(180deg, transparent 0%, rgba(168, 197, 217, 0.1) 50%, transparent 100%);
}

.section-white {
    background: var(--warm-white);
}

.section-cream {
    background: var(--cream);
}

.section-dark {
    background: var(--deep-blue);
    color: var(--warm-white);
}

.section-dark h2,
.section-dark p {
    color: var(--warm-white);
}

/* ===== Cursussen Grid ===== */
.cursussen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.cursus-card {
    background: var(--warm-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.cursus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.cursus-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.cursus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cursus-card:hover .cursus-image img {
    transform: scale(1.1);
}

.cursus-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--warm-white);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--deep-blue);
}

.cursus-content {
    padding: 2rem;
}

.cursus-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.cursus-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.cursus-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cursus-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cursus-meta svg {
    width: 16px;
    height: 16px;
}

/* ===== Lesaanbod Grid ===== */
.lesaanbod-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.les-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: var(--warm-white);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.les-item:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateX(10px);
}

.les-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--soft-blue);
    font-weight: 600;
    width: 60px;
}

.les-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.les-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.les-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.les-item:hover .les-arrow {
    background: var(--charcoal);
    color: var(--warm-white);
}

/* ===== Over Mij Section ===== */
.over-mij-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
}

.over-mij-image {
    position: relative;
}

.over-mij-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.over-mij-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--muted-gold);
    border-radius: 20px;
    top: 20px;
    left: 20px;
    z-index: -1;
}

.over-mij-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.over-mij-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.signature {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--dusty-rose);
    margin-top: 2rem;
}

/* ===== Testimonials ===== */
.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info {
    text-align: left;
}

.testimonial-author-info strong {
    display: block;
    font-size: 1rem;
}

.testimonial-author-info span {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== Contact Section ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--dusty-rose);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--warm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

/* ===== Forms ===== */
.contact-form,
.wpcf7-form {
    background: var(--warm-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label,
.wpcf7-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: var(--dusty-rose);
}

.form-group textarea,
.wpcf7-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn,
.wpcf7-form .wpcf7-submit {
    width: 100%;
    justify-content: center;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--charcoal);
    color: var(--warm-white);
    padding: 4rem 3rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .site-title {
    color: var(--warm-white);
    font-size: 1.5rem;
}

.footer-brand p {
    margin-top: 1rem;
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--dusty-rose);
    transform: translateY(-3px);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

/* ===== WordPress Specific ===== */
.wp-block-image img {
    border-radius: 15px;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

/* Page Content */
.page-content,
.entry-content {
    position: relative;
    z-index: 1;
    padding: 8rem 3rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.entry-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.entry-content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
}

.entry-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content,
    .over-mij-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .over-mij-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem 1.5rem;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--warm-white);
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation li {
        border-bottom: 1px solid #eee;
    }

    .main-navigation a {
        display: block;
        padding: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .content-section {
        padding: 4rem 1.5rem;
    }

    .page-content,
    .entry-content {
        padding: 6rem 1.5rem 3rem;
    }

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

    .les-item {
        grid-template-columns: auto 1fr;
    }

    .les-arrow {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-image-frame img {
        height: 350px;
    }

    .contact-form,
    .wpcf7-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .cursus-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}
