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

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #111;
    line-height: 1.6;
}

header {
    background-color: #000;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

nav {
    margin-top: 10px;
}

nav a {
    color: #fff;
    margin: 0 12px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
    position: absolute;
    bottom: -4px;
    left: 0;
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    text-decoration: underline;
}

main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1200x500?text=Tattoo+Background') no-repeat center center/cover;
    color: #fff;
    border-radius: 8px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero .btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px;
    background: #fff;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

.hero .btn:hover {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
}

form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

form input, form textarea {
    margin: 12px 0;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

form button {
    background: #000;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background: #444;
}

.review {
    background: #f2f2f2;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gallery {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.photo {
    width: 300px;
    height: 200px;
    background: #ddd;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #333;
    transition: transform 0.3s, box-shadow 0.3s;
}

.photo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

ul {
    list-style: square inside;
}

footer {
    text-align: center;
    padding: 30px 10px;
    background-color: #000;
    color: #fff;
    margin-top: 40px;
}

footer p {
    margin-bottom: 10px;
}

footer .social-icons {
    margin-top: 10px;
}

footer .social-icons a {
    color: #fff;
    margin: 0 8px;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-icons a {
    font-size: 2rem;
    color: #000;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #888;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    nav a {
        display: inline-block;
        margin: 8px;
        font-size: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero .btn {
        padding: 10px 16px;
        font-size: 1rem;
    }

    form {
        width: 100%;
        padding: 0 10px;
    }

    .gallery {
        flex-direction: column;
        align-items: center;
    }

    .photo {
        width: 90%;
        height: auto;
    }

    .slideshow-container {
        width: 100%;
        padding: 0 10px;
    }

    .prev, .next {
        font-size: 18px;
        padding: 12px;
    }

    .social-icons a {
        font-size: 1.5rem;
    }

    .review {
        margin: 10px;
    }
}

/* Verfijnde stijlen voor grotere schermen */
@media screen and (min-width: 769px) {
    .slideshow-container {
        max-width: 900px;
        margin: 40px auto;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 10px;
        overflow: hidden;
    }

    .slide img {
        border-radius: 0;
    }

    .prev, .next {
        padding: 20px;
        font-size: 28px;
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        top: 45%;
        transform: translateY(-50%);
    }

    .prev:hover, .next:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }
}
