@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #1c2b23;
    --text-primary: #f2f5f0;
    --text-secondary: #a3b1a6;
    --accent: #ffd166;
    --accent-gradient: linear-gradient(135deg, #ffe66d 0%, #ffd166 100%);
    --card-bg: rgba(28, 43, 35, 0.7);
    --card-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(12px);
}

body {
  -webkit-user-select: none !important; /* Safari */
  -ms-user-select: none !important;     /* IE 10 en oudere Edge */
  user-select: none !important;         /* Standaard syntax */
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(240, 230, 210, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(62, 58, 55, 0.05);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.main-nav a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('https://anton.toolboxz.nl/wp-content/uploads/2025/09/PXL_20250729_114834259-scaled.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -2;
}

/* Background aesthetic shapes */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
    animation: float 10s infinite ease-in-out alternate;
}

.bg-shape-1 {
    width: 400px;
    height: 400px;
    background: #ffd166;
    top: -100px;
    left: -100px;
}

.bg-shape-2 {
    width: 500px;
    height: 500px;
    background: #ffe66d;
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.1); }
}

header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    animation: slideUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideUp 1s ease-out 0.2s both;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: slideUp 1s ease-out 0.4s both;
}

section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* Timeline grid for Experience */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover::before {
    opacity: 1;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card h4 {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.card .date {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.skills {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: rgba(255, 209, 102, 0.15);
    color: var(--accent);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* Media Gallery section */
.youtube-channel-link {
    text-align: center;
    margin-top: -1.5rem;
    margin-bottom: 2.5rem;
}

.youtube-channel-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s, transform 0.3s, background 0.3s, border-color 0.3s;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.youtube-channel-link a svg {
    color: #FF0000;
}

.youtube-channel-link a:hover {
    color: var(--accent);
    transform: translateY(-2px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.4);
}

.shorts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.short-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s;
}

.short-item:hover {
    transform: translateY(-5px);
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 9 / 16;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.short-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    text-align: center;
    line-height: 1.5;
}

/* Organs section */
.services-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.service-tag {
    display: flex;
    align-items: center;
    background: rgba(255, 209, 102, 0.1);
    color: var(--text-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 1rem;
    border: 1px solid rgba(255, 209, 102, 0.2);
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    cursor: pointer;
    user-select: none;
}

.service-tag:hover {
    transform: translateY(-2px);
    background: rgba(255, 209, 102, 0.2);
}

.service-tag.active {
    background: var(--accent);
    color: var(--bg-color);
    box-shadow: 0 4px 15px rgba(255, 209, 102, 0.4);
    border-color: var(--accent);
}

.service-tag .emoji {
    margin-right: 8px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.organs-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.country-group h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
}

.organs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .organs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .organs-grid {
        grid-template-columns: 1fr;
    }
}

.organ-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: background 0.3s, transform 0.3s;
}

.organ-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.organ-icons {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 8px;
}

.organ-icon {
    font-size: 1.2rem;
    opacity: 0.9;
    color: var(--accent);
    display: flex;
    align-items: center;
}

/* Contact Section */
#contact {
    padding: 5rem 10%;
    text-align: center;
}

.contact-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 40px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.contact-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(200, 138, 88, 0.1);
    color: var(--accent);
}

.contact-icon {
    color: var(--accent);
    display: flex;
    align-items: center;
}

.contact-icon svg {
    width: 1.3em;
    height: 1.3em;
}

footer {
    text-align: center;
    padding: 3rem;
    border-top: 1px solid var(--card-border);
    margin-top: 4rem;
    color: var(--text-secondary);
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    section h2 {
        font-size: 2rem;
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background: #b57a48;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
}
