/* RESET / BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #fff;
}

/* LAYOUT */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.container.narrow {
    max-width: 700px;
}

/* in de oranje kleur */
.section {
    padding: 5rem 0;
    background-color: #d16f2d;
}

/* in de blauwe kleur */
.section.alt {
    background: #2f5770;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1px solid #eee;
    z-index: 10;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #111;
}

nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

.lang-toggle {
    margin-left: 1.5rem;
    background: none;
    border: none;
    color: #111;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
}

.lang-toggle:hover {
    opacity: 0.7;
}

.lang-option {
    transition: all 0.2s ease;
}

/* HERO */
.hero {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
            url('media/albumcover.png') center center/cover no-repeat;
background-color: #2f5770; /* fallback kleur voor lege ruimte */
    color: white;
}

.hero .container {
    max-width: 600px;
    margin-left: 180px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    animation: slideInFromLeft 0.5s ease-out 0.2s both;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7),
                 0 0 20px rgba(209, 111, 45, 0.5);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero p {
    max-width: 500px;
    margin-bottom: 2rem;
    animation: slideInFromLeft 0.3s ease-out 0.4s both;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* TYPOGRAPHY */
h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
    text-align: center;
}

/* VIDEO */
.video-container {
    margin: 2rem 0;
    width: 100%;
    max-width: 800px;
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* BUTTON */
.button {
    display: inline-block;
    background: white;
    color: #111;
    padding: 0.75rem 4.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.button:hover {
    opacity: 0.9;
}

.hero .button {
    background: #d16f2d;
    color: white;
    /* box-shadow: 0 4px 15px rgba(209, 111, 45, 0.4); */
    animation: slideInFromLeft 0.3s ease-out 0.6s both;
}

.hero .button:hover {
    background: #b85a1f;
    /* box-shadow: 0 6px 20px rgba(209, 111, 45, 0.6); */
    transform: translateY(-2px);
    opacity: 1;
}

/* CONTACT */
.contact-form {
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d16f2d;
}

.contact-form .button {
    background: #d16f2d;
    color: white;
    border: none;
    cursor: pointer;
    padding: 0.75rem 2rem;
}

.contact-form .button:hover {
    background: #b85a1f;
    opacity: 1;
}

.contact-email {
    margin-top: 2rem;
    text-align: center;
}

.contact-email a {
    color: inherit;
    font-weight: 500;
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
    color: #fff;
}

.social-icons a {
    color: #fff;
    font-size: 4.75rem;
    transition: color 0.2s ease;
}

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

/* FOOTER */
.site-footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #eee;
    font-size: 0.875rem;
    color: #666;

}

/* RESPONSIVE */
@media (max-width: 600px) {
    nav a {
        margin-left: 1rem;
    }

    .hero .container {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}
