/*
Theme Name: Clothing Loop Deventer
Description: Custom WordPress theme styles based on Tailwind CSS
*/

/* CSS Custom Properties - Color Palette */
:root {
    --color-transparent: transparent;
    --color-white: #fff;
    --color-black: #3c3c3b;

    --color-turquoise: #518d7e;
    --color-teal: #48808b;
    --color-teal-light: #ecf2f3;
    
    --color-yellow: #f7c86f;
    --color-yellow-dark: #f4b63f;
    --color-yellow-darker: #f1a40f;
    --color-yellow-darkest: #c58c41;
    
    --color-skyBlue: #7ecfe0;
    --color-skyBlue-light: #bfe7ef;
    
    --color-blue: #1467b3;
    --color-blue-light: #89b3d9;
    
    --color-pink: #dc77a3;
    --color-pink-light: #ecbbd0;
    
    --color-lilac: #b76dac;
    --color-lilac-light: #dab5d6;
    
    --color-purple: #513484;
    --color-purple-light: #a899c2;
    --color-purple-lighter: #EADEFF;
    
    --color-orange: #ef953d;
    --color-orange-light: #f6c99f;
    
    --color-leafGreen: #a6c665;
    --color-leafGreen-light: #d2e2b3;
    
    --color-mint: #80d2af;
    --color-mint-light: #ceeee2;
    
    --color-green: #66926e;
    --color-green-light: #b1c8b6;
    --color-green-lighter: #e8efe9;
    
    --color-red: #c73643;
    --color-red-light: #e39aa1;
    
    --color-grey: #a5a5a5;
    --color-grey-light: #e8e8e8;
    
    /* Theme Colors */
    --color-primary: var(--color-yellow);
    --color-primary-focus: var(--color-yellow-darker);
    --color-secondary: var(--color-teal);
    --color-secondary-focus: var(--color-black);
    --color-accent: var(--color-turquoise);
    --color-accent-focus: var(--color-black);
    --color-neutral: var(--color-black);
    --color-base-100: var(--color-white);
    --color-base-200: var(--color-grey-light);
    --color-base-300: var(--color-grey);
    --color-base-content: var(--color-black);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--color-base-content);
    background-color: var(--color-base-100);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-teal);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Page and Post Content Headers */
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6,
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
article h1,
article h2,
article h3,
article h4,
article h5,
article h6 {
    color: var(--color-teal) !important;
}

/* Page title headers */
.page-header h1,
.entry-header h1,
.archive-header h1 {
    color: var(--color-teal) !important;
}

p { margin-bottom: 1rem; }

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.max-w-screen-xl { max-width: 1280px; }
.max-w-screen-lg { max-width: 1024px; }
.max-w-screen-md { max-width: 768px; }
.max-w-screen-sm { max-width: 640px; }
.max-w-screen-xs { max-width: 475px; }

.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Spacing */
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }

.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

/* Layout */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-col-reverse { flex-direction: column-reverse; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

.w-full { width: 100%; }
.w-1\/2 { width: 50%; }
.h-full { height: 100%; }
.h-60 { height: 15rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }

.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

.z-10 { z-index: 10; }
.left-0 { left: 0; }
.top-0 { top: 0; }

/* Colors */
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-base-content { color: var(--color-base-content); }

.bg-teal-light { background-color: var(--color-teal-light); }
.bg-teal\/10 { background-color: rgba(72, 128, 139, 0.1); }

/* Text Stroke Effect */
.text-stroke-accent {
    -webkit-text-stroke: 2px var(--color-accent);
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Font Sizes */
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-4xl { font-size: 2.25rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.text-9xl { font-size: 8rem; }

/* Font Weights */
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.font-serif { font-family: 'Playfair Display', Georgia, serif; }
.font-sans { font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }

/* Object Fit */
.object-cover { object-fit: cover; }
.object-top { object-position: top; }

/* Max Width */
.max-w-none { max-width: none; }
.max-w-500 { max-width: 500px; }
.max-w-600 { max-width: 600px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    border: 2px solid transparent;
    cursor: pointer;
    line-height: 1;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-black);
}

.btn-primary:hover {
    background-color: var(--color-primary-focus);
    color: var(--color-black);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-black);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-base-content);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-focus);
}

