/* 
* Auto21 Website Styles 
* Main Stylesheet - Luxury Edition
*/

:root {
    /* Main Colors */
    --primary: #0f3174; /* Dieper blauw voor luxe uitstraling */
    --primary-light: #2563eb;
    --primary-dark: #0f256c; /* Donkerder voor betere zichtbaarheid */
    --accent: #e67e22; /* Warmer oranje voor premium uitstraling */
    --accent-light: #f59e0b;
    --accent-dark: #d35400; /* Dieper oranje */
    --secondary: #111827; /* Donkerder voor betere leesbaarheid */
    --light: #f8fafc; /* Lichter voor betere contrasten */
    --white: #ffffff;
    --dark: #0f172a;
    --gray-100: #f9fafb;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #4b5563; /* Donkerder grijs voor betere leesbaarheid */
    --gray-600: #374151;
    --gray-700: #1f2937;
    --text-dark: #1e293b; /* Speciale kleur voor tekstinhoud */
    --luxury-gold: #d4af37; /* Gouden accent voor luxe details */
    --luxury-gold-light: #f1c40f;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --transition-normal: 0.3s ease;
    
    /* Fonts */
    --font-sans: 'Quattrocento', Georgia, serif; /* Quattrocento als serif voor de hoofdtekst */
    --font-heading: 'Oswald', Helvetica, sans-serif; /* Oswald voor krachtige headers */
    --font-secondary: 'Oswald', Helvetica, sans-serif; /* Oswald voor accenten en secundaire teksten */
}

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

html {
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
}

.section {
    padding: 5rem 0;
}

.section-sm {
    padding: 3rem 0;
}

.section-lg {
    padding: 7rem 0;
}

.section-title {
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--gray-700); /* Donkerder voor beter contrast */
    font-size: 1.1rem;
    font-weight: 500; /* Dikker voor betere leesbaarheid */
    margin-bottom: 3rem;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
    overflow-x: hidden;
    /* Extra ruimte toegevoegd voor fixed header */
    padding-top: 0;
    position: relative;
    letter-spacing: 0.01em; /* Minder letterspatiëring voor serif */
    background-color: var(--white);
    text-rendering: optimizeLegibility; /* Verbeterde tekstweergave */
    -webkit-font-smoothing: antialiased; /* Vloeiendere fonts op Apple apparaten */
    -moz-osx-font-smoothing: grayscale; /* Vloeiendere fonts op Mac/Mozilla */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
    position: relative;
    text-transform: uppercase;
}

h1 {
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
}

h2 {
    font-size: 2.85rem;
    margin-bottom: 1.75rem;
    position: relative;
    letter-spacing: 0.03em;
}

h2::after { /* Decoratieve lijn voor een klassieke uitstraling */
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--luxury-gold) 0%, var(--luxury-gold-light) 100%);
}

.section-header h2::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    letter-spacing: 0.025em;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: 0.015em;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--gray-700); /* Donkerder voor maximaal contrast */
    letter-spacing: 0.005em; /* Subtiele letterspatiëring voor serif tekst */
    font-family: var(--font-sans);
    font-weight: 500; /* Iets dikker voor betere leesbaarheid */
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all var(--transition-normal);
    font-weight: 500;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

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

.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    display: inline-block;
    position: relative;
    padding: 0.5rem 1rem;
    font-family: var(--font-secondary);
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--primary-light);
    transform: translateY(-50%);
}

.section-subtitle::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--primary-light);
    transform: translateY(-50%);
}

.section-title {
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.75rem;
    position: relative;
    color: var(--dark);
}

.section-description {
    color: var(--gray-700); /* Donkerder voor beter contrast */
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-family: var(--font-sans);
    font-weight: 500; /* Iets dikker voor betere leesbaarheid */
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.bg-light {
    background-color: var(--light);
}

.bg-primary {
    background-color: var(--primary);
    color: var(--white);
}

.bg-primary h2, .bg-primary h3 {
    color: var(--white);
}

/* ===== Service Section ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-content p {
    margin-bottom: 1.5rem;
}

.service-price {
    margin-top: auto;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.service-price-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ===== Projects Section ===== */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.project-card {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 300px;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

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

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 1.5rem;
    color: var(--white);
}

.project-overlay h3 {
    margin-bottom: 0.5rem;
    color: var(--white);
    font-size: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.project-category {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.project-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95); /* Verhoogd contrast */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500; /* Dikker voor betere leesbaarheid */
}

/* ===== About Section ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--gray-200);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    top: 15px;
    background-color: var(--white);
    border: 4px solid var(--accent);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 1.5rem;
    background-color: var(--white);
    position: relative;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
}

.timeline-year {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.25rem;
    border-radius: 0.25rem;
    font-weight: 500;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.08em;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-transform: uppercase;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    z-index: 1;
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.2), 0 3px 6px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-dark);
    border: 1px solid var(--gray-300);
    font-weight: 600; /* Dikker lettertype voor betere leesbaarheid */
}

