/* Reset & Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900; /* Montserrat Black */
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

h1::after, h2::after, h3::after {
    content: '.';
    color: #ED1C24; /* Ferrari Red */
}

h2 {
    font-size: 2.5rem; /* Section titles smaller than hero */
    border-bottom: 2px solid #293133; /* Anthracite underline */
    display: inline-block;
    padding-bottom: 10px;
}

p {
    color: #a0a0a0; /* Grey variation */
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
}

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

.text-link {
    color: #ffffff; /* White to stand out from grey text */
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.text-link:hover,
.text-link:active {
    text-decoration: underline;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent; /* Transparent sticky header */
    transition: all 0.4s ease;
    padding: 40px 5%; /* Larger initial padding */
}

header.scrolled {
    padding: 15px 5%; /* Compact padding on scroll */
    background-color: rgba(0, 0, 0, 0.8); /* Optional: Darker background on scroll for readability */
    backdrop-filter: blur(10px);
}

/* Optional: Add background on scroll if needed, but user requested transparent overlay. 
   We keep it transparent but ensure readability via hero overlay. */

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center; /* Vertical align items */
        position: relative; /* Needed for absolute centering of nav-links */
    }

    .logo-container {
        z-index: 20; /* Ensure logo is clickable */
        display: flex;
        align-items: center; /* Center logo vertically if container has height */
    }

    .logo-container img {
        height: 70px; /* Larger initial logo */
        width: auto;
        display: block; /* Remove bottom space */
        transition: height 0.4s ease;
    }

header.scrolled .logo-container img {
    height: 40px; /* Smaller logo on scroll */
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.nav-links a {
    margin: 0 20px;
    font-size: 1.1rem; /* Larger initial font size */
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    transition: font-size 0.4s ease, color 0.3s ease;
}

header.scrolled .nav-links a {
    font-size: 0.9rem; /* Smaller font size on scroll */
}

.nav-links a:hover {
    color: #ffffff;
}

/* Subtle Ferrari Red Accent on Hover */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ED1C24;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Header Right Container */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 20;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-link {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    padding: 4px 6px;
    transition: all 0.3s ease;
    position: relative;
}

.lang-link:hover {
    color: #a0a0a0;
}

.lang-link.active {
    color: #ffffff;
}

/* Subtle underline for active language */
.lang-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background-color: #ED1C24;
}

header.scrolled .lang-link {
    font-size: 0.7rem;
    padding: 3px 5px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle:hover span {
    background-color: #ED1C24;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 60px 20px;
    position: relative;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
}

.mobile-menu-close:hover {
    color: #ED1C24;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    margin-bottom: 60px;
}

.mobile-nav a {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ED1C24;
    transition: width 0.3s ease;
}

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

.mobile-nav a:hover,
.mobile-nav a:active {
    color: #ED1C24;
}

/* Mobile Language Dropdown */
.mobile-language-dropdown {
    margin-bottom: 50px;
    width: 100%;
    max-width: 300px;
}

.language-select {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    background-color: #151515;
    border: 2px solid #293133;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.language-select:hover,
.language-select:focus {
    border-color: #ED1C24;
    outline: none;
}

.language-select option {
    background-color: #151515;
    color: #ffffff;
    padding: 10px;
}

/* Mobile Social Icons */
.mobile-social-icons {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.mobile-social-icons a {
    color: #666;
    transition: all 0.3s ease;
}

.mobile-social-icons a:hover {
    color: #ED1C24;
    transform: translateY(-3px);
}

.mobile-social-icons svg {
    width: 28px;
    height: 28px;
}

/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #ED1C24;
    transform: translateY(-2px);
}

.social-icons svg {
    width: 18px;
    height: 18px;
    transition: width 0.4s ease, height 0.4s ease;
}

/* Header Social Icons */
.header-socials {
    z-index: 20;
}

header.scrolled .header-socials svg {
    width: 16px;
    height: 16px;
}

/* Footer Social Icons */
.footer-socials {
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-socials svg {
    width: 24px;
    height: 24px;
}

.footer-socials a {
    color: #666;
}

.footer-socials a:hover {
    color: #ED1C24;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background-image: url('images/hero_image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Overlays */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 150px; /* Height of the overlay gradient */
    z-index: 1;
    pointer-events: none;
}

/* Top Overlay */
.hero::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, transparent 100%);
}

/* Bottom Overlay */
.hero::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, transparent 100%);
}

/* Full dark tint for text readability if needed, usually high-end wants the image to pop.
   We'll add a subtle overall darkening. */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 6rem; /* Much larger title */
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: 1.4rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
}

/* Hero CTA Button */
.hero-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    margin-top: 30px;
    font-family: 'Montserrat', sans-serif;
    backdrop-filter: blur(5px);
}

.hero-cta:hover {
    background-color: #ED1C24; /* Ferrari Red */
    border-color: #ED1C24;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.hero-cta:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

/* Scroll Down Button */
.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: inline-block;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    padding-top: 60px;
}

.scroll-down span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    animation: sdb 2s infinite;
    opacity: 0;
    box-sizing: border-box;
}

