.body {
    overflow-y: scroll;
    overflow-x: hidden;
    background: linear-gradient(270deg,
            rgba(108, 105, 122, 1) 0%,
            rgba(69, 66, 82, 1) 33%,
            rgba(67, 64, 75, 1) 66%,
            rgba(35, 31, 32, 1) 100%);
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

nav {
    background: linear-gradient(270deg,
            rgba(108, 105, 122, 1) 0%,
            rgba(69, 66, 82, 1) 33%,
            rgba(67, 64, 75, 1) 66%,
            rgba(35, 31, 32, 1) 100%);
}

.navbar-large {
    transition: all 0.35s cubic-bezier(.68, -0.55, .27, 1.55);
}

.navbar-small {
    transition: all 0.3s cubic-bezier(.68, -0.55, .27, 1.55);
}

.studio-text {
    opacity: 1;
    max-height: 100px;
    transition: opacity 0.5s ease, max-height 0.5s ease;
    overflow: hidden;
}

.navbar-small .studio-text {
    opacity: 0;
    max-height: 0;
}

#logo img {
    transition: all 0.3s cubic-bezier(.68, -0.55, .27, 1.55);
    max-height: 170px;
}

.navbar-small #logo img {
    max-height: 90px;
}

#navbar {
    transition: margin-top 0.3s ease-in-out;
}

#btn-consult {
    background: linear-gradient(270deg, #E3C489 0%, #B4852D 100%);
    white-space: nowrap;
    padding: 7px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(180, 133, 45, 0.18);
    position: absolute;
    top: 50px;
    right: 20px;
    transition:
        background 0.45s cubic-bezier(.5, .3, .3, 1),
        box-shadow 0.35s cubic-bezier(.5, .3, .3, 1),
        transform 0.35s cubic-bezier(.5, .3, .3, 1),
        top 0.3s cubic-bezier(.5, .3, .3, 1);
    z-index: 100;
}

#btn-consult a {
    color: white;
    font-size: large;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-shadow:
        0 2px 8px #B4852D,
        0 1px 0 #43404B,
        0 0 1px #43404B,
        0 0 2px #43404B;
    text-decoration: none;
    transition: color 0.28s cubic-bezier(.5, .3, .3, 1), text-shadow 0.4s cubic-bezier(.5, .3, .3, 1);
    display: block;
}

#btn-consult:hover,
#btn-consult:focus {
    cursor: pointer;
    transform: scale(1.045);
    border-style: ridge;
    border-width: 1px;
    border-color: white;
}

#btn-consult:hover a,
#btn-consult:focus a {
    color: #fff;
}

.navbar-small #btn-consult {
    top: 30px;
    transition: top 0.3s ease-in-out;
}

li {
    font-size: 1.10rem;
}

p {
    font-size: 1.2rem;
    /* standaard voor normale schermen */
}

#underbody {
    margin-top: 150px;
}

.gradient-text {
    background: linear-gradient(270deg,
            rgba(108, 105, 122, 1) 0%,
            rgba(69, 66, 82, 1) 33%,
            rgba(67, 64, 75, 1) 66%,
            rgba(35, 31, 32, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* for Firefox */
    color: transparent;
}

#seo-intro {
    background: transparent;
    color: #E3C489;
    border-radius: 8px;
    border: 2px solid #E3C489;
}

#seo-faq {
    background: transparent; /* geen wit blok */
    color: #E3C489; /* goudkleur voor tekst */
}

/* Titel van FAQ */
#seo-faq h2 {
    color: #E3C489;
    border-bottom: 2px solid #E3C489;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Accordion item */
#seo-faq .accordion-item {
    background: transparent;
    border: 1.5px solid #E3C489;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Header knop */
#seo-faq .accordion-button {
    background: transparent;
    color: #E3C489;
    font-weight: 500;
    border: none;
    box-shadow: none;
}

/* Hover/active effect */
#seo-faq .accordion-button:not(.collapsed) {
    background: rgba(180, 133, 45, 0.15); /* subtiel goud transparant */
    color: #fff;
}

/* Dropdown arrow (Bootstrap caret) */
#seo-faq .accordion-button::after {
    filter: invert(76%) sepia(44%) saturate(529%) hue-rotate(7deg) brightness(93%) contrast(91%);
    /* maakt de standaard arrow goudkleurig */
}

/* Accordion body */
#seo-faq .accordion-body {
    background: transparent;
    color: #E3C489;
}

@media (max-width: 768px) {
    p {
        font-size: 4vw;
        /* voor telefoons: relatief groter */
    }

    .navbar-small #navbar {
        margin-top: 20px;
    }

    #nav-behandelingen-tab {
        min-width: 169px;
        font-size: 1.1rem;
        padding-left: 18px !important;
        padding-right: 18px !important;
        /* Je kan hier nog meer padding/font doen als je wil */
    }

    #underbody {
        margin-top: 165px;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
    }

    #logo {
        width: 100%;
        text-align: center;
    }

    #logo img {
        max-height: 70px;
    }

    .beer-slider {
        max-width: 98vw;
        max-height: 60vh;
    }

    #behandelingen-dropdown {
        border-width: 1px;
    }

    #behandelingen-dropdown .dropdown-item {
        font-size: small;
    }
}

