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

:root {
    --primary: #4361ee;
    --primary-dark: #3a56d4;
    --secondary: #7209b7;
    --secondary-dark: #5a0892;
    --accent: #f72585;
    --accent-dark: #d9048e;
    --dark: #121826;
    --darker: #0a0e17;
    --light: #f8f9fa;
    --gray: #8a94a6;
    --gray-light: #e2e8f0;
    --success: #4cc9f0;
    --discord: #5865f2;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 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);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

section {
    padding: 100px 0;
}

.highlight {
    color: var(--accent);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--accent);
    opacity: 0.2;
    z-index: -1;
    border-radius: 4px;
}

/* Typewriter effect */
.typewriter-container {
    display: inline-block;
    position: relative;
    color: var(--accent);
    min-width: 180px;
    text-align: left;
}

.typewriter-text {
    display: inline-block;
    color: var(--accent);
}

.typewriter-words {
    display: inline-block;
    position: relative;
}

.typewriter-word {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    white-space: nowrap;
}

.typewriter-word.active {
    position: relative;
    opacity: 1;
}

.typewriter-cursor {
    display: inline-block;
    color: var(--accent);
    font-weight: 300;
    margin-left: 2px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

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

/* Knoppen */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--light);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-discord {
    background-color: var(--discord);
    color: white;
}

.btn-discord:hover {
    background-color: #4752c4;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* Header - ULTRA COMPACT VERSIE */
.header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-right: 15px;
}

.logo-text h1 {
    font-size: 20px;
    margin-bottom: 1px;
    color: white;
    white-space: nowrap;
}

.logo-tagline {
    font-size: 10px;
    color: var(--gray);
    font-weight: 500;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    flex: 1; /* Neemt resterende ruimte in */
    justify-content: flex-start; /* Start vanaf links */
    margin-left: 0; /* Geen extra marge aan linkerkant */
}

.main-nav::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px; /* Minimale ruimte */
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    margin-left: 5;
}

.nav-item {
    flex-shrink: 0;
}

.nav-link {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: var(--transition);
    position: relative;
    padding: 5px 8px;
    border-radius: 4px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover, .nav-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background-color: var(--accent);
    border-radius: 2px;
}

.discord-link {
    color: var(--discord);
}

.discord-link:hover {
    color: #7289da;
}

/* Speciale stijlen voor knoppen in navigatie */
.nav-item .btn {
    padding: 6px 12px;
    font-size: 13px;
    min-width: fit-content;
}

/* Hero sectie aangepast voor kleinere header */
.hero {
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--darker) 0%, #1a1f35 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(67, 97, 238, 0.2);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 40px;
    margin-bottom: 20px;
    color: white;
}

.hero-description {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: white;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.stat-suffix {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    display: inline-block;
    margin-left: 2px;
}

.stat-label {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.visual-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: var(--border-radius-lg);
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-xl);
}

.game-card {
    position: relative;
    z-index: 2;
}

.game-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.game-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray);
    font-size: 12px;
}

.game-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.game-progress {
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
}

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.el1 {
    top: -15px;
    right: 30px;
    animation-delay: 0s;
}

.el2 {
    bottom: 30px;
    right: -15px;
    animation-delay: 2s;
}

.el3 {
    bottom: -15px;
    left: 40px;
    animation-delay: 4s;
}

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

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 100px;
    fill: var(--dark);
}

/* Sectie Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-size: 36px;
    color: white;
    margin-bottom: 16px;
}

.section-description {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

/* Diensten Sectie */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border-radius: var(--border-radius);
    padding: 35px 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(114, 9, 183, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-title {
    font-size: 22px;
    color: white;
    margin-bottom: 12px;
}

.service-description {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--gray-light);
    font-size: 14px;
}

.service-features i {
    color: var(--accent);
    font-size: 12px;
}

/* Over Ons Sectie */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-description {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.6;
}

.about-features {
    margin-bottom: 35px;
}

.feature {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(114, 9, 183, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 17px;
    color: white;
    margin-bottom: 6px;
}

.feature-content p {
    color: var(--gray);
    font-size: 14px;
}

.team-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: var(--border-radius-lg);
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-xl);
}

.team-members {
    display: flex;
    margin-bottom: 20px;
}