.btn-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    padding: 0;
}

/* Icons */
.icon-arrow-right::before { content: '→'; }
.icon-arrow-left::before { content: '←'; }

.ml-3 { margin-left: 0.75rem; }
.mr-3 { margin-right: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.pl-2 { padding-left: 0.5rem; }

/* Opacity */
.opacity-70 { opacity: 0.7; }

/* Selection States */
.select-none { user-select: none; }

/* Navigation */
.site-header {
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand a {
    text-decoration: none;
    color: var(--color-base-content);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

/* Custom Logo Styling */
.custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.custom-logo {
    width: 128px;
    height: 80px;
    object-fit: contain;
    transition: all 0.2s ease;
}

/* Navigation Menu */
.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.navbar-nav li {
    position: relative;
}

.navbar-nav a {
    text-decoration: none;
    color: var(--color-base-content);
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 0;
    position: relative;
    display: block;
}

/* Onderstreeping voor actieve/geselecteerde menu items */
.navbar-nav .current-menu-item a,
.navbar-nav .current_page_item a,
.navbar-nav .current-page-ancestor a {
    color: var(--color-green);
}

.navbar-nav .current-menu-item a::after,
.navbar-nav .current_page_item a::after,
.navbar-nav .current-page-ancestor a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-green);
}

.navbar-nav a:hover {
    color: var(--color-green);
}

/* Hamburger Menu Toggle Button */
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.navbar-toggle-icon {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--color-base-content);
    transition: all 0.3s ease;
}

.navbar-toggle-icon::before,
.navbar-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-base-content);
    transition: all 0.3s ease;
}

.navbar-toggle-icon::before {
    top: -8px;
}

.navbar-toggle-icon::after {
    bottom: -8px;
}

/* Hamburger menu active state */
.navbar-toggle[aria-expanded="true"] .navbar-toggle-icon {
    background-color: transparent;
}

.navbar-toggle[aria-expanded="true"] .navbar-toggle-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggle[aria-expanded="true"] .navbar-toggle-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Menu */
.navbar-menu {
    display: block;
}

@media (max-width: 640px) {
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 1rem 0;
    }
    
    .navbar-menu.active {
        display: block;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0;
        padding: 0 1rem;
    }
    
    .navbar-nav li {
        border-bottom: 1px solid var(--color-base-200);
    }
    
    .navbar-nav li:last-child {
        border-bottom: none;
    }
    
    .navbar-nav a {
        padding: 1rem 0;
        font-size: 1.125rem;
    }
    
    /* Onderstreeping aanpassing voor mobile */
    .navbar-nav .current-menu-item a::after,
    .navbar-nav .current_page_item a::after,
    .navbar-nav .current-page-ancestor a::after {
        height: 3px;
        bottom: 1rem;
        background-color: var(--color-green);
    }
}

