/* Stijlen voor FITIFY AI */

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #13171c;
    color: #e0ffe0;
    min-height: 100vh;
}

/* Banner/slider bovenaan */
.banner-slider {
    width: 100vw;
    height: 320px;
    position: relative;
    overflow: hidden;
    background: #10151a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide {
    width: 100vw;
    height: 320px;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transition: opacity 0.7s;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-slider .slider-controls {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #00e67655;
    border: 2px solid #00e676;
    cursor: pointer;
    transition: background 0.2s, border 0.2s;
}
.slider-dot.active {
    background: #00e676;
    border: 2px solid #fff;
}

/* Hero sectie */
.hero {
    position: relative;
    min-height: 60vh;
    width: 100vw;
    background: #181c22;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 20, 20, 0.85);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #e0ffe0;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 120px;
    margin-bottom: 28px;
    filter: drop-shadow(0 2px 8px #0008);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #e0ffe0;
    text-shadow: 0 2px 12px #000a;
}

.accent {
    color: #00e676;
    font-weight: bold;
    text-shadow: 0 2px 8px #000a;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 36px;
    color: #b2ffb2;
    text-shadow: 0 1px 6px #000a;
}

.hero-buttons {
    display: flex;
    gap: 22px;
    justify-content: center;
}

.btn {
    padding: 14px 36px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    outline: none;
}

.btn-primary {
    background: linear-gradient(90deg, #00e676 0%, #00bfae 100%);
    color: #10151a;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #00bfae 0%, #00e676 100%);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #00e676;
    color: #00e676;
}

.btn-secondary:hover {
    background: #00e676;
    color: #10151a;
}

/* Fotogalerij sectie */
.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 48px auto;
    max-width: 1100px;
}

.photo-gallery img {
    width: 320px;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 18px #0006;
    border: 3px solid #00e67622;
    transition: transform 0.2s, border 0.2s;
}

.photo-gallery img:hover {
    transform: scale(1.04);
    border: 3px solid #00e676;
}

/* Responsive */
@media (max-width: 900px) {
    .photo-gallery img { width: 90vw; height: 180px; }
    .hero-content { max-width: 95vw; }
}
@media (max-width: 600px) {
    .hero-content h1 { font-size: 2rem; }
    .logo { width: 80px; }
    .btn { padding: 10px 18px; font-size: 1rem; }
    .banner-slider, .banner-slide { height: 160px; }
}