.scroll-down span:nth-of-type(1) {
    top: 0px;
    animation-delay: 0s;
}
.scroll-down span:nth-of-type(2) {
    top: 16px;
    animation-delay: .15s;
}
.scroll-down span:nth-of-type(3) {
    top: 32px;
    animation-delay: .3s;
}

@keyframes sdb {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Sections */
section {
    padding: 100px 5%;
    text-align: center;
    min-height: 60vh; /* Ensure some height */
}

/* About Us Section - All Languages */
#over-ons,
#about-us,
#uber-uns {
    background-color: #000000;
}

/* For Who Section - All Languages */
#voor-wie,
#for-who,
#fur-wen {
    background-color: #0a0a0a; /* Very slight contrast */
    border-top: 1px solid #1a1a1a;
}

#voor-wie .about-container,
#for-who .about-container,
#fur-wen .about-container {
    align-items: stretch;
    gap: 60px;
}

#voor-wie .about-image,
#for-who .about-image,
#fur-wen .about-image {
    flex: 0 0 400px;
    max-width: 400px;
    min-width: 300px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
}

#voor-wie .about-image img,
#for-who .about-image img,
#fur-wen .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

#voor-wie .content-box,
#for-who .content-box,
#fur-wen .content-box {
    text-align: left;
    flex: 1;
    padding-left: 20px;
}

#voor-wie .content-box p,
#for-who .content-box p,
#fur-wen .content-box p {
    max-width: 700px;
    margin-left: 0;
    margin-right: auto;
}

/* Gallery Section - All Languages */
#gallery,
#galerie {
    background-color: #000000;
    border-top: 1px solid #1a1a1a;
    padding: 80px 5%;
    min-height: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #293133;
    aspect-ratio: 3 / 2.5;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover {
    border-color: #ED1C24;
    transform: translateY(-3px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Section - All Languages */
#contact,
#kontakt {
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}

/* Cards or Content styling */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    flex-wrap: wrap;
}

.content-box {
    background-color: transparent; /* No background */
    padding: 0; /* No padding */
    border: none; /* No border */
    text-align: left;
    flex: 1;
    min-width: 300px;
}

.content-box p {
    color: #ffffff; /* White text */
    margin-bottom: 1.5rem;
}

/* Feature List Styling */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 1.5rem auto;
    text-align: left;
    max-width: 700px;
}

.feature-list li {
    color: #ffffff;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #293133;
}

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

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #ED1C24; /* Ferrari Red */
    border-radius: 50%;
}

.about-image {
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 350px;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    max-height: 450px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* Contact Form */
.contact-container {
    max-width: 600px;
    margin: 40px auto;
    text-align: left;
}

#contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1 1 45%; /* Two columns */
    min-width: 250px;
}

.form-group.full-width {
    flex: 1 1 100%;
}

input, textarea {
    width: 100%;
    padding: 15px;
    background-color: #151515;
    border: none;
    border-bottom: 2px solid #293133;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

input::placeholder, textarea::placeholder {
    color: #666;
}

input:focus, textarea:focus {
    border-bottom-color: #ED1C24;
    background-color: #1a1a1a;
}

textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #293133;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
    background-color: #ED1C24;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background-color: #444;
    cursor: not-allowed;
    transform: none;
}

#form-status {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.success-msg {
    color: #4caf50;
}

.error-msg {
    color: #ED1C24;
}

/* Checkbox Group Styling */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 12px;
}

.checkbox-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-width: 22px;
    cursor: pointer;
    accent-color: #ED1C24;
    margin: 0;
}

