/* 🔥 Dark Mode (Default) */
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 100%;
    background: #0f0f0f; /* Standaard zwart */
    font-family: 'Poppins', sans-serif;
    color: white;
    text-align: center;
    overflow-x: hidden;
    overflow-y: auto;
    transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
    touch-action: manipulation; /* voorkomt dubbel-tap zoom */
}

/* 📌 Canvas Achtergrond */
canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.5;
}
input, textarea, select {
    font-size: 16px; /* Voorkomt automatisch inzoomen op iOS */
}

/* 🎨 Logo Container - Zorgt voor vaste grootte */
#logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 600px; /* Vaste breedte */
    height: 120px; /* Vaste hoogte */
    margin: 0 auto;
    overflow: hidden; /* Voorkomt ongewenste uitrekking */
    margin-top: 30px;
}

/* 🖼️ Logo zelf */
#logo {
    width: 100%;
    height: auto;
    max-width: 300px;
    object-fit: contain; /* Zorgt dat het logo nooit uitrekt */
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s ease-out, transform 1s ease-out;
    
}

/* 🎭 Next-Level Logo Overlay */
#logo-overlay {
    position: absolute;
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.15) 15%, transparent 60%);
    filter: blur(12px);
    opacity: 0.8;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    animation: softGlow 5s infinite alternate ease-in-out;
    pointer-events: none;
}

/* ✨ Subtiele Pulse-animatie */
@keyframes softGlow {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* 🚀 Hover Effect: Subtiele dynamiek */
#logo-container:hover #logo-overlay {
    transform: scale(1.3);
    opacity: 1;
    filter: blur(18px);
}

/* 🖼️ Logo zelf met Depth Effect */
#logo {
    width: 100%;
    height: auto;
    max-width: 300px;
    object-fit: contain;
    transition: transform 0.4s ease-out, filter 0.4s ease-in-out;
}

/* 🚀 Hover op logo = subtiele 3D beweging */
#logo-container:hover #logo {
    transform: scale(1.08) rotateX(10deg);
    filter: drop-shadow(0px 5px 15px rgba(0, 123, 255, 0.4));
}

/* 🌐 Voor mobiele apparaten */
@media (max-width: 768px) {
    #logo-container {
        width: 250px;
        height: 100px;
    }

    #logo {
        max-width: 250px;
    }

    #logo-overlay {
        width: 140%;
        height: 140%;
        filter: blur(8px);
    }
}


/* Zorg dat hero en de inhoud exact in het midden staan */
/* Voorkomt dat de hero-sectie van hoogte verandert */
#hero {
    height: auto; /* Zorgt ervoor dat de sectie alleen de benodigde hoogte heeft */
    min-height: unset; /* Verwijdert de minimale schermhoogte */
    padding-bottom: 20px; /* Optioneel, voorkomt dat het te dicht op de volgende sectie zit */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden; /* Voorkom vreemde scrolls */
}




/* Subtekst */
#subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
    min-height: 2rem; /* Zorgt ervoor dat de hoogte gelijk blijft */
    display: flex;
    align-items: center; /* Houd tekst verticaal gecentreerd */
    justify-content: center;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    text-shadow: 0px 0px 10px rgba(73, 122, 255, 0.8);
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 1.5s ease-in-out forwards;
    transition: opacity 0.5s ease-in-out;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    #glitch-text {
        font-size: 3rem;
    }

    #subtitle {
        font-size: 1.3rem;
        letter-spacing: 0.5px;
    }
}

/* Fade-in animatie */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* 🔥 Next-Level Menu Design */
#menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

/* 🚀 Stijlvol Hamburger Menu Icon */
#menu-icon {
    font-size: 2rem;
    cursor: pointer;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hover-effect met subtiele schaduw */
#menu-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* 🌟 **Volledig nieuw full-screen menu** */
#menu-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85); /* Donkere overlay */
    backdrop-filter: blur(12px); /* ✅ Subtiele blur */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 🏗️ Menu openen */
#menu-content.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

