/**
 * Custom styles for Quentin Coaching theme
 */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

/* Font Face declarations for Marion - commented out until font files are available */
/*
@font-face {
    font-family: 'Marion';
    src: url('../fonts/Marion.woff2') format('woff2'),
         url('../fonts/Marion.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Marion';
    src: url('../fonts/Marion-Bold.woff2') format('woff2'),
         url('../fonts/Marion-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
*/

:root {
    --primary-color: #23294E;     /* Dark blue from logo - primary accent color */
    --secondary-color: #BD6F34;   /* Orange/brown from logo - secondary color */
    --primary-light: #3F4673;     /* Light blue - lighter primary variant */
    --primary-dark: #181D3D;      /* Dark blue - darker primary variant */
    
    /* New integrated palette */
    --accent1: #FFCDB2;           /* Light peach */
    --accent2: #FFB4A1;           /* Peach */
    --accent3: #E4989C;           /* Dusty rose */
    --accent4: #B5838E;           /* Mauve */
    --accent5: #6C6876;           /* Purple gray */
    
    --text-color: #333333;        /* Dark gray for main text */
    --text-light: #666666;        /* Light gray for secondary text */
    --background-color: #FFFFFF;  /* White background color */
    --light-bg: #F8F9FA;          /* Light gray background color */
    --border-color: #E4989C;      /* Dusty rose for borders */
    --container-width: 1400px;
    
    /* RGB versions for transparency use */
    --primary-color-rgb: 35, 41, 78;      /* #23294E */
    --secondary-color-rgb: 189, 111, 52;  /* #BD6F34 */
    --primary-light-rgb: 63, 70, 115;     /* #3F4673 */
    --primary-dark-rgb: 24, 29, 61;       /* #181D3D */
    
    --accent1-rgb: 255, 205, 178;         /* #FFCDB2 */
    --accent2-rgb: 255, 180, 161;         /* #FFB4A1 */
    --accent3-rgb: 228, 152, 156;         /* #E4989C */
    --accent4-rgb: 181, 131, 142;         /* #B5838E */
    --accent5-rgb: 108, 104, 118;         /* #6C6876 */
    
    /* Font families */
    --heading-font: 'Manrope', 'Marion', 'Optima', 'Segoe UI', sans-serif;
    --body-font: 'Libre Franklin', 'Optima', 'Segoe UI', 'Trebuchet MS', sans-serif;
}

/* Apply fonts to the whole document */
body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
}

/* General list styling - ensure consistent bullet alignment */
ul, ol {
    padding-left: 25px;
    margin: 1em 0;
}

li {
    margin-bottom: 8px;
}

ul.no-bullets {
    list-style: none;
    padding-left: 0;
}

/* Global heading styles - override any default blue colors */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color) !important;
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

/* Global link styles - ensure all states use the color scheme */
a,
a:link,
a:active, 
a:focus,
a:hover,
a:visited {
    color: var(--secondary-color);
    text-decoration-color: var(--secondary-color);
}

/* General Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.site-content {
    padding: 40px 0;
}

/* Header Styles */
.site-header {
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background-color: var(--accent1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo {
    max-height: 80px;
    width: auto;
    display: block;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
}

.site-title a {
    text-decoration: none;
    color: var(--primary-color);
}

/* Enhanced Navigation Styles */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
    margin-right: 20px;
    display: block !important; /* Force display of menu items */
}

.main-navigation a,
.main-navigation a:link,
.main-navigation a:visited,
.main-navigation a:active,
.main-navigation a:focus,
.main-navigation a:hover {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--primary-color) !important;
    font-weight: 500;
    transition: color 0.3s;
    border: none;
    outline: none;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a {
    color: var(--secondary-color) !important;
}

/* Dropdown Menu */
.main-navigation ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99999;
    background-color: var(--accent1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    border-radius: 0;
    padding: 10px 0;
    flex-direction: column;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    display: block;
}

.main-navigation ul ul li {
    margin: 0;
    width: 100%;
}

.main-navigation ul ul a {
    padding: 8px 15px;
    width: 100%;
}

.main-navigation ul ul a:hover {
    background-color: var(--accent2);
}

/* Current menu item */
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a {
    color: var(--secondary-color) !important;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color) !important;
}

/* Menu item with children */
.main-navigation .menu-item-has-children > a::after,
.main-navigation .page_item_has_children > a::after {
    content: "▼";
    font-size: 10px;
    margin-left: 5px;
    vertical-align: middle;
}

.main-navigation .menu-item-has-children:hover > a::after,
.main-navigation .page_item_has_children:hover > a::after {
    content: "▲";
}

.main-navigation ul ul .menu-item-has-children > a::after,
.main-navigation ul ul .page_item_has_children > a::after {
    content: "►";
    float: right;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s;
}

