/* Custom Font - Ostra Centra (Rayon webfont) */
@font-face {
    font-family: 'Rayon';
    src: url('/Ostra-Centra-Geometric-Sans/Web Fonts/ostra_centra-webfont.woff2') format('woff2'),
         url('/Ostra-Centra-Geometric-Sans/Web Fonts/ostra_centra-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ==================== CSS VARIABLES ==================== */
:root {
    --color-primary: #0b1a42;
    --color-gold: #d4ac67;
    --color-gold-light: #e8c98a;
    --color-gold-dark: #b8934d;
    --color-cream: #efe2cf;
    --color-cream-light: #f7f2eb;
    --color-blue: #223e63;
    --color-blue-light: #2d4f7a;
    --color-white: #ffffff;
    --color-text: #0b1a42;
    --color-text-light: rgba(255, 255, 255, 0.65);
    --color-success: #22c55e;

    --font-heading: 'Rayon', Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 2px 8px rgba(11, 26, 66, 0.08);
    --shadow-md: 0 8px 30px rgba(11, 26, 66, 0.12);
    --shadow-lg: 0 20px 60px rgba(11, 26, 66, 0.15);
    --shadow-xl: 0 30px 80px rgba(11, 26, 66, 0.2);
    --shadow-gold: 0 8px 30px rgba(212, 172, 103, 0.3);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ==================== SCROLL ANIMATION UTILITY ==================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

.pulse {
    animation: pulse 2s infinite;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.5vw, 40px); }
h3 { font-size: clamp(22px, 2.5vw, 28px); }
h4 { font-size: clamp(18px, 2vw, 22px); }

h5 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
}

/* ==================== CONTAINER ==================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
    }
}

/* ==================== SEPARATOR ==================== */
.separator {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    margin: 16px 0;
    border-radius: 2px;
}

.separator.center {
    margin-left: auto;
    margin-right: auto;
}

/* ==================== SECTION HEADER ==================== */
.section-subtitle {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.section-title {
    color: var(--color-gold);
    margin-bottom: 8px;
}

/* ==================== HEADER / NAV ==================== */
.header {
    background-color: var(--color-blue);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

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

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 18px;
    width: auto;
    opacity: 0.95;
    transition: opacity var(--transition-fast);
}

.logo:hover img {
    opacity: 1;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--color-gold);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 1px;
    background-color: var(--color-white);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-divider {
    width: 1px;
    height: 16px;
    background-color: var(--color-gold);
    opacity: 0.4;
    margin: 0 4px;
}

/* ==================== LANGUAGE SWITCHER ==================== */
.lang-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--color-blue);
    border: 1px solid rgba(212, 172, 103, 0.3);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
}

.lang-switch:hover {
    background-color: var(--color-blue-light);
    border-color: var(--color-gold);
}

.lang-switch img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.lang-switch span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:active {
    transform: translateY(0) scale(1);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-blue-light) 0%, var(--color-blue) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    padding: 12px 26px;
}

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

.btn-header {
    font-size: 13px;
    padding: 10px 20px;
    margin-left: 8px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn i {
    font-size: 14px;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background-color: var(--color-cream);
    padding: 80px 0;
}

.cta-card {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://content.app-sources.com/s/574950910303518731/uploads/Images/Schermafbeelding_2025-11-05_om_11.39.28-2339301.png?format=webp');
    background-size: cover;
    background-position: center bottom;
    z-index: 0;
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 26, 66, 0.8) 0%,
        rgba(11, 26, 66, 0.7) 100%
    );
}

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

.cta-card h2 {
    color: var(--color-gold);
    margin-bottom: 12px;
}

.cta-card > .cta-content > p {
    color: var(--color-white);
    font-size: 17px;
    max-width: 500px;
    margin: 0 auto 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-size: 14px;
    opacity: 0.85;
}

.cta-feature i {
    color: var(--color-gold);
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--color-blue);
    padding: 72px 0 48px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-logo {
    width: 100px;
    margin-bottom: 28px;
    opacity: 0.9;
}

.footer h3 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-text {
    color: var(--color-text-light);
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.6;
}

.footer-link {
    color: var(--color-text-light);
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-gold);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--color-text-light);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Newsletter */
.newsletter-form {
    margin-top: 20px;
    max-width: 360px;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    transition: all var(--transition-fast);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-form .btn {
    width: 100%;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
    margin-bottom: 48px;
}

/* Footer Locations */
.footer-locations-title {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 20px;
    margin-bottom: 32px;
}

.footer-locations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 40px;
}

.location-item {
    margin-bottom: 20px;
}

.location-item strong {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 400;
    display: block;
    margin-bottom: 4px;
}

.location-item span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    display: block;
    line-height: 1.5;
}

/* ==================== FLOATING CTA ==================== */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-cta .btn {
    box-shadow: var(--shadow-lg);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==================== PAGE HERO (subpages) ==================== */
.page-hero {
    background-color: var(--color-primary);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--color-gold);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 600px;
    line-height: 1.8;
}

/* ==================== RESPONSIVE ==================== */

/* --- Tablet (max 1024px) --- */
@media (max-width: 1024px) {
    .footer-locations {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-blue);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        box-shadow: var(--shadow-lg);
    }

    .nav.active {
        display: flex;
    }

    .nav-divider {
        display: none;
    }

    .nav-link {
        padding: 12px 16px;
        width: 100%;
        text-align: center;
    }

    .btn-header {
        width: 100%;
        margin: 8px 0 0;
    }

    .header-inner {
        position: relative;
    }

    .lang-switch {
        top: auto;
        bottom: 80px;
        right: 16px;
        padding: 6px 10px;
    }

    .lang-switch span {
        display: none;
    }

    .cta-card {
        padding: 60px 24px;
        border-radius: var(--radius-lg);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-locations {
        grid-template-columns: 1fr;
    }

    .floating-cta {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }

    .floating-cta .btn {
        width: 100%;
    }

    .page-hero {
        padding: 80px 0 60px;
    }
}

/* --- Small mobile (max 480px) --- */
@media (max-width: 480px) {
    .btn {
        font-size: 14px;
        padding: 12px 24px;
    }

    .btn-lg {
        padding: 14px 28px;
    }
}