/* ❌ Close-knop bovenaan */
#menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#menu-close:hover {
    transform: scale(1.2);
}

/* 📜 Menu-links */
#menu-content ul {
    list-style: none;
    padding: 0;
}

#menu-content li {
    margin: 20px 0;
}

#menu-content a {
    color: white;
    font-size: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    padding: 12px 20px;
    border-radius: 8px;
}

#menu-content a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* 🌟 **Light Mode Variatie** */
.light-mode #menu-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
}

.light-mode #menu-close {
    color: #222;
}

.light-mode #menu-content a {
    color: #222;
}

/* ✅ Light mode menu-icon verbeterd */
.light-mode #menu-icon {
    color: #222;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.light-mode #menu-icon:hover {
    background: rgba(0, 0, 0, 0.15);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* ✅ Light mode menu-background */
.light-mode #menu-content {
    background: rgba(255, 255, 255, 0.9);
    color: #222;
}

/* ✅ Light mode menu-text */
.light-mode #menu-content a {
    color: #333;
}

.light-mode #menu-content a:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.1);
}


/* Light Mode hover-effect */
.light-mode .hover-effect {
    background: rgba(0, 123, 255, 0.3); /* Iets helderder blauw voor light mode */
}
/* 🔘 Dark Mode Toggle Button */
#dark-mode-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 15;
    width: 55px;
    height: 30px;
    cursor: pointer;
}

/* 🔲 Achtergrond van de switch */
.toggle-track {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: background 0.3s ease;
}

/* 🔘 Het schuivende element (Maan/Zon) */
.toggle-thumb {
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* 🌞 Light Mode Styling */
.light-mode .toggle-track {
    background: rgba(0, 0, 0, 0.2);
}

.light-mode .toggle-thumb {
    left: calc(100% - 30px);
    background: yellow;
}

/* Animatie bij wisselen */
.toggle-thumb::before {
    content: "🌙";
    transition: opacity 0.3s ease;
}

.light-mode .toggle-thumb::before {
    content: "☀️";
}

/* ☀️ Light Mode (Klantvriendelijke achtergrond) */
body.light-mode {
    background: linear-gradient(to bottom, #e3f2fd, #ffffff); /* Lichtblauw naar wit */
    color: #212529; /* Donkere tekst voor betere leesbaarheid */
}



.light-mode #subtitle {
    color: #333;
}



/* 🚀 Titel Animatie */
.animated-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #4db8ff;
    text-shadow: 0 0 15px rgba(77, 184, 255, 0.8);
    animation: pulseGlow 2s infinite alternate ease-in-out;
}
/* ✨ Subtiele puls-animatie */
@keyframes pulseGlow {
    from {
        text-shadow: 0 0 10px rgba(77, 184, 255, 0.6);
    }
    to {
        text-shadow: 0 0 20px rgba(77, 184, 255, 1);
    }
}

/* 🚀 Automatisering Sectie */
#automation {
    text-align: center;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

#automation h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4db8ff;
    text-shadow: 0px 0px 10px rgba(77, 184, 255, 0.5);
}

#automation p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    opacity: 0.9;
}

.automation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolommen op desktop */
    gap: 20px;
    margin-top: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
/* 🌟 Automatiseringskaartjes */
.automation-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}
/* 🎇 Glow Effect per kaart */
.glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(77, 184, 255, 0.2) 10%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}


/* 🌟 Hover Effect */
.automation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 123, 255, 0.3);
}
.automation-card:hover .glow-effect {
    opacity: 0.7;
}
.automation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #4db8ff;
}

.automation-card p {
    font-size: 1rem;
    opacity: 0.8;
}

/* 📱 Mobiele aanpassingen */
@media (max-width: 768px) {
    #automation h2 {
        font-size: 1.8rem;
    }

    .automation-card {
        padding: 15px;
    }
    .animated-title {
        font-size: 1.8rem;
    }

    .automation-card {
        padding: 12px;
    }
    .automation-grid {
        grid-template-columns: 1fr;
    }
}
/* 🚀 Live Automatisering Sectie */
#live-automation {
    text-align: center;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* 💡 Light/Dark Mode Adaptive Styling */
