* {
  box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: #FAF7F0;
}

body, .nav-logo {
    font-family: 'Lora', serif;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease,
        transform 6s linear;
}

.slide.active {
    opacity: 1;
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;

    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 2rem;
}

.hero-content-sub {
    position: relative;
    z-index: 3;

    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding-top: 5rem;
}

.hero-content h1 {
    color: white;
}

.hero-content-sub h2 {
    color: black;
}

.band {
    width: 100%;
    min-height: 70vh;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 4rem;
    padding: clamp(2rem, 5vw, 6rem) 1rem;
    position: relative;
}

.band1 {
    width: 100%;
    min-height: 70vh;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    text-align: right;
    align-items: flex-start;
    padding-top: 4rem;
    padding: clamp(2rem, 5vw, 6rem) 1rem;
    position: relative;
}

.band::before, .band1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(197, 155, 155, 0.199);
}

.band2 {
    width: 100%;
    min-height: 70vh;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.band3 {
    width: 100%;
    min-height: 120vh;
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    margin-top: 10px;
}

.content {
    max-width: 1500px;
    color: white;
    width: min(90%, 1500px);
    position: relative;
    z-index: 1;
}

.band-quote {
    width: 100%;
    min-height: 50vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 6rem 2rem;

    text-align: center;
}

.content-quote {
    max-width: 900px;
    margin: auto;
}

.content-quote h1 {
    font-size: clamp(1.5rem, 3vw, 3rem);

    font-style: italic;
    font-weight: 400;

    line-height: 1.6;

    color: #333;

    text-shadow: none;

    padding: 2rem;
}

.image-container {
    position: relative;
    display: inline-block;
}

.background {
    display: block;
    width: 500px;
}

.overlay {
    position: absolute;
    top: 10px;    /* distance from top */
    left: 100px;  /* distance from left */
    width: 150px;
    z-index: 1;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
}

h1 {
    font-size: clamp(2rem, 6vw, 5rem);
	text-shadow: 3px 3px 8px black;
	padding-bottom: 20px;
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
	padding-bottom: 20px;
}

.shadowh2 {
  text-shadow: 1px 1px #000000;
}

h3 {
	color: green;
	padding-bottom: 10px;
  	font-weight: 400;
  	font-style: normal;
}

h5 {
	padding-left: 20px;
	font-size: 2rem;
	font-weight: bold;
}

p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
	font-family: 'Lora', serif;
    letter-spacing: 0.2px;
}

.cta-button {
    display: inline-block;

    padding: 14px 30px;

    background: white;
    color: #2c3e2f;

    border: 2px solid #d4af37;
    border-radius: 30px;

    font-family: 'Inter', sans-serif;
    font-weight: 600;

    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #d4af37;
    color: white;
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    padding: 1.2rem 0;
    z-index: 1000;

    transition:
        background 0.3s ease,
        padding 0.3s ease;

    background: transparent;
}

/* Achtergrond na scroll */

.navbar.scrolled {
    background: rgba(173, 174, 143, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
}

.nav-container {
    width: min(90%, 1300px);
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */

.nav-logo a {
    color: white;
    text-decoration: none;

    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Cinzel', serif;
}

/* Menu */

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu-sub a {
    color:darkslategray;
}

.nav-menu a:hover {
    color: #d4af37;
}

.nav-menu li {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 220px;

    background: rgba(255,255,255,0.98);

    border-radius: 12px;

    padding: 0.5rem 0;
    margin-top: 0.5rem;

    list-style: none;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all 0.3s ease;
}

.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 0.75rem 1rem;

    color: #2c3e2f;
    font-family: 'Inter', sans-serif;
}

.submenu a:hover {
    background: rgba(212,175,55,0.15);
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-submenu > a::after {
    content: "\2304";
    margin-left: 0.4rem;
}

.support-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 1rem;
    flex-wrap: wrap;
}

.support-buttons .cta-button {
    min-width: 220px;
    text-align: center;
    font-size: 1.1rem;
}

/* VEGABURGER */

.vegaburger {
    display: none;

    width: 35px;
    height: 28px;

    position: relative;
    cursor: pointer;

    z-index: 2000;
}

.vegaburger span {
    position: absolute;

    width: 100%;
    height: 4px;

    background: white;

    border-radius: 10px;

    transition: all 0.3s ease;
}

.vegaburger span:nth-child(1) {
    top: 0;
}

.vegaburger span:nth-child(2) {
    top: 12px;
}

.vegaburger span:nth-child(3) {
    top: 24px;
}

/* Animation */

.vegaburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
}

