
/* --- CHEF IT KLEUREN --- */
:root {
    --primary-dark: #020617;
    --primary-light: #1e293b;
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.5);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-main);
    background: var(--primary-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; }

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

.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* --- HEADER (MET LOGO & SLOGAN) --- */
header {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO STIJL */
.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    height: 60px;
    width: auto;
    border-radius: 50%;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.5px;
}

.brand-slogan {
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.nav-links { display: flex; align-items: center; }

.nav-links a {
    margin-left: 30px;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 15px;
    position: relative;
}

.nav-links a:hover { color: #fff; }
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: 0.3s;
}
.nav-links a:hover::after { width: 100%; }

/* --- HERO SECTIE --- */
.hero {
    padding: 200px 0 120px;
    background: radial-gradient(circle at top right, #1e293b 0%, #020617 60%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: var(--accent);
    filter: blur(180px);
    opacity: 0.15;
    border-radius: 50%;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text { flex: 1; }

.hero-text h1 {
    font-size: 58px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
}

.hero-text span {
    color: var(--accent);
}

.hero-text p {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: 0.3s;
    border: 1px solid transparent;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: none;
    margin-left: 15px;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

.hero-img img {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* --- SLIDER --- */
.brand-slider {
    background: #020617;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    height: 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.slide-track { animation: scroll 30s linear infinite; display: flex; width: calc(200px * 12); }
.slide { width: 200px; display: flex; justify-content: center; padding: 0 20px; }
.slide img { max-height: 35px; opacity: 0.5; filter: grayscale(100%) brightness(200%); transition: 0.3s; }
.slide img:hover { opacity: 1; filter: none; }
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 6)); }
}

/* --- SECTIES --- */
section { padding: 100px 0; }
.section-header { margin-bottom: 60px; text-align: center; }
.section-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}
.section-title {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    color: var(--text-muted);
}

/* --- PROJECTEN GRID --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}
.project-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    height: 100%;
}
.project-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.6);
}

.project-image {
    height: 300px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background-color: #0f172a;
}
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.project-card:hover .project-image img { transform: scale(1.05); }

.project-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.project-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #fff;
}
.project-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 25px;
}

.project-stats {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.stat div {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}
.stat span {
    font-size: 12px;
    color: #fff;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- GALERIJ --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}
.gallery-item {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #020617 0%, transparent 100%);
    padding: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
}
.gallery-text h3 { margin: 0; color: #fff; font-size: 24px; }
.gallery-text p {
    margin: 0 0 5px 0;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}
.gallery-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
}
.gallery-item:hover .gallery-icon {
    background: var(--accent);
    border-color: var(--accent);
}

/* --- SERVICES --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.service-card {
    background: #1e293b;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: 0.3s;
    transform-origin: left;
}
.service-card:hover {
    transform: translateY(-10px);
    background: #243042;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card i {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 25px;
}
.service-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}
.service-card p {
    color: var(--text-muted);
    font-size: 16px;
}

/* --- FOOTER --- */
footer {
    background: #020617;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 80px 0;
    text-align: center;
}
.contact-details {
    margin: 40px 0;
    color: var(--text-muted);
    font-size: 18px;
}
.contact-details i {
    color: var(--accent);
    margin-right: 10px;
}
.contact-item { margin-bottom: 15px; }

/* --- PAGINA LAYOUT VOOR MEERDERE PAGINA'S --- */
.page-content {
    padding: 160px 0 80px;
}
.page-title {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
}
.page-body {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 840px;
}

/* --- MENU VIA JOOMLA MODULE --- */
.nav-links ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
.nav-links li {
    list-style: none;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 42px; }
    .nav-links { display: none; }
    .projects-grid { grid-template-columns: 1fr; }
    .brand-wrapper { justify-content: center; width: 100%; }
}