.light-mode #live-automation h2 {
    color: #003366;
}

.dark-mode #live-automation h2 {
    color: #4db8ff;
}

/* 🖥️ Automatisering Container */
#automation-container {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    min-height: 80px;
    font-size: 1.2rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
}

/* 🔵 Dark Mode */
.dark-mode #automation-container {
    color: white;
    box-shadow: 0px 8px 25px rgba(0, 123, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 🌞 Light Mode */
.light-mode #automation-container {
    background: rgba(255, 255, 255, 0.9);
    color: #222;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* 📜 Tekstanimatie */
#automation-output {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    line-height: 1.5;
    min-height: 50px;
    padding: 15px;
    transition: all 0.3s ease-in-out;
}

/* 🌟 Glow Effect */
@keyframes textGlow {
    0% {
        text-shadow: 0px 0px 10px rgba(77, 184, 255, 0.5);
    }
    100% {
        text-shadow: 0px 0px 20px rgba(77, 184, 255, 1);
    }
}

/* 🚀 Dark Mode Glow Effect */
.dark-mode #automation-output p {
    animation: textGlow 2s infinite alternate ease-in-out;
}

/* 🌞 Light Mode Geen Glow Effect */
.light-mode #automation-output p {
    text-shadow: none;
}

/* 🌀 Loading Animatie */
.loading {
    font-style: italic;
    opacity: 0.8;
    animation: fadeInOut 1.5s infinite alternate;
}

@keyframes fadeInOut {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* 📱 Responsiveness */
@media (max-width: 768px) {
    #automation-container {
        padding: 15px;
        min-height: 60px;
    }

    #automation-output {
        font-size: 1.2rem;
    }

    .animated-title {
        font-size: 1.8rem;
    }
}


#dashboard {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* ✅ Zorgt ervoor dat alles exact in het midden staat */
}
#dashboard h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4db8ff;
    text-shadow: 0px 0px 10px rgba(77, 184, 255, 0.5);
    animation: pulseGlow 2s infinite alternate ease-in-out;
}

#dashboard p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* ✅ **Exacte Grid Layout zoals Automatisering Sectie** */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ✅ Desktop: 3 kolommen */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 🎯 KPI Kaarten (Exact zoals Automatisering Card) */
.dashboard-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* 🎇 Glow Effect per kaart (Net als Automatisering Sectie) */
.dashboard-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(77, 184, 255, 0.2) 10%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

/* 🚀 Hover Effect */
.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 123, 255, 0.3);
}
.dashboard-card:hover::before {
    opacity: 0.7;
}

/* 📈 Stijl voor getallen */
.dashboard-card .value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4db8ff;
    transition: all 0.3s ease-in-out;
}

.dashboard-card .unit {
    font-size: 1.2rem;
    font-weight: normal;
    opacity: 0.8;
    margin-left: 5px;
}

/* 🌟 **Perfecte Responsiveness zoals Automatisering Sectie** */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr); /* ✅ Tablet: 2 kolommen */
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden; /* ✅ Voorkomt horizontale scroll */
    }

    #dashboard h2 {
        font-size: 1.8rem;
    }

    .dashboard-grid {
        grid-template-columns: 1fr; /* ✅ Mobiel: 1 kolom */
        max-width: 100%;
        padding: 0 10px;
    }

    .dashboard-card {
        font-size: 1.2rem;
        padding: 15px;
    }
}

/* ✨ Subtiele puls-animatie */
@keyframes pulseGlow {
    from {
        text-shadow: 0 0 10px rgba(77, 184, 255, 0.6);
    }
    to {
        text-shadow: 0 0 20px rgba(77, 184, 255, 1);
    }
}
/* 🚀 Live Automatisering Sectie */
#live-automation {
    text-align: center;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* 💡 Light/Dark Mode Adaptive Styling */
.light-mode #live-automation h2 {
    color: #003366;
}