.btn-light:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.testimonial-author-title {
    color: var(--gray-700); /* Donkerder voor beter contrast */
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 500; /* Iets dikker voor betere leesbaarheid */
}

.quote {
    font-style: italic;
    padding: 2rem;
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    margin: 2rem 0;
    color: var(--gray-800); /* Donkerder voor beter contrast */
    border-left: 4px solid var(--primary);
    font-weight: 500; /* Dikker voor betere leesbaarheid */
}

.contact-info-content h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
}

.contact-info-content p,
.contact-info-content a {
    color: rgba(255, 255, 255, 0.95); /* Hogere opacity voor beter contrast */
    margin: 0;
    transition: color 0.3s ease;
    font-weight: 500; /* Iets dikker voor betere leesbaarheid */
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); /* Tekstschaduw voor beter contrast */
}

.contact-info-content a:hover {
    color: var(--white);
    text-decoration: none;
}

/* ===== Header ===== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    position: fixed;
    background-color: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
    animation: fadeInDown 0.5s ease forwards;
    z-index: 1000; /* Hogere z-index om boven andere elementen te blijven */
}

/* Navigatielinks in scrolled state */
.header.scrolled .nav-link {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.header.scrolled .nav-link:hover {
    color: var(--accent-light);
}

.header.scrolled .nav-link.active {
    color: var(--accent);
}

/* Bel ons knop in scrolled state */
.header.scrolled .btn-nav .btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.header.scrolled .btn-nav .btn-primary:hover {
    background-color: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
}

/* Logo in scrolled state */
.header.scrolled .logo-text {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--white);
    z-index: 999;
    padding: 2rem 1.5rem;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-menu-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

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

.mobile-nav-item {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-nav-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.mobile-contact {
    margin-top: 2rem;
}

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

.logo {
    position: relative;
    z-index: 101;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.logo-text .accent {
    color: var(--accent);
}

.nav-menu {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: var(--dark);
    font-family: var(--font-secondary);
    font-weight: 600; /* Dikker voor betere leesbaarheid */
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.25rem 0;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); /* Subtiele tekstschaduw voor contrast */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    position: relative;
    z-index: 101;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 1.5rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95); /* Verhoogd contrast */
    font-weight: 500; /* Dikker voor betere leesbaarheid */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); /* Tekstschaduw voor beter contrast */
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600; /* Dikker voor betere leesbaarheid */
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3); /* Tekstschaduw voor beter contrast */
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
    text-decoration: none;
    transform: translateY(-2px);
}

/* ===== Appointment Notice ===== */
.appointment-notice {
    background-color: var(--primary);
    padding: 0.75rem 0;
    text-align: center;
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 99;
}

/* ===== Page Header ===== */
.page-header {
    padding: 10rem 0 4rem;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 1rem;
}

.page-header-content h1 {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.appointment-notice p {
    margin: 0;
    color: var(--white);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); /* Tekstschaduw voor beter contrast */
    font-weight: 500; /* Dikker lettertype voor betere leesbaarheid */
}

.appointment-notice i {
    margin-right: 0.5rem;
    color: var(--accent-light);
}

.appointment-notice a {
    color: var(--white);
    font-weight: 600; /* Dikker lettertype voor betere leesbaarheid */
    text-decoration: underline;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); /* Tekstschaduw voor beter contrast */
}

/* ===== Footer ===== */
.footer {
    background-color: var(--dark);
    background-image: linear-gradient(to bottom, var(--dark), #0a1221);
    color: #d1d5db;
    padding: 5rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-family: var(--font-secondary);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); /* Tekstschaduw voor beter contrast */
}

.footer-column p {
    color: var(--white);
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    padding: 0.75rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    border-left: 3px solid var(--accent);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--gray-300);
    transition: color 0.3s ease;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); /* Subtiele tekstschaduw voor contrast */
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: none;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    color: var(--gray-300);
}

.contact-info i {
    width: 20px;
    margin-right: 0.75rem;
    color: var(--accent);
}

.contact-info a {
    color: var(--accent-light);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--accent);
}

