/* Font face declaratie met fallbacks */
@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/JetBrainsMono-ExtraBold.woff2') format('woff2'),
         url('../fonts/JetBrainsMono-ExtraBold.woff') format('woff'),
         url('../fonts/JetBrainsMono-ExtraBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Reset en basis styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    position: relative;
}

/* Layer systeem */
.background-layer,
.animation-layer,
.content-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

/* Layer 1: Achtergrond */
.background-layer {
    z-index: 1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    );
}

/* Layer 2: Lottie Animatie - Sticky aan onderzijde */
.animation-layer {
    z-index: 2;
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    height: calc(100vh + 200px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

/* Desktop: Lottie animatie in linker helft */
.desktop .animation-layer {
    position: fixed;
    left: 0;
    width: 50%;
    height: calc(100vh + 200px);
    bottom: -200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Mobiel */
.mobile .animation-layer {
    position: fixed;
    width: 100%;
    height: calc(100vh + 200px);
    bottom: -200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
}

.lottie-animation {
    width: 500px;
    height: 500px;
    opacity: 1;
    display: block;
}

dotlottie-wc {
    width: 500px !important;
    height: 500px !important;
    opacity: 1;
}

/* Layer 3: Content */
.content-layer {
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

/* Meer naar rechts op desktop */
.desktop .content-layer {
    justify-content: flex-end;
    padding-right: 100px;
}

.content-wrapper {
    text-align: center;
    color: white;
    max-width: 600px;
    width: 100%;
}

/* Typography */
.main-title {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 4rem;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 200;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.description p {
    margin-bottom: 0.3rem;
}

.description strong {
    font-weight: 600;
}

/* Contact button */
.contact-section {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.contact-button,
.facebook-button {
    display: inline-block;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-align: center;
}

/* E-mail knop (bestaand) */
.contact-button {
	margin-top: 20px;
    background: #114984;
	color: #e8f6fe;
	margin-bottom: 10px;
}
.contact-button:hover {
    background: #0000cc;
    transform: translateY(-2px);
}

/* Facebook knop – expliciet #0000ff zoals gevraagd */
.facebook-button {
    background: #0000ff;
}
.facebook-button:hover {
    background: #0000cc;
    transform: translateY(-2px);
}

/* Company info */
.company-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    animation: fadeInUp 0.8s ease-out 1s forwards;
    opacity: 0;
}

.company-logo img {
    height: 55px; /* Exacte hoogte gelijk aan knop */
    width: auto;
    filter: brightness(0) invert(1);
}

.company-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.company-name {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.2;
}

.company-location {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-weight: 800;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animaties */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop versie */
.desktop .content-layer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    height: 100vh;
}

.desktop .animation-column {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.desktop .content-column {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    padding-left: 200px;
    padding-right: 80px;
}

/* Desktop Lottie */
.desktop .lottie-animation,
.desktop dotlottie-wc {
    width: 1200px !important;
    height: 1200px !important;
    opacity: 1 !important;
    min-width: 1200px !important;
    min-height: 1200px !important;
    max-width: 1200px !important;
    max-height: 1200px !important;
}

.desktop dotlottie-wc[style] {
    width: 1200px !important;
    height: 1200px !important;
}

.desktop .main-title {
    font-size: 5rem;
	line-height: 1.3;
	color: #e8f6fe;
}

.desktop .content-wrapper {
    text-align: center;
    margin: 0;
    max-width: 500px;
}

/* Mobiel */
.mobile .animation-layer {
    opacity: 1;
}

.mobile .lottie-animation,
.mobile dotlottie-wc {
	padding-top: 600px;
    width: 2000px !important;
    height: 2000px !important;
}

.mobile .main-title {
    font-size: 3.5rem;
	line-height: 1.2;
}

.mobile .description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.mobile .company-info {
    margin-top: 2rem;
}

.mobile .company-logo img {
    height: 45px;
}

.mobile .company-name {
    font-size: 1rem;
}

.mobile .company-location {
    font-size: 0.9rem;
}

/* Extra kleine schermen */
@media (max-width: 480px) {
    .content-layer {
        padding: 15px;
    }
    
    .mobile .main-title {
        font-size: 2.5rem;
    }
    
    .mobile .lottie-animation {
        width: 280px;
        height: 280px;
    }
    
    .mobile .description {
        font-size: 0.9rem;
    }
    
}