.dark-mode #live-automation h2 {
    color: #4db8ff;
}

/* 🖥️ Automatisering Container */
#automation-container {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    min-height: 80px;
    font-size: 1.2rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
}

/* 🔵 Dark Mode */
.dark-mode #automation-container {
    color: white;
    box-shadow: 0px 8px 25px rgba(0, 123, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 🌞 Light Mode */
.light-mode #automation-container {
    background: rgba(255, 255, 255, 0.9);
    color: #222;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* 📜 Tekstanimatie */
#automation-output {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    line-height: 1.5;
    min-height: 50px;
    padding: 15px;
    transition: all 0.3s ease-in-out;
}

/* 🌟 Glow Effect */
@keyframes textGlow {
    0% {
        text-shadow: 0px 0px 10px rgba(77, 184, 255, 0.5);
    }
    100% {
        text-shadow: 0px 0px 20px rgba(77, 184, 255, 1);
    }
}

/* 🚀 Dark Mode Glow Effect */
.dark-mode #automation-output p {
    animation: textGlow 2s infinite alternate ease-in-out;
}

/* 🌞 Light Mode Geen Glow Effect */
.light-mode #automation-output p {
    text-shadow: none;
}

/* 🌀 Loading Animatie */
.loading {
    font-style: italic;
    opacity: 0.8;
    animation: fadeInOut 1.5s infinite alternate;
}

@keyframes fadeInOut {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* 📱 Responsiveness */
@media (max-width: 768px) {
    #automation-container {
        padding: 15px;
        min-height: 60px;
    }

    #automation-output {
        font-size: 1.2rem;
    }

    .animated-title {
        font-size: 1.8rem;
    }
}


#footer {
    text-align: center;
    padding: 15px 0;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    margin-top: auto;
    width: 100%;
}

/* 🚀 Zorgt ervoor dat de main content de ruimte opvult */
#content {
    flex: 1;
}

/* 🌞 Light Mode Styling */
.light-mode #footer {
    background: rgba(255, 255, 255, 0.9);
    color: #222;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
}
/* 📌 Waarom Automatiseren? */
#why-automation {
    text-align: center;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

#why-automation h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4db8ff;
    text-shadow: 0px 0px 10px rgba(77, 184, 255, 0.5);
    animation: pulseGlow 2s infinite alternate ease-in-out;
}

#why-automation p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* 📜 Info Container */
.info-container {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

/* 📝 Hoofdtekst */
.info-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* 🔹 Lijst met voordelen */
.info-text ul {
    list-style: none;
    padding: 0;
}

.info-text ul li {
    font-size: 1.1rem;
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
    
}

.info-text li i {
    color: #4db8ff;
}

/* 🎯 Automatiseringsopties */
.automation-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

/* 💡 Stijl per automatiseringsoptie */
.automation-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.automation-item h4 i {
    margin-right: 8px;
    color: #4db8ff;
}

.automation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 123, 255, 0.3);
}

/* 📱 Mobiele Aanpassingen */
@media (max-width: 768px) {
    #why-automation h2 {
        font-size: 2rem;
    }

    .info-text {
        font-size: 1rem;
    }

    .automation-item {
        padding: 15px;
    }

    .automation-list {
        grid-template-columns: 1fr;
    }
}

/* 🌟 Social Media Icons */
#socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.social-icon i {
    font-size: 1.5rem;
    color: white;
    transition: color 0.3s ease;
}

/* 🔵 Hover Effect */
.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(77, 184, 255, 0.5);
}

.social-icon:hover i {
    color: #4db8ff;
}

/* 🌞 Light Mode */
.light-mode .social-icon {
    background: rgba(255, 255, 255, 0.9);
}

.light-mode .social-icon i {
    color: #222;
}

.light-mode .social-icon:hover {
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
}

.light-mode .social-icon:hover i {
    color: #007bff;
}

/* 📱 Mobiele Aanpassingen */
@media (max-width: 768px) {
    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon i {
        font-size: 1.2rem;
    }
}