/* Footer */
.site-footer {
    background: var(--color-teal-light);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Footer layout */
.footer-left {
    width: 100%;
    background-color: var(--color-teal-light);
    padding: 1.5rem;
}

.footer-right {
    width: 100%;
}

/* Match padding between left and right blocks */
.footer-left {
    padding: 1.5rem;
}

.sm-p-10 {
    padding: 1.5rem;
}

.lg-py-14 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.lg-px-16 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Contact section */
.max-w-600 {
    max-width: 600px;
}

/* Remove bullets from contact/social media lists */
.footer-right ul,
.footer-right ol {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-right li {
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-right li::before {
    display: none !important;
}

.lg-mx-0 {
    margin-left: 0;
    margin-right: auto;
}

.lg-grid-cols-contact {
    grid-template-columns: min-content 1fr;
}

.lg-order-1 { order: 1; }
.lg-order-2 { order: 2; }
.lg-order-3 { order: 3; }
.lg-order-4 { order: 4; }

.lg-hidden {
    display: block;
}

/* Social media hover effects */
.hover-bg-purple:hover {
    background-color: #b464a8;
}

.hover-bg-instagram:hover {
    background-color: #E4405F;
}

.group-hover-text-white:hover {
    color: var(--color-white);
}

.group-hover-border-base-content:hover {
    border-color: var(--color-base-content);
}

.group-hover-bg-facebook:hover {
    background-color: #1877F2;
}

.group-hover-bg-linkedin:hover {
    background-color: #0a66c2;
}

/* Icons - Outlined style */
.icon-mail::before { 
    content: '✉️'; 
    font-style: normal;
    font-weight: normal;
}

.icon-instagram::before { 
    content: '◯'; /* Simple circle outline */
    font-style: normal;
    font-weight: normal;
    border: 1px solid currentColor;
    border-radius: 3px;
    padding: 1px;
}

.icon-facebook::before { 
    content: 'f';
    font-family: Arial, sans-serif;
    font-style: normal;
    font-weight: bold;
    border: 1px solid currentColor;
    border-radius: 2px;
    padding: 1px 2px;
}

.icon-linkedin::before { 
    content: 'in';
    font-family: Arial, sans-serif;
    font-style: normal;
    font-weight: bold;
    border: 1px solid currentColor;
    border-radius: 2px;
    padding: 1px;
    font-size: 0.8em;
}

/* Social media button styling */
.footer-right .btn-circle {
    border-color: var(--color-teal) !important;
    color: var(--color-teal) !important;
    background-color: transparent !important;
        margin-bottom: 8px;

}

.footer-right .btn-outline {
    border-color: var(--color-teal) !important;
    color: var(--color-teal) !important;
}

/* Margin and padding */
.me-3 {
    margin-right: 0.75rem;
}

.sm-p-10 {
    padding: 1rem;
}

.lg-py-14 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.lg-px-16 {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Responsive classes */
@media (min-width: 1024px) {
    .footer-content {
        flex-direction: row;
    }
    
    .footer-left,
    .footer-right {
        width: 50%;
    }
    
    /* Match padding between blocks on desktop */
    .footer-left {
        padding: 3.5rem 4rem;
    }
    
    .lg-w-full {
        width: 100%;
    }
    
    .lg-mx-0 {
        margin-left: 0;
        margin-right: 0;
    }
    
    .lg-grid-cols-contact {
        grid-template-columns: min-content 1fr;
    }
    
    .lg-hidden {
        display: none;
    }
    
    .sm-p-10 {
        padding: 2.5rem;
    }
    
    .lg-py-14 {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    
    .lg-px-16 {
        padding-left: 4rem;
        padding-right: 4rem;
    }
    
    .lg-min-h-456 {
        min-height: 456px;
    }
}

/* Footer widgets headers - identical to Contact header */
.footer-widgets h1,
.footer-widgets h2,
.footer-widgets h3,
.footer-widgets h4,
.footer-widgets h5,
.footer-widgets h6,
.widget-title {
    display: block !important;
    color: var(--color-secondary) !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: bold !important;
    font-size: 2rem !important;
    margin-bottom: 0.75rem !important;
    margin-top: 1rem !important;
}

/* First header in footer widgets should not have top margin */
.footer-widgets h1:first-child,
.footer-widgets h2:first-child,
.footer-widgets h3:first-child,
.footer-widgets h4:first-child,
.footer-widgets h5:first-child,
.footer-widgets h6:first-child,
.widget-title:first-child {
    margin-top: 0 !important;
}

/* Contact header matching left block headers */
.footer-contact-header {
    color: var(--color-secondary) !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: bold !important;
    font-size: 2rem !important;
    margin-bottom: 0.75rem !important;
}

/* Footer widget lists - remove bullets and styling */
.footer-widgets ul,
.footer-widgets ol {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-widgets li {
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-widgets li::before {
    display: none !important;
}

/* Footer widget links - identical to header menu */
.footer-widgets a,
.footer-menu a {
    text-decoration: none !important;
    color: var(--color-base-content) !important;
    font-weight: 500 !important;
    transition: color 0.2s !important;
    padding: 0.5rem 0 !important;
    position: relative !important;
    display: block !important;
    border: none !important;
    background: none !important;
}

/* Remove any default link styling */
.footer-widgets a:visited,
.footer-widgets a:link {
    color: var(--color-base-content) !important;
    text-decoration: none !important;
}

/* Hover states */
.footer-widgets a:hover,
.footer-menu a:hover {
    color: var(--color-green) !important;
    text-decoration: none !important;
}

/* Active page styling */
.footer-widgets .current-menu-item a,
.footer-widgets .current_page_item a,
.footer-widgets .current-page-ancestor a,
.footer-menu .current-menu-item a,
.footer-menu .current_page_item a,
.footer-menu .current-page-ancestor a {
    color: var(--color-green) !important;
}

.footer-widgets .current-menu-item a::after,
.footer-widgets .current_page_item a::after,
.footer-widgets .current-page-ancestor a::after,
.footer-menu .current-menu-item a::after,
.footer-menu .current_page_item a::after,
.footer-menu .current-page-ancestor a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-green);
}

/* Footer menu styling */
.footer-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-menu li {
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-menu li::before {
    display: none !important;
}

.site-info {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-base-300);
}

/* Copyright Bar */
.copyright-bar {
    background: var(--color-teal);
    color: var(--color-white);
    border-top: 1px solid var(--color-base-200);
}

/* Additional utility classes */
.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.md-px-20 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.sm-text-right {
    text-align: center;
}

@media (min-width: 641px) {
    .md-px-20 {
        padding-left: 5rem;
        padding-right: 5rem;
    }
    
    .sm-text-right {
        text-align: right;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-flex {
    display: flex;
    flex-direction: column;
}

.hero-text-section {
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    order: 2;
}

.hero-text-content {
    max-width: 475px;
}

.hero-image-section {
    order: 1;
}

.hero-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    object-position: top;
}



/* Carousel */
.carousel {
    display: flex;
    gap: 1rem;
    scroll-behavior: smooth;
}

.carousel-item {
    flex: 0 0 auto;
}

.testimonials-carousel {
    display: flex;
    gap: 1rem;
    scroll-behavior: smooth;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonials-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Testimonials specific styling */
.carousel::-webkit-scrollbar {
    display: none;
}

.carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Testimonial card styling */
.testimonial-card {
    width: 288px; /* 18rem exact */
    background-color: #ebf1f2;
    position: relative;
    padding: 3rem 1rem 1rem 1rem; /* 3rem top, 1rem other sides */
    min-height: fit-content;
}

.testimonial-content {
    width: 256px; /* Text width as specified */
    margin: 0 auto;
}

.testimonial-quote {
    position: absolute;
    top: -3rem;
    left: 0.5rem;
    font-size: 13rem;
    color: #bbd0d4;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    z-index: 1;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 0.75rem;
}

/* Width classes */
.w-72 {
    width: 18rem; /* 288px */
}

.w-64 {
    width: 16rem; /* 256px */
}

/* Background classes */
.bg-testimonial {
    background-color: #ebf1f2;
}

/* Text color for quote */
.text-quote {
    color: #bbd0d4;
}

/* Image Carousel */
.image-carousel img {
    width: auto;
    height: 100%;
    display: inline-block;
}

/* Events Page Styles */
.events-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.event-card {
    background: var(--color-white);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.event-card .event-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.event-card .event-content {
    padding: 1.5rem;
}

.event-date span {
    display: inline-block;
    background-color: var(--color-teal);
    color: var(--color-white);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.event-title a {
    color: var(--color-teal);
    text-decoration: none;
    transition: color 0.2s ease;
}

.event-title a:hover {
    color: var(--color-accent);
}

.event-location {
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-excerpt {
    color: var(--color-base-content);
    line-height: 1.6;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--color-secondary);
}

.no-events {
    text-align: center;
    padding: 3rem 0;
}

.no-events .text-6xl {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
}

/* Height utilities */
.h-48 {
    height: 12rem;
}

.h-96 {
    height: 24rem;
}

/* Event Single Page Styles */
.event-single .event-hero {
    position: relative;
}

.event-single .event-badge {
    flex-shrink: 0;
}

.event-single .event-badge span {
    display: inline-block;
    background-color: var(--color-teal);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.event-single .event-featured-image img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.event-single .event-meta-info {
    background-color: var(--color-teal-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.event-single .event-meta-item {
    display: flex;
    align-items: center;
}

.event-single .event-meta-item .text-2xl {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.event-single .event-meta-item .font-semibold {
    font-weight: 600;
    color: var(--color-teal);
}

.event-single .event-meta-item .text-lg {
    font-size: 1.125rem;
}

.event-single .event-past-notice {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 0.25rem;
}

.event-single .event-tags {
    margin-top: 1.5rem;
}

.event-single .event-tags h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-teal);
}

.event-single .event-tags a {
    display: inline-block;
    background-color: var(--color-teal-light);
    color: var(--color-teal);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.event-single .event-tags a:hover {
    background-color: var(--color-teal);
    color: var(--color-white);
}

.event-navigation {
    padding-top: 3rem !important;
    border-top: 1px solid var(--color-teal-light);
}

/* Prose styling for event content */
.prose {
    max-width: none;
    line-height: 1.7;
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    color: var(--color-teal);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose p {
    margin-bottom: 1.5rem;
}

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

.prose li {
    margin-bottom: 0.5rem;
}

/* Grid responsive */
@media (min-width: 768px) {
    .event-single .event-actions .flex {
        flex-direction: row;
    }
}

.sm-flex-row {
    flex-direction: column;
}

@media (min-width: 640px) {
    .sm-flex-row {
        flex-direction: row;
    }
}

/* Blog Page Styles */
.blog-page .page-header {
    background: var(--color-white);
}

/* Blog page header text alignment */
.blog-page .page-header h1 {
    text-align: left !important;
}

.blog-page .page-header p {
    text-align: left !important;
}

/* Archive page header styling - same as blog page */
.archive-page .page-header {
    background: var(--color-white);
}

.archive-page .page-header h1 {
    text-align: left !important;
}

.archive-page .page-header .archive-description {
    text-align: left !important;
}

.post-card {
    transition: all 0.3s ease;
    border: 1px solid var(--color-base-200);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.post-card .entry-title a {
    text-decoration: none;
    color: inherit;
}

.post-card .entry-title a:hover {
    color: var(--color-primary);
}

.entry-meta {
    font-size: 0.875rem;
    color: var(--color-base-300);
}

.entry-meta a {
    color: inherit;
    text-decoration: none;
}

.entry-meta a:hover {
    color: var(--color-primary);
}

.separator {
    margin: 0 0.5rem;
}

/* Grid Layout */
.posts-grid .grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .posts-grid .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .posts-grid .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Pagination Styles */
.pagination-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-nav .nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-nav .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    color: var(--color-base-content);
    border: 1px solid var(--color-base-200);
    transition: all 0.2s ease;
    min-width: 2.5rem;
    height: 2.5rem;
}

.pagination-nav .page-numbers:hover,
.pagination-nav .page-numbers.current {
    background-color: var(--color-primary);
    color: var(--color-base-content);
    border-color: var(--color-primary);
}

.pagination-nav .page-numbers.dots {
    border: none;
    background: none;
}

.pagination-nav .prev,
.pagination-nav .next {
    padding: 0.75rem;
}

/* Button Small Variant */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Shadow utilities */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.transition-shadow {
    transition-property: box-shadow;
}

.transition-colors {
    transition-property: color, background-color, border-color;
}

.duration-300 {
    transition-duration: 300ms;
}

/* Grid utilities */
.grid {
    display: grid;
}

.gap-8 {
    gap: 2rem;
}

.md-grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.lg-grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Border radius */
.rounded-lg {
    border-radius: 0.5rem;
}

/* Screen Reader Text */
.sr-only,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive Design */
@media (max-width: 640px) {
    /* Navigation handled in navigation section above */
    
    .text-6xl { font-size: 3rem; }
    .text-7xl { font-size: 3.5rem; }
    .text-9xl { font-size: 4rem; }
    
    .flex-col-reverse {
        flex-direction: column-reverse;
    }
    
    .md-flex-row {
        flex-direction: column;
    }
    
    .md-w-half {
        width: 100%;
    }
    
    .md-text-6xl {
        font-size: 2.5rem;
    }
    
    .md-mb-24 {
        margin-bottom: 3rem;
    }
    
    .md-mb-20 {
        margin-bottom: 3rem;
    }
    
    .hidden {
        display: none;
    }
    
    .sm-flex {
        display: flex;
    }
    
    .sm-flex-row {
        flex-direction: row;
    }
    
    .sm-h-96 {
        height: 24rem;
    }
}

@media (min-width: 641px) {
    /* Navigation menu wordt weer horizontaal vanaf 641px */
    .navbar-toggle {
        display: none;
    }
    
    .navbar-menu {
        display: block;
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
    
    .navbar-nav {
        flex-direction: row;
        gap: 2rem;
        padding: 0;
    }
    
    .navbar-nav li {
        border-bottom: none;
    }
    
    .navbar-nav a {
        padding: 0.5rem 0;
        font-size: 1rem;
    }
    
    /* Onderstreeping aanpassing voor desktop */
    .navbar-nav .current-menu-item a::after,
    .navbar-nav .current_page_item a::after,
    .navbar-nav .current-page-ancestor a::after {
        height: 2px;
        bottom: 0;
    }
}

@media (min-width: 900px) {
    .md-block { display: block; }
    .md-flex-row { flex-direction: row; }
    .md-w-half { width: 50%; }
    .md-text-6xl { font-size: 3.75rem; }
    .md-text-7xl { font-size: 4.5rem; }
    .md-text-9xl { font-size: 8rem; }
    .md-mb-24 { margin-bottom: 6rem; }
    .md-mb-20 { margin-bottom: 5rem; }
    .md-mb-0 { margin-bottom: 0; }
    .md-pt-20 { padding-top: 5rem; }
    .md-pt-16 { padding-top: 4rem; }
    .md-ps-40 { padding-left: 10rem; }
    .md-pe-20 { padding-right: 5rem; }
    .md-px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
    .md-h-auto { height: auto; }
    .md-h-80 { height: 20rem; }
    .md-max-w-500 { max-width: 500px; }
    .md-max-w-600 { max-width: 600px; }
    .md-justify-end { justify-content: flex-end; }
    .md-animate-slide { animation: slide 30s linear infinite; }
    .ms-40 { margin-left: 40%; }
    
    /* Hero Section Desktop */
    .hero-flex {
        flex-direction: row;
    }
    
    .hero-text-section {
        width: 50%;
        padding: 5rem 5rem 5rem 10rem;
        justify-content: flex-end;
        order: 1;
    }
    
    .hero-text-content {
        max-width: 500px;
    }
    
    .hero-image-section {
        width: 50%;
        padding: 4rem 5rem 4rem 0;
        order: 2;
    }
    
    .hero-image {
        height: auto;
        max-width: 600px;
    }
    
    /* Logo Medium Desktop - vanaf 900px wordt logo groter */
    .custom-logo {
        width: 160px;
        height: 112px;
    }
}

@media (min-width: 1200px) {
    .lg-text-9xl { font-size: 8rem; }
    .lg-pe-40 { padding-right: 10rem; }
    .lg-max-w-600 { max-width: 600px; }
    
    /* Hero Section Large Desktop */
    .hero-image-section {
        padding-right: 10rem;
    }
}