/* Dropdown toggle for mobile */
.dropdown-toggle {
    display: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: var(--text-color);
    position: absolute;
    right: 0;
    top: 5px;
    width: 40px;
}

/* ======================================
   BUTTON SYSTEM - CONSOLIDATED STYLES
   ====================================== */

/* Base Button - Core styles for all buttons */
.btn,
input[type="submit"],
input[type="button"],
.button,
.cta-button,
.read-more.btn,
.floating-menu-toggle {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

/* 
 * Primary Button Style (for light backgrounds)
 * Orange/brown background with white text
 */
.btn-primary,
.btn-secondary,
.btn,
input[type="submit"],
input[type="button"],
.button,
.cta-button,
.floating-menu-toggle,
.service-card .btn,
.help-option-card .btn {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* 
 * Inverted Button Style (for colored backgrounds)
 * Blue background with white text
 */
.btn-inverted,
.colored-bg .btn,
.colored-bg .btn-primary,
.hero-section .btn-primary,
.about-section .btn {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Outline Button Variation */
.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Button States - Hover, Focus, Active */
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.button:hover,
.cta-button:hover,
.floating-menu-toggle:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-inverted:hover,
.colored-bg .btn:hover,
.colored-bg .btn-primary:hover,
.hero-section .btn-primary:hover,
.about-section .btn:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* 
 * SPECIFIC OVERRIDES FOR THE HERO SECTION
 * Hero buttons should always use primary colors on the primary background
 */
.hero-buttons .btn {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    padding: 12px 25px; /* Slightly larger padding for hero CTA */
}

.hero-buttons .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* CTA Section button override - ensure consistency */
.cta-section .btn,
.cta-content .btn,
.cta-content .btn-primary {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.cta-section .btn:hover,
.cta-content .btn:hover,
.cta-content .btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Button styles for specific components */
.watch-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white !important;
    padding: 6px 12px;
    border-radius: 0;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.watch-btn:hover {
    background-color: var(--primary-light);
    color: white !important;
}

.blog-read-more {
    background-color: var(--primary-color);
    color: white !important;
    padding: 6px 12px;
    border-radius: 0;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.blog-read-more:hover {
    background-color: var(--primary-light);
    color: white !important;
    text-decoration: none;
}

/* Button styles */
.btn,
input[type="submit"],
.wp-block-button__link {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.btn-primary:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Specific styles for Wandelcoaching CTA button */
.wandel-coaching-cta .btn-primary {
    color: white; 
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.wandel-coaching-cta .btn-primary:hover {
    color: white; 
    background-color: var(--primary-color); 
    border-color: var(--primary-color);
}

/* Hero Section */
.hero-section, 
body .hero-section {
    background-color: var(--accent1) !important;
    color: var(--text-color) !important;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 400px;
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hero Image Container Styles */
.hero-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image-container:hover {
    transform: scale(1.02);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    max-height: 500px;
}

/* Hero Video Styles */
.hero-video-container {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-video-container:hover {
    transform: scale(1.02);
}

.hero-video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.hero-video-container:hover .hero-video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    margin-bottom: 15px;
    transition: transform 0.2s ease;
}

.hero-video-container:hover .play-button {
    transform: scale(1.1);
}

.play-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Hero video container styling */
.hero-video-container {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-video-container:hover {
    transform: scale(1.02);
}

/* Video.js City Theme with Website Colors */
.video-js {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100% !important;
    height: 400px !important;
}

/* Fix for Firefox width issues */
.vjs-theme-city {
    width: 100% !important;
    height: 400px !important;
    max-width: 100% !important;
}

/* City theme with website colors */
.vjs-theme-city {
    --vjs-theme-city--primary: var(--secondary-color) !important;
    --vjs-theme-city--secondary: var(--primary-color) !important;
    --vjs-theme-city--accent: var(--accent1) !important;
}

.vjs-theme-city .vjs-big-play-button {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    line-height: 60px !important;
    font-size: 24px !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    transition: all 0.3s ease !important;
}

.vjs-theme-city:hover .vjs-big-play-button {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
}

/* City theme control bar with website colors */
.vjs-theme-city .vjs-control-bar {
    background: linear-gradient(180deg, rgba(35, 41, 78, 0.9) 0%, rgba(35, 41, 78, 0.8) 100%) !important;
    transition: all 0.3s ease !important;
}

/* Control bar when video is playing - wider and more transparent */
.vjs-theme-city.vjs-playing .vjs-control-bar {
    background: linear-gradient(180deg, rgba(35, 41, 78, 0.6) 0%, rgba(35, 41, 78, 0.5) 100%) !important;
    padding: 0 20px !important;
    margin: 0 10px !important;
    border-radius: 8px !important;
}

.vjs-theme-city .vjs-progress-control .vjs-progress-holder {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.vjs-theme-city .vjs-progress-control .vjs-play-progress {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent2) 100%) !important;
}

.vjs-theme-city .vjs-progress-control .vjs-load-progress {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.vjs-theme-city .vjs-time-control {
    color: white !important;
}

.vjs-theme-city .vjs-volume-panel .vjs-volume-control {
    background-color: rgba(35, 41, 78, 0.9) !important;
}

.vjs-theme-city .vjs-fullscreen-control {
    color: white !important;
}

.vjs-theme-city .vjs-fullscreen-control:hover {
    color: var(--secondary-color) !important;
}

/* City theme button styling */
.vjs-theme-city .vjs-button {
    color: white !important;
}

.vjs-theme-city .vjs-button:hover {
    color: var(--secondary-color) !important;
}

/* City theme slider styling */
.vjs-theme-city .vjs-slider {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.vjs-theme-city .vjs-slider-horizontal .vjs-play-progress {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent2) 100%) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vjs-theme-city .vjs-big-play-button {
        width: 50px !important;
        height: 50px !important;
        line-height: 50px !important;
        font-size: 20px !important;
    }
}

/* iOS Safari specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .vjs-theme-city {
        /* Force hardware acceleration on iOS */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .vjs-theme-city video {
        /* Ensure video displays properly on iOS */
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

/* Ensure video container is visible on iOS */
.hero-video-container .vjs-theme-city {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Native HTML5 video styling for Safari */
.hero-video-container video:not(.video-js) {
    width: 100% !important;
    height: 400px !important;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Safari specific video controls */
.hero-video-container video:not(.video-js)::-webkit-media-controls {
    background-color: rgba(35, 41, 78, 0.9);
    transition: all 0.3s ease;
}

.hero-video-container video:not(.video-js)::-webkit-media-controls-panel {
    background-color: rgba(35, 41, 78, 0.9);
    transition: all 0.3s ease;
}

/* Native video controls when playing - more transparent */
.hero-video-container video:not(.video-js):not([paused])::-webkit-media-controls {
    background-color: rgba(35, 41, 78, 0.6);
}

.hero-video-container video:not(.video-js):not([paused])::-webkit-media-controls-panel {
    background-color: rgba(35, 41, 78, 0.6);
}

/* Native video with playing class */
.hero-video-container video:not(.video-js).playing::-webkit-media-controls {
    background-color: rgba(35, 41, 78, 0.6);
}

.hero-video-container video:not(.video-js).playing::-webkit-media-controls-panel {
    background-color: rgba(35, 41, 78, 0.6);
}

.hero-video-container video:not(.video-js)::-webkit-media-controls-play-button {
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.hero-section .hero-content h1, 
body .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color) !important;
}

.hero-section .hero-content h2, 
body .hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--secondary-color) !important;
}

.hero-section .hero-content p, 
body .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color) !important;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

/* Front Page Hero - Specific styling */
.front-page .hero-section,
body.home .hero-section {
    background-color: var(--accent1) !important;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.front-page .hero-content,
body.home .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.front-page .hero-content h1,
body.home .hero-content h1 {
    color: var(--primary-color) !important;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.front-page .hero-content p,
body.home .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-color) !important;
}

/* Ensure mobile consistency */
@media (max-width: 768px) {
    .hero-section,
    .front-page .hero-section,
    body .hero-section,
    body.home .hero-section {
        background-color: var(--accent1) !important;
        padding: 40px 0;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img,
    .hero-main-image {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .hero-image-container {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-content h1,
    .front-page .hero-content h1,
    body .hero-content h1,
    body.home .hero-content h1 {
        color: var(--primary-color) !important;
        font-size: 30px;
    }
    
    .hero-content h2,
    .front-page .hero-content h2,
    body .hero-content h2,
    body.home .hero-content h2 {
        font-size: 24px;
        color: var(--secondary-color) !important;
    }
    
    .hero-content p,
    .front-page .hero-content p,
    body .hero-content p,
    body.home .hero-content p {
        font-size: 16px;
        color: var(--text-color) !important;
    }
}

/* Services Section */
.services-section {
    background-color: white;
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background-color: #f9f9f9;
    border-radius: 0;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card p {
    margin-bottom: 20px;
    color: #555;
}

.service-card .read-more {
    display: inline-block;
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.service-card .read-more:after {
    content: '→';
    margin-left: 5px;
    transition: margin-left 0.2s ease;
}

.service-card .read-more:hover:after {
    margin-left: 10px;
}

/* About Section */
.about-section {
    background-color: var(--accent-color);
    padding: 80px 0;
    text-align: center;
}

.about-section h2 {
    margin-top: 0;
    color: var(--primary-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.about-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Help Options Section */
.help-options-section {
    padding: 60px 0;
    text-align: center;
}

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

.help-option-card {
    background-color: rgba(var(--accent1-rgb), 0.2);
    border-radius: 0;
    padding: 30px;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.help-option-card h3 {
    color: var(--primary-color);
    margin-top: 0;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-card h3 {
    font-size: 1.8rem;
    margin: 0;
}

.stat-card p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.stat-description {
    font-size: 1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--accent-color);
}

.cta-section h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.cta-features {
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
    list-style-type: none;
    padding: 0;
}

.cta-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.cta-features li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: white;
}

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

.testimonial-card {
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: gold;
    margin-bottom: 1rem;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
    text-align: right;
}

/* Page Styles */
.page-header {
    background-color: var(--accent1);
    background-image: linear-gradient(to right, rgba(255,255,255,0.2), rgba(255,255,255,0) 50%, rgba(255,255,255,0.2));
    padding: 40px 0;
    text-align: center;
    border-radius: 0;
    box-shadow: inset 0 -5px 10px -5px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--accent2), var(--accent3), var(--accent4));
    opacity: 0.7;
}

.page-title {
    margin: 0;
    font-size: 2.5rem;
    color: var(--text-color);
    position: relative;
}

/* Hero section overrides - ensure white text on background images */
.page-header[style*="background-image"] .page-title,
.page-header[style*="background-image"] h1,
.page-header[style*="background-image"] h2,
.page-header[style*="background-image"] p,
.page-header[style*="background-image"] .hero-description {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
}

.page-content {
    margin-bottom: 60px;
}

/* Blog Styles */
.blog-post {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.blog-post:last-child {
    border-bottom: none;
}

.blog-post-title {
    margin-top: 0;
}

.blog-post-meta {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Contact Page Styles */
.contact-section {
    padding: 40px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

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

.contact-form-section {
    background-color: rgba(var(--accent1-rgb), 0.1);
    border-radius: 0;
    padding: 30px;
}

.contact-form-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--accent3);
    border-radius: 0;
}

.contact-form textarea {
    height: 150px;
}

.contact-form button {
    margin-top: 10px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 0;
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--primary-color);
}

.contact-info {
    background-color: rgba(var(--accent2-rgb), 0.1);
    border-radius: 0;
    padding: 30px;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.contact-method {
    margin-bottom: 30px;
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-method p {
    margin-bottom: 5px;
}

.contact-availability {
    margin-top: 40px;
}

.contact-availability h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.availability-list li {
    margin-bottom: 5px;
}

.contact-map {
    margin-top: 60px;
    border-radius: 0;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Front Page Styles */
/* Note: Main hero section styles are defined above. These are additional front-page specific styles */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.services-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

.service-card {
    background: rgba(var(--accent1-rgb), 0.2);
    border-radius: 0;
    padding: 30px;
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-title {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* About Section Styles */
.about-home-section {
    background-color: rgba(var(--accent1-rgb), 0.05);
    padding: 80px 0;
}

.about-home-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-home-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-home-image img {
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Testimonial Section Styles */
.testimonials-section {
    padding: 80px 0;
    text-align: center;
}

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

.testimonial-card {
    background: rgba(var(--accent1-rgb), 0.05);
    border-radius: 0;
    padding: 30px;
    text-align: left;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding: 0 20px;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 30px;
    color: var(--secondary-color);
    position: absolute;
}

.testimonial-text:before {
    left: 0;
    top: 0;
}

.testimonial-text:after {
    right: 0;
    bottom: 0;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
}

.cta-section {
    background-color: rgba(var(--accent2-rgb), 0.1);
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-home-container {
        grid-template-columns: 1fr;
    }
    
    .about-home-image {
        order: -1;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Media Page Styles
--------------------------------------------- */
/* Common styles for all media sections */
.media-section {
    border-radius: 0;
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: auto !important;
    overflow: visible !important;
    max-height: none !important;
}

/* YouTube Section Styles - Fixed for all devices */
.youtube-section {
    background-color: rgba(var(--accent2-rgb), 0.2) !important;
    border-left: 5px solid var(--accent2) !important;
}

.youtube-section h2 {
    color: var(--primary-color) !important;
}

.youtube-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
    height: auto !important;
    overflow: visible !important;
    max-height: none !important;
}

.youtube-video-card {
    background: white !important;
    border-radius: 0;
    overflow: hidden !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    margin-bottom: 25px !important;
    height: auto !important;
    width: 100% !important;
    display: block !important;
}

.youtube-video-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15) !important;
}

.youtube-thumbnail {
    position: relative !important;
    padding-bottom: 56.25% !important; /* 16:9 Aspect Ratio */
    height: 0 !important;
    overflow: hidden !important;
    width: 100% !important;
}

.youtube-thumbnail iframe,
.youtube-thumbnail img.placeholder-thumbnail,
.youtube-thumbnail img.fallback-thumbnail {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.video-details {
    padding: 15px !important;
}

.video-details h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.video-description {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.watch-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white !important;
    padding: 6px 12px;
    border-radius: 0;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.watch-btn:hover {
    background-color: var(--primary-light);
    color: white !important;
}

.youtube-btn {
    background-color: var(--primary-color);
    color: white !important;
    font-size: 14px;
    padding: 8px 16px;
}

.youtube-btn:hover {
    background-color: var(--primary-light);
    color: white !important;
}

/* Blog Section Styles */
.blog-section {
    background-color: rgba(var(--accent-light-rgb), 0.2);
    border-left: 5px solid var(--accent-light);
}

.blog-section h2 {
    color: var(--primary-light);
}

.rss-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rss-item {
    background-color: white;
    transition: transform 0.3s ease;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.rss-item:hover {
    transform: scale(1.02);
}

.rss-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
}

.rss-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.rss-description {
    margin-bottom: 15px;
}

.blog-read-more {
    background-color: var(--primary-light);
    color: white !important;
    padding: 6px 12px;
    border-radius: 0;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.blog-read-more:hover {
    background-color: var(--primary-color);
    color: white !important;
    text-decoration: none;
}

/* LinkedIn Section Styles */
.linkedin-section {
    background-color: rgba(var(--accent3-rgb), 0.2);
    border-left: 5px solid var(--accent3);
}

.linkedin-section h2 {
    color: var(--primary-color);
}

.linkedin-profile {
    margin-bottom: 30px;
}

.linkedin-badge-placeholder {
    display: flex;
    background: white;
    border-radius: 0;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.linkedin-profile-image {
    width: 100px;
    height: 100px;
    border-radius: 0;
    margin-right: 20px;
    object-fit: cover;
}

.linkedin-profile-info {
    flex: 1;
}

.linkedin-profile-info h3 {
    margin-top: 0;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.linkedin-title {
    color: #666;
    margin-bottom: 5px;
}

.linkedin-company {
    color: #0077B5; /* LinkedIn blue */
    margin-bottom: 15px;
    font-weight: 600;
}

.linkedin-recent-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.linkedin-post {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.linkedin-post:hover {
    transform: translateY(-5px);
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 18px;
}

.post-time {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.post-engagement {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

.linkedin-btn,
.linkedin-section .btn-primary,
.linkedin-cta .btn-primary {
    background-color: var(--primary-color) !important;
    color: white !important;
    font-size: 14px;
    padding: 8px 16px;
    border-color: var(--primary-color) !important;
}

.linkedin-btn:hover,
.linkedin-section .btn-primary:hover,
.linkedin-cta .btn-primary:hover {
    background-color: var(--primary-light) !important;
    color: white !important;
    border-color: var(--primary-light) !important;
}

.linkedin-cta {
    margin-top: 30px;
    text-align: center;
}

/* Let's add custom CSS for the placeholder thumbnails */
.placeholder-thumbnail,
.fallback-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .youtube-grid,
    .linkedin-recent-posts {
        grid-template-columns: 1fr;
    }
    
    .media-section {
        padding: 20px;
    }
    
    .linkedin-badge-placeholder {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .linkedin-profile-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: rgba(var(--accent1-rgb), 0.93);
        padding: 10px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        flex-direction: column;
    }
    
    .main-navigation.toggled ul {
        display: block;
    }
    
    .main-navigation li {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    /* Fix mobile menu text color for better readability */
    .main-navigation a,
    .main-navigation a:link,
    .main-navigation a:visited,
    .main-navigation a:active,
    .main-navigation a:focus,
    .main-navigation a:hover {
        color: var(--primary-color) !important;
        font-weight: 600;
    }
    
    .main-navigation ul ul {
        position: static;
        display: none;
        width: 100%;
        background-color: rgba(var(--accent2-rgb), 0.05);
        box-shadow: none;
        padding: 0;
    }
    
    .main-navigation ul ul li {
        margin-bottom: 5px;
    }
    
    .dropdown-toggle {
        display: block;
    }
    
    .main-navigation .current-menu-item > a,
    .main-navigation .current-menu-ancestor > a {
        border-bottom: none;
        background-color: rgba(var(--primary-color-rgb), 0.2);
        color: var(--primary-color) !important;
    }
    
    .main-navigation .menu-item-has-children > a::after,
    .main-navigation .page_item_has_children > a::after {
        display: none;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .services-section,
    .about-section,
    .help-options-section,
    .stats-section,
    .cta-section,
    .testimonials-section {
        padding: 40px 0;
    }
    
    .symptoms-grid, .stress-types, .experience-items, .burnout-info-blocks {
        grid-template-columns: 1fr;
    }
    
    .symptoms-list {
        columns: 1;
    }
    
    .coaching-details, .stress-info, .burnout-info {
        padding: 0 15px;
    }
    
    .coaching-services-grid {
        grid-template-columns: 1fr;
    }
    
    .speech-bubble-container {
        flex-direction: column;
        text-align: center;
    }
    
    .speech-bubble-image {
        margin-bottom: 40px;
    }
    
    .speech-bubble-image::after {
        top: auto;
        right: 50%;
        bottom: -15px;
        transform: rotate(45deg) translateX(50%);
    }
} 

/* Studenten Coaching Pagina */
.student-benefits {
    background-color: var(--accent-color);
    border-radius: 0;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.student-benefits h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.student-benefits ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding-left: 0;
    list-style-position: inside;
}

.student-benefits li {
    padding-left: 25px;
    position: relative;
}

.student-benefits li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .student-benefits ul {
        grid-template-columns: 1fr;
    }
} 

/* Coaching Page Styles */
.coaching-approach {
    background-color: #f5f7fa;
    padding: 40px;
    border-radius: 0;
    margin: 40px 0;
}

.coaching-approach h2 {
    color: #2c3e50;
    margin-top: 0;
}

.cta-box {
    background-color: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 0;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    margin-top: 0;
    font-size: 24px;
}

/* Responsive design for smaller screens */
@media screen and (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .services-grid,
    .coaching-services-grid,
    .help-options-grid,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .help-option-card,
    .testimonial-card {
        margin-bottom: 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 40px 0;
    }
}

@media screen and (max-width: 480px) {
    .btn, 
    .button,
    input[type="submit"],
    input[type="button"] {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-buttons,
    .about-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-content h1 {
        font-size: 26px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
} 

/* Footer styles */
.site-footer {
    background-color: var(--accent5);
    color: #fff;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(var(--primary-light-rgb), 0.2);
}

/* Form elements */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
    color: var(--text-color);
    border: 1px solid var(--accent3);
    border-radius: 0;
    padding: 12px 15px;
    width: 100%;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
    border-color: var(--secondary-color);
    outline: none;
}

/* 
 * =======================================
 * TEMPLATE-SPECIFIC STYLES - CONSOLIDATED
 * =======================================
 */

/* Coaching Subpage Template Styles */
.coaching-subpage-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin: 40px 0;
}

.coaching-sidebar {
    position: sticky;
    top: 100px;
}

.coaching-submenu {
    background: rgba(var(--accent1-rgb), 0.1);
    border-radius: 0;
    padding: 20px;
    margin-bottom: 30px;
}

.coaching-submenu h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.coaching-submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coaching-submenu li {
    margin-bottom: 10px;
}

.coaching-submenu li:last-child {
    margin-bottom: 0;
}

.coaching-submenu a {
    display: block;
    padding: 10px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.coaching-submenu li.active a,
.coaching-submenu a:hover {
    background: var(--secondary-color);
    color: white;
}

.coaching-cta {
    text-align: center;
    background: rgba(var(--accent2-rgb), 0.1);
    border-radius: 0;
    padding: 40px;
}

.coaching-cta h2, 
.coaching-cta h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.coaching-cta .btn,
.coaching-sidebar .coaching-cta .btn {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    font-weight: 600;
    padding: 12px 25px;
    display: inline-block;
}

.coaching-cta .btn:hover,
.coaching-sidebar .coaching-cta .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .coaching-subpage-layout {
        grid-template-columns: 1fr;
    }

    .coaching-sidebar {
        position: static;
    }
}

/* Coaching Overview Template Styles */
.coaching-overview {
    padding: 40px 0;
}

.coaching-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.coaching-intro h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.coaching-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.coaching-service-card {
    background: rgba(var(--accent1-rgb), 0.1);
    border-radius: 0;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.coaching-service-card:hover {
    transform: translateY(-5px);
}

.coaching-service-card h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.coaching-service-card p {
    margin-bottom: 20px;
}

.coaching-approach {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.coaching-approach h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Burnout Page Styles */
.burnout-overview {
    padding: 40px 0;
}

.burnout-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.burnout-intro h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.burnout-signs {
    background-color: rgba(var(--accent1-rgb), 0.1);
    border-radius: 0;
    padding: 40px;
    margin-bottom: 60px;
}

.burnout-signs h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.signs-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    column-count: 2;
    column-gap: 40px;
    column-width: 250px;
}

.signs-list li {
    padding: 5px 0 10px 25px;
    position: relative;
    line-height: 1.5;
    text-align: left;
    break-inside: avoid;
    margin-bottom: 10px;
}

.signs-list li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1rem;
}

.burnout-approach {
    max-width: 800px;
    margin: 0 auto 60px;
}

.burnout-approach h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.burnout-cta {
    text-align: center;
    background-color: rgba(var(--accent2-rgb), 0.1);
    border-radius: 0;
    padding: 40px;
}

.burnout-cta h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.burnout-info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.burnout-info-block {
    background-color: rgba(var(--accent1-rgb), 0.1);
    border-radius: 0;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.burnout-info-block:hover {
    transform: translateY(-5px);
}

.burnout-info-block h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.burnout-info-block p {
    margin-bottom: 25px;
}

.signs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.signs-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid rgba(var(--primary-light-rgb), 0.2);
}

.signs-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 0;
    background-color: var(--primary-light);
}

/* About Me Page Styles */
.about-section {
    padding: 40px 0;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-intro h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.about-image {
    text-align: center;
}

.about-image img {
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    height: auto;
    border: 5px solid var(--accent1);
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.qualifications {
    background-color: rgba(var(--accent1-rgb), 0.1);
    border-radius: 0;
    padding: 40px;
    margin-bottom: 60px;
}

.qualifications h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.qualifications-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.qualification-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.qualification-item ul {
    padding-left: 20px;
    margin: 15px 0;
}

.qualification-item li {
    margin-bottom: 8px;
    position: relative;
    list-style-position: inside;
    padding-left: 5px;
    text-align: left;
}

.about-cta {
    text-align: center;
    background-color: rgba(var(--accent2-rgb), 0.1);
    border-radius: 0;
    padding: 40px;
}

.about-cta h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-cta p {
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    .symptoms-list {
        columns: 1;
    }
    .signs-list {
        column-count: 1;
    }
} 

/* Floating Menu and UI Component Styles */
.floating-menu-toggle {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 0;
    padding: 12px 20px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.3s ease;
}

.floating-menu-toggle:hover {
    background-color: var(--primary-color);
}

.floating-menu-toggle span {
    font-weight: 600;
    font-size: 16px;
    display: block;
}

.floating-coaching-menu {
    position: fixed;
    right: 20px;
    bottom: 80px;
    background-color: white;
    border-radius: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    width: 250px;
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.floating-coaching-menu.active {
    transform: translateX(0);
}

.floating-menu-header {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.floating-menu-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 18px;
}

.toggle-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0;
    line-height: 1;
}

.floating-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.floating-menu-items li {
    border-bottom: 1px solid var(--border-color);
}

.floating-menu-items li:last-child {
    border-bottom: none;
}

.floating-menu-items a {
    display: block;
    padding: 12px 15px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-menu-items a:hover {
    background-color: rgba(var(--accent1-rgb), 0.1);
    color: var(--secondary-color);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

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

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

.container-sm {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.container-md {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.rounded {
    border-radius: 0;
}

.shadow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bg-light {
    background-color: rgba(var(--accent1-rgb), 0.05);
}

.bg-accent {
    background-color: rgba(var(--accent2-rgb), 0.1);
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-light {
    color: var(--text-light);
}

.fw-bold {
    font-weight: 700;
}

.fw-semi {
    font-weight: 600;
}

.font-lg {
    font-size: 1.2rem;
}

.font-xl {
    font-size: 1.5rem;
}

.font-2xl {
    font-size: 2rem;
}

/* Screen Reader Text - Accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 0;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* About Section Button Override */
.about-home-section .btn,
.about-home-content .btn,
.about-buttons .btn,
.about-buttons .btn-primary,
.about-buttons .btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.about-home-section .btn:hover,
.about-home-content .btn:hover,
.about-buttons .btn:hover,
.about-buttons .btn-primary:hover,
.about-buttons .btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Burnout Page Button Overrides */
.burnout-cta .btn,
.burnout-approach .btn,
.burnout-info-block .btn,
.burnout-overview .btn,
.burnout-signs .btn {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.burnout-cta .btn:hover,
.burnout-approach .btn:hover,
.burnout-info-block .btn:hover,
.burnout-overview .btn:hover,
.burnout-signs .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Mobile fixes */
@media (max-width: 768px) {
    .burnout-cta .btn,
    .burnout-approach .btn,
    .burnout-info-block .btn,
    .burnout-overview .btn,
    .burnout-signs .btn {
        background-color: var(--secondary-color);
        color: white;
        text-align: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
} 

/* Contact Page FAQ Section */
.contact-faq {
    margin-top: 60px;
}

.contact-faq h2 {
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    margin-bottom: 15px;
}

.faq-item p {
    margin-bottom: 20px;
} 

.burnout-info .cta-box,
.stress-info .cta-box {
    background-color: rgba(var(--accent1-rgb), 0.08);
    border-radius: 0;
    padding: 30px;
    margin-top: 40px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.burnout-info .cta-box h3,
.stress-info .cta-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
}

.burnout-info .cta-box p,
.stress-info .cta-box p {
    margin-bottom: 20px;
}

.burnout-info .cta-box .btn,
.stress-info .cta-box .btn {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    font-weight: 600;
    padding: 12px 25px;
    display: inline-block;
}

.burnout-info .cta-box .btn:hover,
.stress-info .cta-box .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} 

/* =====================================
   SPECIFIC PAGE TEMPLATE STYLES
   ===================================== */

/* Styles for Persoonlijke Coaching & Wandelcoaching pages */

.coaching-section, 
.wandel-coaching-section {
    padding: 40px 0;
    margin-bottom: 30px;
}

.coaching-section h2, 
.wandel-coaching-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

/* Content width control for better desktop layout */
.coaching-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-intro,
.section-my-role {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Grid (Used for Approach/Benefits) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

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

.feature-card {
    background-color: white;
    border-radius: 0;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.feature-card p {
    margin-bottom: 0;
    flex-grow: 1;
}

/* Process Steps (Numbered List) */
.process-steps {
    list-style: none !important;
    counter-reset: process-counter;
    padding-left: 0;
    max-width: 900px;
    margin: 20px auto;
}

.process-steps li {
    counter-increment: process-counter;
    margin-bottom: 25px;
    padding-left: 50px;
    position: relative;
    line-height: 1.5;
    list-style-type: none !important;
}

.process-steps li::before {
    content: counter(process-counter) !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 35px !important;
    height: 35px !important;
    background-color: var(--secondary-color) !important;
    color: white !important;
    border-radius: 0;
    font-weight: bold !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    text-align: center !important;
}

.coaching-section .process-steps li::before,
.wandel-coaching-section .process-steps li::before,
body .process-steps li::before {
    background-color: var(--secondary-color) !important;
    color: white !important;
    border-radius: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Practical Info Grid */
.practical-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: start;
}

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

.practical-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    height: 100%;
}

.practical-info-item p {
    margin: 0; 
    font-size: 0.95rem;
}

/* Approach List (Wandelcoaching) */
.approach-list {
    list-style: none;
    padding-left: 0;
    max-width: 900px;
    margin: 20px auto;
}

.approach-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid var(--accent3);
    line-height: 1.5;
}

.approach-list li:last-child {
    border-bottom: none;
}

.approach-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Section Specific Backgrounds/Padding handled by utility classes like bg-light, p-4 etc. */

/* Make sure CTA section has good spacing */
.section-cta {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta .btn {
    margin-top: 15px;
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Specific override for wandel-coaching page */
.wandel-coaching-section.section-cta .btn-primary {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    font-weight: 600;
}

.wandel-coaching-section.section-cta .btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Overrides for the specific page templates */
.page-template-page-persoonlijke-coaching .coaching-subpage-layout,
.page-template-page-wandel-coaching .page-content {
    /* Remove default layout if needed, e.g., remove grid for wandelcoaching */
}

/* Specific tweaks for bullet lists */
.bullet-list {
    padding-left: 20px;
    margin: 20px 0 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.checkmark-list {
    list-style: none;
}

.checkmark-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.checkmark-list li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-grid,
    .practical-info-grid {
        grid-template-columns: 1fr;
    }
    
    .coaching-section, 
    .wandel-coaching-section {
        padding: 30px 0;
        margin-bottom: 20px;
    }
} 

/* Button Size Variations */
.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
    min-width: 220px;
}

/* Make sure CTA section has good spacing */
.section-cta {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta .btn {
    margin-top: 15px;
}

/* Specific override for wandel-coaching page */
.wandel-coaching-section.section-cta .btn-primary {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    font-weight: 600;
}

.wandel-coaching-section.section-cta .btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Overrides for the specific page templates */
.page-template-page-persoonlijke-coaching .coaching-subpage-layout,
.page-template-page-wandel-coaching .page-content {
    /* Remove default layout if needed, e.g., remove grid for wandelcoaching */
}

/* Specific tweaks for bullet lists */
.bullet-list {
    padding-left: 20px;
    margin: 20px 0 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.checkmark-list {
    list-style: none;
}

.checkmark-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.checkmark-list li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-grid,
    .practical-info-grid {
        grid-template-columns: 1fr;
    }
    
    .coaching-section, 
    .wandel-coaching-section {
        padding: 30px 0;
        margin-bottom: 20px;
    }
} 

/* Specific override for wandel-coaching page */
.wandel-coaching-section.section-cta .btn-primary {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    font-weight: 600;
}

.wandel-coaching-section.section-cta .btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Specific override for persoonlijke-coaching page */
.coaching-section.section-cta .btn-primary {
    background-color: var(--secondary-color);
    color: white !important;
    border-color: var(--secondary-color);
    font-weight: 600;
}

.coaching-section.section-cta .btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Overrides for the specific page templates */
// ... existing code ...