.checkbox-label span {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Form Field Labels */
.form-label {
    color: #a0a0a0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-top: 8px;
    display: block;
}

.form-group-with-label {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

/* Add spacing for address fields in transport section */
.transport-fields .form-group.full-width:not(:first-child) {
    margin-top: 20px;
}

.transport-fields .form-group.full-width:first-child {
    margin-top: 0;
}

/* Transport Fields Animation */
.transport-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

/* Mapbox Autocomplete Styling */
.mapbox-autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border: 1px solid #293133;
    border-top: none;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    margin-top: 2px;
    display: none;
}

.mapbox-autocomplete-item {
    padding: 12px 15px;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #222;
    font-size: 0.95rem;
}

.mapbox-autocomplete-item:last-child {
    border-bottom: none;
}

.mapbox-autocomplete-item:hover {
    background-color: #293133;
    color: #ED1C24;
}

/* Custom scrollbar for autocomplete */
.mapbox-autocomplete-results::-webkit-scrollbar {
    width: 8px;
}

.mapbox-autocomplete-results::-webkit-scrollbar-track {
    background: #151515;
}

.mapbox-autocomplete-results::-webkit-scrollbar-thumb {
    background: #293133;
    border-radius: 4px;
}

.mapbox-autocomplete-results::-webkit-scrollbar-thumb:hover {
    background: #ED1C24;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.contact-item {
    background: #151515;
    padding: 30px;
    min-width: 250px;
    border-bottom: 2px solid #293133;
    transition: border-color 0.3s;
}

.contact-item:hover {
    border-bottom-color: #ED1C24;
}

.contact-item p:first-child {
    font-size: 1.2rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.contact-item p:first-child::after {
    content: ''; /* No dot */
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #fff;
    display: none; /* Hide original h3 style if element is removed */
}

/* Scroll to Top Button */
#scrollToTopBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #293133; /* Anthracite */
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px; /* Very light rounded corners */
    transition: background-color 0.3s, transform 0.3s;
}

#scrollToTopBtn:hover {
    background-color: #ED1C24; /* Ferrari Red */
    transform: translateY(-3px);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #293133;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease, transform 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.lightbox-close:hover {
    color: #ED1C24;
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #ffffff;
    background-color: #293133;
    border: none;
    cursor: pointer;
    padding: 15px 20px;
    z-index: 2001;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 4px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-nav:hover {
    background-color: #ED1C24;
    transform: translateY(-50%) scale(1.05);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Gallery cursor pointer */
.gallery-item {
    cursor: pointer;
}

/* Footer */
footer {
    padding: 40px 5%;
    background-color: #000000;
    border-top: 1px solid #111;
    text-align: center;
}

.footer-text {
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    max-width: none;
}

.footer-text:last-child {
    margin-bottom: 0;
}

/* Responsive */

/* Laptop screens - smaller sizes to prevent overlap */
@media (max-width: 1400px) and (min-width: 769px) {
    header {
        padding: 25px 5%;
    }
    
    .logo-container img {
        height: 55px;
    }
    
    header.scrolled .logo-container img {
        height: 38px;
    }
    
    .nav-links a {
        font-size: 0.95rem;
        margin: 0 15px;
    }
    
    .lang-link {
        font-size: 0.75rem;
    }
    
    .hero-content h1 {
        font-size: 4.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    header {
        padding: 20px 5%;
    }
    
    .logo-container img {
        height: 50px;
    }
    
    header.scrolled .logo-container img {
        height: 35px;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        margin: 0 12px;
    }
    
    .lang-link {
        font-size: 0.7rem;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2.1rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    header {
        padding: 18px 5%;
    }
    
    .logo-container img {
        height: 45px;
    }
    
    .nav-links a {
        font-size: 0.85rem;
        margin: 0 10px;
    }
    
    .lang-link {
        font-size: 0.65rem;
        padding: 3px 5px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    /* Adjust Section Padding */
    section {
        padding: 60px 5%;
    }

    /* Header Adjustments */
    header {
        padding: 10px 5%; /* Smaller padding */
        background-color: rgba(0, 0, 0, 0.9); /* Dark bg */
        backdrop-filter: blur(10px);
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    nav {
        flex-direction: row;
        gap: 10px;
        justify-content: space-between;
        align-items: center;
    }

    .logo-container img {
        height: 35px !important;
        transition: none;
    }
    
    header.scrolled .logo-container img {
        height: 35px; 
    }
    
    /* Hide desktop navigation on mobile */
    .nav-links {
        display: none;
    }

    /* Hide desktop language switcher and social icons on mobile */
    .header-right {
        display: none;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Stack form fields */
    .form-group {
        flex: 1 1 100%;
    }

    .content-box {
        padding: 0;
        text-align: left; /* Align text left on mobile */
    }

    .content-box p {
        margin-bottom: 1rem;
    }

    /* Gallery responsive */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Voor wie / For Who / Fur Wen section responsive */
    #voor-wie .about-image,
    #for-who .about-image,
    #fur-wen .about-image {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: auto;
        margin: 0 0 20px 0;
    }

    #voor-wie .content-box,
    #for-who .content-box,
    #fur-wen .content-box {
        padding-left: 0;
    }

    #voor-wie .about-container,
    #for-who .about-container,
    #fur-wen .about-container {
        gap: 30px;
    }

    /* Over ons / About us / Uber uns section responsive */
    #over-ons .about-image,
    #about-us .about-image,
    #uber-uns .about-image {
        flex: 1 1 100%;
        max-width: 100% !important;
        min-width: auto;
        margin: 0 0 20px 0;
    }

    #over-ons .about-image img,
    #about-us .about-image img,
    #uber-uns .about-image img {
        max-height: none;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Lightbox responsive */
    .lightbox-nav {
        padding: 10px 15px;
        font-size: 24px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-cta {
        padding: 12px 30px;
        font-size: 0.85rem;
        border-width: 0.5px;
    }

    /* Resize Scroll Down Button for Mobile */
    .scroll-down {
        padding-top: 40px;
        bottom: 30px;
    }

    .scroll-down span {
        width: 16px;
        height: 16px;
        margin-left: -8px;
        border-width: 2px;
    }

    .scroll-down span:nth-of-type(2) {
        top: 10px;
    }
    .scroll-down span:nth-of-type(3) {
        top: 20px;
    }

    .contact-item {
        min-width: 100%;
        padding: 20px;
    }

    h2 {
        font-size: 1.5rem;
    }
    
    /* Adjust mobile menu for very small screens */
    .mobile-nav a {
        font-size: 1.6rem;
        gap: 25px;
    }
    
    .language-select {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
}