.vegaburger.active span:nth-child(2) {
    opacity: 0;
}

.vegaburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
}

/* Cards Section */

.cards-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;

    width: min(90%, 1200px);
    margin: 4rem auto;
}

.cards-section-food {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;

    width: min(90%, 1200px);
    margin: 4rem auto;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 16px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.1);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;

    min-height: 280px;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card h2 {
    margin-bottom: 1rem;
    color: #2c3e2f;
}

.card p {
    color: #555;
}

.card {
    position: relative;
    overflow: hidden;
}

.card::before,
.card::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: #d4af37;
    border-style: solid;
    opacity: 0.7;
}

.card::before {
    top: 12px;
    left: 12px;
    border-width: 3px 0 0 3px;
}

.card::after {
    bottom: 12px;
    right: 12px;
    border-width: 0 3px 3px 0;
}

@media (max-width: 768px) {
    .hero, .band, .band1, .band2, .band-quote {
        min-height: 50vh;
        padding: 2rem 1rem;
        text-align: center;
        justify-content: center;
    }

    .band3 {
        min-height: 50vh;
        padding: 2rem 1rem;
        text-align: center;
        justify-content: center;
    }

    .content, .content-quote {
        max-width: 100%;
    }

    .cards-section, .cards-section-food {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(142, 149, 81, 0.95);
        padding: 6rem 0 2rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

}

/* TEAM SECTION */

.team-section {
    padding: 5rem 2rem;
    background: #f7f7f2;
}

.team-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Horizontale scroll */

.team-slider {
    display: flex;
    gap: 2rem;

    overflow-x: auto;
    scroll-snap-type: x mandatory;

    padding-bottom: 1rem;
}

/* Mooie scrollbar */

.team-slider::-webkit-scrollbar {
    height: 10px;
}

.team-slider::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 20px;
}

/* Kaarten */

.team-card {
    min-width: 280px;
    background: white;

    border-radius: 20px;
    padding: 2rem;

    text-align: center;

    box-shadow: 0 4px 15px rgba(0,0,0,0.08);

    scroll-snap-align: start;

    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
}

/* Ronde afbeelding */

.team-card img {
    width: 140px;
    height: 140px;

    border-radius: 50%;

    object-fit: cover;

    margin-bottom: 1.5rem;

    border: 4px solid #f0f0f0;
}

.team-card h3 {
    margin-bottom: 0.5rem;
}

.team-card p {
    color: #666;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

/* FOOTER */

.footer {
    background: #1A1410;
    color: white;

    padding: 4rem 2rem;
}

.footer-container {
    width: min(90%, 1200px);

    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 3rem;

    align-items: start;
}

.footer-column h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column p {
    color: #d1d1d1;
    line-height: 1.8;
}

.footer-logo {
    width: 180px;
    max-width: 100%;
}

/* GALLERY */

.gallery-section {
    padding: 5rem 2rem;
    background: #fafaf5;
}

.gallery-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Horizontale scroll */

.gallery-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
}

/* Mooie scrollbar */

.gallery-slider::-webkit-scrollbar {
    height: 10px;
}

.gallery-slider::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 20px;
}

/* Flyers */

.gallery-image {
    width: 300px;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    scroll-snap-align: start;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.gallery-image:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* LIGHTBOX */

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;

    border-radius: 10px;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero, .band, .band1, .band2, .band-quote {
        min-height: 50vh;
        padding: 2rem 1rem;
        text-align: center;
        justify-content: center;
    }

    .content, .content-quote {
        max-width: 100%;
    }

    .cards-section, .cards-section-food {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .vegaburger {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        padding: 2rem 0;
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        letter-spacing: 0.3px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {

    .submenu {
        position: static;

        opacity: 1;
        visibility: visible;

        transform: none;

        display: none;

        background: transparent;
        box-shadow: none;

        padding-left: 1rem;
        margin-top: 0.5rem;
    }

    .submenu-open .submenu {
        display: block;
    }

    .submenu a {
        color: white;
    }
}