/* =======================================
   ROOT VARIABLES
======================================= */
:root {
    --accent: #dbb06a;
    --text-light: #fff;
    --text-muted: #ddd;
    --text-grey: #aaa;
    --text-dark: #000;
    --bg-dark: #0d0d0d;
    --bg-darker: #111;
    --bg-overlay: rgba(0, 0, 0, 0.7);
    --bg-light: rgba(255, 255, 255, 0.9);
    --bg-transparent: rgba(255, 255, 255, 0.05);
}

/* =======================================
   GLOBAL STYLES
======================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-light);
    background-color: var(--bg-dark);
}

section {
    scroll-margin-top: 70px;
}

/* =======================================
   HEADER
======================================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--bg-light);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header img {
    height: 50px;
}

header nav a {
    color: var(--text-dark);
    text-decoration: none;
    margin-left: 30px;
    font-weight: bold;
    transition: color 0.3s;
}

header nav a:hover {
    color: var(--accent);
}

header nav .contact-btn {
    padding: 10px 20px;
    background-color: var(--accent);
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
}

header nav .contact-btn:hover {
    background-color: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

/* =======================================
   HERO SECTION
======================================= */
.hero {
    height: 100vh;
    background: url("../images/hero-image.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-overlay);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    display: flex;
    align-items: center;
    gap: 15px; /* ruimte tussen tekst en logo */
    margin-bottom: 10px;
}

.hero-title h1 {
    font-size: 3rem;
    color: #fff;
    letter-spacing: 1px;
    margin: 0;
}

.hero-logo {
    width: 250px; /* pas aan naar gewenste grootte */
    max-width: 80%;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #c6c6c6;
}

.hero .btn {
    padding: 10px 20px;
    background-color: var(--accent);
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
}

.hero .btn:hover {
    background-color: transparent;
    border: 2px solid var(--text-light);
}

/* =======================================
   STUDIO GALLERY
======================================= */
.studio-gallery {
    padding: 100px 80px;
    background-color: var(--bg-darker);
    text-align: center;
    color: var(--text-light);
}

.studio-gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.2);
}

.studio-text {
    max-width: 800px;
    margin: 0 auto 100px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* =======================================
   GEAR SECTION
======================================= */
.gear-section {
    margin-top: 60px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.gear-section h3 {
    color: var(--accent);
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
}

.gear-list details {
    background: var(--bg-transparent);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.gear-list details:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.gear-list summary {
    cursor: pointer;
    font-weight: bold;
    color: var(--accent);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.gear-list summary::-webkit-details-marker {
    display: none;
}

.gear-list summary::after {
    content: "▼";
    font-size: 1rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.gear-list details[open] summary::after {
    transform: rotate(180deg);
}

.gear-list p {
    margin-top: 10px;
    color: var(--text-muted);
    line-height: 1.6;
}

.gear-list details[open] {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* =======================================
   ABOUT SECTION
======================================= */
.about-me {
    padding: 80px 40px;
    background: #1a1a1a;
    color: var(--text-light);
    text-align: center;
}

.about-me h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: var(--accent);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: var(--bg-transparent);
    border: 2px solid var(--accent);
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: left;
}

.about-card h3 {
    color: var(--accent);
    margin-bottom: 15px;
}

.about-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* =======================================
   WERKWIJZE SECTION
======================================= */
.workflow {
    padding: 80px 40px;
    background: var(--bg-darker);
    color: var(--text-light);
    text-align: center;
}

.workflow h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: var(--accent);
}

.workflow-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: left;
}

.workflow-content p {
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .workflow {
        padding: 60px 20px;
    }
    .workflow h2 {
        font-size: 2.2rem;
    }
    .workflow-content {
        font-size: 1rem;
    }
}


/* =======================================
   SERVICES SECTION
======================================= */
.services {
    background-color: var(--bg-darker);
    color: var(--text-light);
    padding: 80px 40px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.services-image {
    flex: 1 1 45%;
    min-width: 350px;
}

.services-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.services-content {
    flex: 1 1 50%;
}

.services-content h2 {
    color: var(--text-light);
    font-size: 2.8rem;
    margin-bottom: 40px;
    text-align: left;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--bg-transparent);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 20px 60px 20px;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.price-tag {
    position: absolute;
    bottom: 15px;
    left: 20px;
    right: 20px;
    text-align: center;
    background: rgba(243, 156, 18, 0.1);
    border-top: 1px solid rgba(243, 156, 18, 0.5);
    padding: 8px;
    font-weight: bold;
    color: var(--accent);
    border-radius: 0 0 10px 10px;
    font-size: 1rem;
}

.note {
    color: var(--accent);
}

.note-text {
    margin-top: 25px;
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =======================================
   CONTACT SECTION
======================================= */
.contact {
    padding: 120px 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url("../images/studio-2.jpg") center/cover no-repeat;
    color: var(--text-light);
    text-align: center;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact h2 {
    color: var(--accent);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-info {
    margin-top: 30px;
    margin-bottom: 200px;
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--text-light);
}

/* =======================================
   FOOTER
======================================= */
footer {
    border-top: 3px solid rgb(64, 64, 64);
    padding: 20px 0;
    text-align: center;
    background: var(--bg-dark);
    color: #888;
}

/* =======================================
   HAMBURGER MENU (MOBILE IMPROVED)
======================================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1101;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}
/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger.hamburger.active span {
    background-color: var(--text-light);
}

/* =======================================
   MOBILE MENU OVERLAY
======================================= */
@media (max-width: 992px) {
    header {
        padding: 15px 25px;
    }

    header nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
        z-index: 1100;
    }

    header nav.active {
        transform: translateX(0);
        opacity: 1;
    }

    header nav a {
        font-size: 1.8rem;
        font-weight: bold;
        color: var(--text-light);
        text-decoration: none;
        transition: color 0.3s;
    }

    header nav a:hover {
        color: var(--accent);
    }

    .contact-btn {
        background-color: var(--accent);
        color: var(--text-light);
        padding: 12px 25px;
        border-radius: 6px;
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }
}

/* =======================================
   SMALL SCREENS (EXTRA POLISH)
======================================= */
@media (max-width: 600px) {
    .hero-title {
        justify-content: center; /* centreert het logo als de tekst weg is */
    }

    .hero-title h1 {
        display: none;
    }

    .hero-content {
        padding: 0 25px;
    }

    .hero-logo {
        width: 240px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .studio-gallery,
    .about-me,
    .services,
    .contact {
        padding: 60px 20px;
    }
}