.beer-slider,
.beer-reveal {
    overflow: hidden;
    height: fit-content;
}

.beer-slider img,
.beer-reveal img {
    aspect-ratio: 4 / 3;
    object-fit: contain;
}

.beer-slider {
    visibility: hidden;
    position: relative;
}

.beer-slider.beer-loaded {
    visibility: visible;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(180, 133, 45, 1);
    /* jouw goudkleur met transparantie */
    width: 48px;
    /* standaard is 5%, kun je aanpassen */
    height: 48px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

#button {
    position: fixed;
    top: 50px;
    right: 50px;
    border: none;
    color: transparent;
}

#button-footer {
    border: 2px solid rgba(35, 33, 46, 1);
    border-radius: 5px;
    color: rgba(35, 33, 46, 1);
}

#nav-tab {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    white-space: nowrap;
}

#nav-tab button {
    color: white;
    border: none;
    font-weight: 500;
    font-size: 0.9rem;
    background-color: transparent;
    margin-left: clamp(5px, 1.5vw, 50px);
    margin-right: clamp(5px, 1.5vw, 50px);
    padding-left: 2vw;
    padding-right: 2vw;
}

#nav-tab .nav-link {
    color: white;
    background-color: transparent;
    transition: background-color 0.3s ease;
    border-radius: 10px;
}

#nav-tab .nav-link.active {
    border-style: ridge;
    border-color: rgba(203, 165, 102, 1);
}

#nav-tab .nav-link:hover {
    color: white;
}

#card,
#card-big,
#card-small,
#card-mob {
    border: none;
    overflow-y: auto;
    background-color: transparent;
}

#card {
    height: 65vh;
}

#card-mob {
    height: 45vh;
}

#card img,
#card-mob img {
    height: 100%;
    width: 100%;
}

#card img {
    object-fit: contain;
}

#card-mob img {
    object-fit: cover;
}

#menu-tab {
    background: linear-gradient(270deg,
            rgba(108, 105, 122, 1) 0%,
            rgba(69, 66, 82, 1) 33%,
            rgba(67, 64, 75, 1) 100%);
    border-radius: 2px;
}

#menu-tab button {
    background-color: transparent;
    color: white;
    border-left: none;
    border-top: none;
    border-right: none;
    border-radius: 0px;
    border-width: 5px;
    flex-grow: 1;
    min-width: min-content;
    max-width: 40%;
    font-size: medium;
    font-weight: bold;
}

#btn-verstuur {
    color: white;
    font-size: large;
    font-weight: 400;
    background: linear-gradient(270deg,
            rgba(108, 105, 122, 1) 0%,
            rgba(69, 66, 82, 1) 33%,
            rgba(67, 64, 75, 1) 100%);
}

footer {
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#behandelingen-dropdown {
    background: rgba(69, 66, 82, 1);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    margin-top: -10px;
    border-style: ridge;
    border-color: rgba(203, 165, 102, 1);
    border-top: none;
    border-width: 2.5px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#behandelingen-dropdown .dropdown-item {
    color: white;
    transition: background 0.25s, color 0.2s, padding 0.2s;
    padding: 7px 24px 7px 16px;
}

#behandelingen-dropdown .dropdown-item:hover,
#behandelingen-dropdown .dropdown-item:focus {
    background: linear-gradient(90deg, #EAD691 0%, #E3C489 100%);
    color: #43404B;
    box-shadow: 0 2px 12px #B4852D33;
    font-weight: 600;
    cursor: pointer;
}

.mobile-bottom-bar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: linear-gradient(270deg,
            rgba(108, 105, 122, 1) 0%,
            rgba(69, 66, 82, 1) 33%,
            rgba(67, 64, 75, 1) 66%,
            rgba(35, 31, 32, 1) 100%);
    z-index: 9999;
    box-shadow: 0 -4px 16px rgba(35, 31, 32, 0.12);
    padding: 0.7rem 1.2rem 0.8rem 1.2rem;
    display: flex;
    justify-content: center;
}

.consult-bottom-btn {
    background: linear-gradient(270deg, #E3C489 0%, #B4852D 100%);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(180, 133, 45, 0.13);
    padding: 12px 0;
    border: none;
    text-shadow: 0 2px 8px #B4852D, 0 1px 0 #43404B, 0 0 1px #43404B, 0 0 2px #43404B;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.consult-bottom-btn:active,
.consult-bottom-btn:focus,
.consult-bottom-btn:hover {
    background: linear-gradient(270deg, #B4852D 0%, #E3C489 100%);
    color: #fff;
}