.contact-info a:hover {
    color: var(--white);
    text-decoration: none;
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    text-decoration: none;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-copyright {
    margin-bottom: 1rem;
    color: var(--gray-300);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); /* Subtiele tekstschaduw voor contrast */
}

.footer-links-bottom {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-links-bottom a {
    color: var(--gray-400);
    font-size: 0.85rem;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); /* Subtiele tekstschaduw voor contrast */
}

.footer-links-bottom a:hover {
    color: var(--white);
    text-decoration: none;
}

/* ===== Team Section ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.team-member {
    background-color: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.team-member:hover .team-image img {
    transform: scale(1.05);
}

.team-content {
    padding: 1.5rem;
}

.team-content h3 {
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

/* ===== Testimonials ===== */
.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-700); /* Donkerder voor beter contrast */
    font-weight: 500; /* Dikker voor betere leesbaarheid */
}

.testimonial-text::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.25;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.testimonial-author-name {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.2;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 6rem 0;
    background-color: var(--primary);
    background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section h2::after {
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95); /* Verhoogd contrast */
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Tekstschaduw voor beter contrast */
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.contact-info-card {
    background: var(--primary);
    color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem 0.75rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

/* ===== Certificates ===== */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

/* ===== Services Page Styling ===== */
.service-navigation {
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1rem;
}

.service-nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-nav-link {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    color: var(--gray-700);
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background-color: var(--gray-100);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.service-nav-link:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.service-nav-link.premium-link {
    background-color: var(--luxury-gold-light);
    color: var(--dark);
    font-weight: 700;
}

.service-nav-link.premium-link:hover {
    background-color: var(--luxury-gold);
    color: var(--white);
}

.bg-premium {
    background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.93)), url('../images/premium-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.premium-header h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.premium-header p {
    color: var(--gray-300);
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.premium-service-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.premium-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.premium-card-header {
    padding: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-card-header h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.premium-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.premium-note {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-style: italic;
}

.premium-card-body {
    padding: 2rem;
}

.premium-card-body p {
    color: var(--white);
    font-weight: 500;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    padding: 0.75rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.premium-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.premium-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-300);
    position: relative;
    padding-left: 2rem;
}

.premium-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.premium-features li:last-child {
    border-bottom: none;
}

.card-note {
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    color: var(--gray-300);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--accent);
}

.premium-cta {
    margin-top: 2rem;
    text-align: center;
}

.btn-premium {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--accent) 100%);
    color: var(--white);
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-premium:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--luxury-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: var(--white);
    text-decoration: none;
}

/* Specifieke styling voor de verschillende pakketten */
.premium-service-card.bronze {
    border-top: 5px solid #cd7f32;
}

.premium-service-card.silver {
    border-top: 5px solid #c0c0c0;
}

.premium-service-card.gold {
    border-top: 5px solid #ffd700;
}

.premium-service-card.platinum {
    border-top: 5px solid #e5e4e2;
    background-color: rgba(255, 255, 255, 0.05);
}

.certificate-item {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.certificate-image {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.certificate-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.certificate-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-700); /* Donkerder voor beter contrast */
}

/* ===== Basis diensten secties ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-header {
    padding: 1.5rem;
    color: var(--white);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card-header h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.service-card-header .price {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.service-card-header .price .small {
    display: block;
    font-size: 0.85rem;
    font-weight: normal;
    opacity: 0.8;
}

.bg-accent {
    background-color: var(--accent);
}

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

.service-card-body {
    padding: 1.5rem;
}

.service-duration {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    background-color: var(--gray-100);
    border-radius: 2rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.service-duration i {
    margin-right: 0.5rem;
    color: var(--accent);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-content p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.service-features li:before {
    content: '✓';
    margin-right: 0.75rem;
    color: var(--accent);
    font-weight: 700;
}

.service-features li:last-child {
    border-bottom: none;
}

/* ===== Media Queries ===== */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .container {
        max-width: 720px;
    }
    
    .services-grid,
    .projects-grid,
    .team-grid,
    .premium-services-grid,
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certificates-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-links-bottom {
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .premium-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .service-navigation {
        padding: 1rem 0 1.5rem;
        margin-bottom: 4rem;
    }
    
    .service-nav-list {
        justify-content: center;
    }
    
    .services-grid,
    .projects-grid,
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .certificate-item {
        padding: 1.5rem;
    }
    
    .certificate-image {
        width: 140px;
        height: 100px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .header {
        padding: 2rem 0;
    }
    
    .nav-item {
        margin-left: 3rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}


