/* CSS Variables */
:root {
    --landelijk-groen: #7d8f7a;
    --aarde-klei: #b07d62;
    --zacht-zand: #f9f7f2;
    --wit: #ffffff;
    --donker-grijs: #333333;
    --licht-grijs: #f5f5f5;
    --text-color: #2c2c2c;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--wit);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--landelijk-groen);
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--wit);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.logo a:hover img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--landelijk-groen);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--aarde-klei);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--aarde-klei);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--landelijk-groen);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--landelijk-groen) 0%, var(--aarde-klei) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--wit);
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/jouwkeramiek (2).jpeg') center/cover no-repeat;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    color: var(--wit);
    font-size: 4rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.95;
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--aarde-klei);
    color: var(--wit);
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: var(--landelijk-groen);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.intro {
    padding: 6rem 0;
    background-color: var(--zacht-zand);
}

.intro h2 {
    color: var(--landelijk-groen);
    margin-bottom: 2.5rem;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
}

.highlight-box {
    background-color: var(--wit);
    padding: 2rem;
    border-left: 4px solid var(--aarde-klei);
    margin: 2.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 1.15rem;
    color: var(--landelijk-groen);
}

.closing-line {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--aarde-klei);
    margin-top: 2rem;
    font-style: italic;
}

/* Over Sandra Section */
.over-sandra {
    padding: 6rem 0;
    background-color: var(--wit);
}

.over-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.over-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.over-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.over-text p strong {
    color: var(--landelijk-groen);
    font-weight: 400;
}

/* Workshops Section */
.workshops {
    padding: 6rem 0;
    background-color: var(--licht-grijs);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    color: var(--text-color);
}

.workshop-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.workshop-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.workshop-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.workshop-item:hover img {
    transform: scale(1.05);
}

/* Galerie Section */
.galerie {
    padding: 6rem 0;
    background-color: var(--zacht-zand);
}

.galerie-content {
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.galerie-content p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.galerie-content p strong {
    color: var(--aarde-klei);
}

.galerie-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.galerie-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.galerie-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galerie-item:hover img {
    transform: scale(1.05);
}

/* Urnen Section */
.urnen {
    padding: 6rem 0;
    background-color: var(--wit);
}

.urnen-content {
    max-width: 800px;
    margin: 3rem auto 0;
}

.urnen-text h3 {
    color: var(--landelijk-groen);
    margin-bottom: 1.5rem;
}

.urnen-text p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--landelijk-groen) 0%, var(--aarde-klei) 100%);
    color: var(--wit);
}

.contact h2 {
    color: var(--wit);
}

.contact .section-intro {
    color: var(--wit);
    opacity: 0.95;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-item h3 {
    color: var(--wit);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.contact-item a {
    color: var(--wit);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-item a:hover {
    color: #fff;
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.contact-item strong {
    font-weight: 600;
    font-size: 1.15rem;
}

.contact-item em {
    font-style: italic;
    opacity: 0.85;
    font-size: 0.95rem;
    display: block;
    margin-top: 0.5rem;
}

.contact-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.contact-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.contact-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.contact-image:hover img {
    transform: scale(1.05);
}

.contact-closing {
    text-align: center;
    font-size: 1.25rem;
    margin-top: 4rem;
    font-style: italic;
    opacity: 0.95;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border-left: 4px solid rgba(255, 255, 255, 0.4);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: var(--donker-grijs);
    color: var(--wit);
    text-align: center;
    padding: 2rem;
}

footer p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--wit);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .over-content,
    .urnen-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 1.4rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .logo img {
        height: 65px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        margin-top: 70px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

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

    .galerie-photos {
        grid-template-columns: 1fr;
    }

    section {
        padding: 4rem 0;
    }

    .intro,
    .over-sandra,
    .workshops,
    .galerie,
    .urnen,
    .contact {
        padding: 4rem 0;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}
