/**
 * Homepage Redesign CSS
 * Modern, clean layout with proper spacing and visual hierarchy
 *
 * @package KCNijmegen
 */

/* =============================================================================
   WAVE DECORATIONS - Inspired by hondenzwemvijver.nl
   ============================================================================= */

.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider .wave-fill {
    fill: var(--primary-color, #1e5631);
}

/* Specific wave fill colors for light mode */
.wave-fill-green {
    fill: #1e5631;
}

.wave-fill-light {
    fill: #f8fafc;
}

.wave-fill-testimonials {
    fill: #f0fdf4;
}

/* Wave positioned at bottom of section (pointing down) */
.wave-bottom {
    margin-bottom: -1px;
}

.wave-bottom svg {
    transform: rotate(180deg);
}

/* Wave positioned at top of section (pointing up) */
.wave-top {
    margin-top: -1px;
}

/* Section with wave background */
.section-with-wave {
    position: relative;
}

.section-with-wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23f8fafc' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,64C960,75,1056,85,1152,80C1248,75,1344,53,1392,42.7L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    z-index: 1;
}

/* Decorative blob shapes */
.blob-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    bottom: -50px;
    left: -50px;
}

/* Wave transition helper classes */
.wave-transition-green {
    background: #f8fafc;
    margin-top: -1px;
}

.wave-bottom-white {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.section-waarom {
    position: relative;
    padding-bottom: 80px !important;
}

/* =============================================================================
   FEATURE CARDS - Light theme (for dark backgrounds)
   ============================================================================= */

.feature-card-light {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 16px !important;
    padding: 30px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-light:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2) !important;
}

.feature-card-light .feature-title {
    color: #ffffff !important;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card-light .feature-description {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-icon-light {
    background: rgba(255, 255, 255, 0.2) !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-light .dashicons {
    color: #ffffff !important;
    font-size: 28px;
    width: 28px;
    height: 28px;
}

/* =============================================================================
   HERO SECTION - Full Width Image with Overlay
   ============================================================================= */

.hero-fullwidth {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 500px;
    padding: 80px 20px;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0 0 30px 0;
    color: rgba(255, 255, 255, 0.95);
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Hero Button Styles */
.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
}

.btn-hero-primary {
    background: white;
    color: #2e7d32;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-hero-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: #2e7d32;
    transform: translateY(-2px);
}

/* =============================================================================
   SECTION SPACING & STRUCTURE
   ============================================================================= */

.section-spacing {
    padding: 60px 20px;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-primary {
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #1a1a1a;
}

.bg-primary .section-title,
.section-contact .contact-title {
    color: white;
}

.section-description {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.bg-primary .section-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Section CTA (bottom buttons) */
.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* =============================================================================
   BUTTONS - Consistent styling across all sections
   ============================================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-outline-large {
    padding: 14px 28px;
    font-size: 1.05rem;
    background: white;
    color: #2e7d32;
    border: 2px solid #2e7d32;
}

.btn-outline-large:hover {
    background: #2e7d32;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-light-large {
    padding: 14px 28px;
    font-size: 1.05rem;
    background: white;
    color: #2e7d32;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-light-large:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline-light-large {
    padding: 14px 28px;
    font-size: 1.05rem;
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light-large:hover {
    background: white;
    color: #2e7d32;
    transform: translateY(-2px);
}

/* =============================================================================
   CURSUSSEN SECTION
   ============================================================================= */

.section-cursussen .cursussen-content {
    margin-bottom: 30px;
}

/* Override existing course card styles for better spacing */
.section-cursussen .course-card {
    margin-bottom: 25px;
}

/* =============================================================================
   WAAROM KC NIJMEGEN - Feature Cards
   ============================================================================= */

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

.feature-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e5631, #2d7a46, #1e5631);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.15);
    transform: translateY(-8px);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.feature-icon-wrapper .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: white;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #1a1a1a;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* =============================================================================
   ACTIVITEITEN SECTION
   ============================================================================= */

.activiteiten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.activiteit-card {
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.activiteit-card:hover {
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.2);
    transform: translateY(-8px);
    border-color: rgba(46, 125, 50, 0.2);
}

.activiteit-date {
    background: linear-gradient(145deg, #1e5631 0%, #2d7a46 50%, #1e5631 100%);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    position: relative;
    overflow: hidden;
}

.activiteit-date::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.date-display {
    text-align: center;
    color: white;
}

.date-display .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-display .month {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

.activiteit-content {
    padding: 25px;
    flex: 1;
}

.activiteit-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.activiteit-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 10px 0;
}

.activiteit-location .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.activiteit-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0 0 15px 0;
}

.activiteit-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #2e7d32;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.activiteit-link:hover {
    color: #1b5e20;
    gap: 8px;
}

.no-activiteiten {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 8px;
}

/* =============================================================================
   CONTACT / CTA SECTION
   ============================================================================= */

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: white;
}

.contact-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 30px 0;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.contact-info .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

.contact-info a:hover {
    border-bottom-color: white;
}

/* =============================================================================
   TESTIMONIALS SECTION
   ============================================================================= */

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

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(46, 125, 50, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.15);
}

.testimonial-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    padding-top: 20px;
    font-style: italic;
}