.team-members .member {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--dark);
    margin-left: -12px;
}

.team-members .member:first-child {
    margin-left: 0;
}

.team-members img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    position: relative;
}

.status-indicator.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    70% { transform: scale(2); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* Projecten Sectie */
.projects {
    background-color: rgba(10, 14, 23, 0.5);
}

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

.project-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.1);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.project-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(114, 9, 183, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
}

.project-title {
    font-size: 18px;
    color: white;
}

.project-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 12px;
    color: var(--gray);
}

.project-description {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Waarom gratis Sectie */
.whyfree, .partner {
    background-color: rgba(10, 14, 23, 0.5);
}

/* Discord Sectie */
.discord-section {
    background: linear-gradient(135deg, var(--darker) 0%, #1a1f35 100%);
    position: relative;
    overflow: hidden;
}

.discord-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.discord-card {
    background: linear-gradient(145deg, rgba(88, 101, 242, 0.1), rgba(88, 101, 242, 0.05));
    border-radius: var(--border-radius-lg);
    padding: 35px;
    border: 1px solid rgba(88, 101, 242, 0.2);
    box-shadow: var(--shadow-xl);
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.discord-header i {
    font-size: 36px;
    color: var(--discord);
}

.discord-header h3 {
    font-size: 22px;
    color: white;
}

.discord-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-stat {
    text-align: center;
}

.discord-stat .stat-number {
    font-size: 28px;
    color: white;
    display: block;
}

.discord-stat .stat-label {
    font-size: 12px;
    color: var(--gray);
}

.discord-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.channel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    transition: var(--transition);
}

.channel:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.channel-name {
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.channel-online {
    color: var(--success);
    font-size: 12px;
}

.discord-description {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.6;
}

.discord-features {
    margin-bottom: 35px;
}

.discord-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.discord-feature i {
    font-size: 22px;
    color: var(--discord);
    margin-top: 3px;
}

.discord-feature h4 {
    font-size: 17px;
    color: white;
    margin-bottom: 6px;
}

.discord-feature p {
    color: var(--gray);
    font-size: 14px;
}

.discord-note {
    margin-top: 15px;
    color: var(--gray);
    font-size: 13px;
}

/* Contact Sectie */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.info-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border-radius: var(--border-radius);
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 25px;
}

.contact-method {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(114, 9, 183, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-method h4 {
    font-size: 17px;
    color: white;
    margin-bottom: 4px;
}

.contact-method p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 6px;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent);
}

.contact-note {
    font-size: 12px;
    color: var(--gray);
    font-style: italic;
}

.contact-visual-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: var(--border-radius-lg);
    padding: 35px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-visual-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(114, 9, 183, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    margin: 0 auto 20px;
}

.contact-visual-card h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 12px;
}

.contact-visual-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

/* Footer */
.footer {
    background-color: var(--dark);
    padding: 70px 0 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 70px;
    margin-bottom: 50px;
}

.footer-brand .logo-text h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 4px;
}

.footer-description {
    color: var(--gray);
    margin: 15px 0;
    line-height: 1.6;
    font-size: 14px;
}

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

.social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

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

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

.footer-column h4 {
    font-size: 17px;
    color: white;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.copyright {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-note {
    color: var(--gray);
    font-size: 13px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero-container,
    .about-container,
    .discord-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    /* Header verder verkleinen voor middelgrote schermen */
    .nav-list {
        gap: 6px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 4px 6px;
    }
    
    .nav-item .btn {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-tagline {
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--dark);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 999;
        overflow-y: auto;
        max-height: calc(100vh - 60px);
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .nav-item .btn {
        width: 100%;
        margin-left: 0;
        margin-top: 5px;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .typewriter-text {
        display: block;
        margin-top: 8px;
    }
    
    .header {
        padding: 6px 0;
    }
    
    .logo-text h1 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn-large {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat {
        align-items: center;
    }
    
    .logo-text h1 {
        font-size: 14px;
    }
    
    .logo-tagline {
        display: none; /* Verberg tagline op zeer kleine schermen */
    }
}

/* Extra small screens optimization */
@media (max-width: 400px) {
    .container {
        padding: 0 10px;
    }
    
    .logo-text h1 {
        font-size: 12px;
    }
}