.testimonial-content p {
    margin: 0;
}

.testimonial-author {
    font-size: 1rem;
    color: #1e5631;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #1e5631, #2d7a46);
}

/* Testimonial Rating Stars */
.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating .dashicons {
    color: #fbbf24;
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Testimonial Author with name and role */
.testimonial-author .author-name {
    display: block;
    font-weight: 700;
    color: #1e5631;
    font-size: 1.05rem;
}

.testimonial-author .author-role {
    display: block;
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
    margin-top: 2px;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1e5631 0%, #2d7a46 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Background colors */
.bg-success-subtle {
    background-color: #f0fdf4;
}

.bg-success-light {
    background-color: #dcfce7;
}

/* Wave transition helpers */
.wave-transition-testimonials {
    background: #f8fafc;
    margin-top: -1px;
}

/* =============================================================================
   NEWSLETTER SECTION
   ============================================================================= */

.section-newsletter {
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
    overflow: hidden;
}

.newsletter-wrapper {
    position: relative;
    background: linear-gradient(145deg, #1e5631 0%, #2d7a46 50%, #1e5631 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 86, 49, 0.3);
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.newsletter-icon .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: white;
}

.newsletter-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
}

.newsletter-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 30px 0;
}

.newsletter-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-facebook {
    background: #1877f2;
    color: white;
}

.social-facebook:hover {
    background: #166fe5;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
}

.social-btn .dashicons {
    font-size: 22px;
    width: 22px;
    height: 22px;
}

/* Decorative circles */
.newsletter-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.decoration-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.decoration-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

/* =============================================================================
   GOOGLE REVIEWS WIDGET
   ============================================================================= */

/* Compact Badge */
.google-reviews-badge {
    display: inline-block;
}

.google-reviews-badge-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.google-reviews-logo svg {
    display: block;
}

.google-reviews-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.google-reviews-score {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-reviews-score .score-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.google-reviews-stars {
    display: flex;
    gap: 2px;
}

.google-reviews-stars .star {
    font-size: 1.1rem;
    line-height: 1;
}

.google-reviews-stars .star-full {
    color: #fbbf24;
}

.google-reviews-stars .star-half {
    color: #fbbf24;
    opacity: 0.6;
}

.google-reviews-stars .star-empty {
    color: #d1d5db;
}

.google-reviews-count {
    font-size: 0.85rem;
    color: #666;
}

.google-reviews-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #1e5631;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    background: #f0fdf4;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.google-reviews-link:hover {
    background: #dcfce7;
    color: #166534;
}

.google-reviews-link .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

/* Full Widget */
.google-reviews-widget {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.google-reviews-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.google-reviews-logo-large svg {
    display: block;
}

.google-reviews-summary {
    flex: 1;
}

.google-reviews-score-large {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.score-number-large {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.score-max {
    font-size: 1rem;
    color: #666;
}

.google-reviews-total {
    font-size: 0.9rem;
    color: #666;
    margin-top: 4px;
}

.google-reviews-write-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #1e5631;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.google-reviews-write-btn:hover {
    background: #166534;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 86, 49, 0.3);
}

/* Reviews List */
.google-reviews-list {
    padding: 20px 25px;
}

.google-review-item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.google-review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e5631 0%, #2d7a46 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-time {
    font-size: 0.85rem;
    color: #999;
}

.review-text {
    color: #444;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer */
.google-reviews-footer {
    padding: 15px 25px;
    background: #f8fafc;
    text-align: center;
}

.google-reviews-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1e5631;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.google-reviews-all-link:hover {
    color: #166534;
    text-decoration: underline;
}

.google-reviews-all-link .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Admin notice */
.google-reviews-notice {
    padding: 15px;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
    color: #92400e;
}

/* Google Reviews Section on Homepage */
.google-reviews-section {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.google-reviews-centered {
    margin-bottom: 0;
}

/* =============================================================================
   RESPONSIVE DESIGN - Mobile First
   ============================================================================= */

/* Tablets and Small Desktops */
@media (max-width: 768px) {
    .hero-fullwidth {
        min-height: 400px;
    }

    .hero-content-wrapper {
        min-height: 400px;
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }

    .section-spacing {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .activiteiten-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .activiteit-card {
        flex-direction: column;
    }

    .activiteit-date {
        min-width: auto;
        padding: 15px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-light-large,
    .btn-outline-light-large {
        width: 100%;
        max-width: 300px;
    }

    .contact-info {
        flex-direction: column;
        gap: 15px;
    }

    /* Newsletter responsive */
    .newsletter-wrapper {
        padding: 40px 25px;
        border-radius: 16px;
    }

    .newsletter-title {
        font-size: 1.75rem;
    }

    .newsletter-text {
        font-size: 1rem;
    }

    .newsletter-social {
        flex-direction: column;
        align-items: center;
    }

    .social-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .hero-fullwidth {
        min-height: 350px;
    }

    .hero-content-wrapper {
        min-height: 350px;
        padding: 40px 15px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .feature-icon-wrapper .dashicons {
        font-size: 30px;
        width: 30px;
        height: 30px;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .activiteit-content {
        padding: 20px;
    }

    .contact-title {
        font-size: 2rem;
    }
}

/* =============================================================================
   LOADING OPTIMIZATION
   ============================================================================= */

/* Lazy load image placeholder */
.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
    z-index: 0;
}

/* Smooth image loading */
.hero-image {
    opacity: 1;
    transition: opacity 0.5s ease-in;
}

.hero-image.loaded {
    opacity: 1;
}

/* =============================================================================
   DARK MODE SUPPORT
   ============================================================================= */

@media (prefers-color-scheme: dark) {
    .section-title {
        color: #e8e8e8;
    }

    .section-description {
        color: #b0b0b0;
    }

    .feature-card {
        background: #2a2a2a;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .feature-title {
        color: #e8e8e8;
    }

    .feature-description {
        color: #b0b0b0;
    }

    .activiteit-card {
        background: #2a2a2a;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .activiteit-title {
        color: #e8e8e8;
    }

    .activiteit-location,
    .activiteit-excerpt {
        color: #b0b0b0;
    }

    .testimonial-card {
        background: #2a2a2a;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .testimonial-content {
        color: #b0b0b0;
    }

    .no-activiteiten {
        background: #2a2a2a;
    }

    .bg-light {
        background-color: #1a1a1a;
    }
}
