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

body {
    font-family: 'Quicksand Medium', sans-serif;
    font-weight: 500;
    overflow: hidden;
    background: #FFF3B9;
}

/* home pagina styles */

.backgroundHome {
    background-image: url('images/index-background.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;

    position: fixed;
    z-index: -10;
    top: 0;
    left: 0;
}

.navbar {
    background-color: #FFF3B9;
    padding: 15px 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 70px;
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 200px;
}

.nav-links a {
    text-decoration: none;
    color: #2E572B;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #F2BA00;
}

/* bestel nu button */

@keyframes wobble {
    0% {
        transform: rotate(-15deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(-15deg);
    }

    75% {
        transform: rotate(-20deg);
    }

    100% {
        transform: rotate(-15deg);
    }
}

.bestelNu {
    transform: rotate(-10deg);
    position: fixed;
    width: 12rem;
    height: auto;
    cursor: pointer;
    animation: wobble 4s ease-in-out infinite;
    top: 20vh;
    right: 25vw;
    max-width: 25vw;
}

/* Large screens */
@media (min-width: 1200px) {
    .bestelNu {
        width: 14rem;
        right: 23vw;
        top: 18vh;
    }
}

/* Desktop */
@media (max-width: 1199px) and (min-width: 992px) {
    .bestelNu {
        width: 12rem;
        right: 18vw;
        top: 20vh;
    }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 769px) {
    .bestelNu {
        width: 10rem;
        right: 15vw;
        top: 22vh;
    }
}

/* Mobile landscape */
@media (max-width: 768px) and (min-width: 481px) {
    .bestelNu {
        width: 8rem;
        right: 12vw;
        top: 25vh;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .bestelNu {
        width: 6rem;
        right: 8vw;
        top: 28vh;
        max-width: 30vw;
    }
}

/* product pagina styles */

.backgroundProduct {
    background-image: url('images/Limoncello_Mockup.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: -10;
    top: 50px;
    left: 0;
}

.product-container {
    position: absolute;
    color: #2E572B;
    top: 20vh;
    right: 20vw;
    width: 300px;
    padding: 20px;
}

a {
    text-decoration: none;
}

.cta-button {
    display: block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #3C8A3B;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #F2BA00;
}

.productInfo-container {
    position: absolute;
    color: #2E572B;
    bottom: 20vh;
    left: 20vw;
    width: 400px;
    padding: 20px;
}

/* recepten styles */

.backgroundRecepten {
    background-image: url('images/BackgroundRecepten.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: -10;
    top: 25px;
    left: 0;
}

.recepten-container {
    position: absolute;
    color: #2E572B;
    top: 20vh;
    left: 20vw;
    width: 400px;
    padding: 20px;
}

/* recepten kader */

.recepten-box {
    position: absolute;
    top: 30vh;
    left: 21vw;
    width: 55vw;
    height: 50vh;
    background-color: #FFF3B9;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text-content {
    flex-grow: 1;
    overflow: hidden;
}

.text-content p {
    margin: 0;
    font-size: 16px;
    color: #2E572B;
}

.button-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -1%;
}

.button-container button {
    display: block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #3C8A3B;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button-container button:hover {
    background-color: #F2BA00;
}

.indicator-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.indicator {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #96d195;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #3C8A3B;
}

.flexboxRecepten {
    display: flex;
    gap: 20px;
}

.flexboxRecepten div {
    flex: 1;
    padding: 10px;
    box-sizing: border-box;
}

.beeldmerk{
    height: 70vh;
    position: absolute;
    top: 16vh;
    right: 10vw;
    z-index: -1;
}

/* contact styles */

.textBoxContact{
    width: 80%;
    max-width: 500px;
    margin: 5% 20%;
    padding: 20px;
    color: #2E572B;
    text-align: left;
}

.message-box {
    width: 35vw;
    max-width: 35vw;
    margin: -3% 20%;
    padding: 20px;
}

.message-content {
    margin-bottom: 20px;
    color: #2E572B;
}

.input-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

#user-input {
    flex: 1;
    max-width: 300px;
    padding: 10px;
    border: 1px solid #FFF3B9;
    background-color: #F7D62F;
    border-radius: 10px;
    font-size: 14px;
    box-sizing: border-box;
}

#send-button {
    padding: 10px 20px;
    background-color: #3C8A3B;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

#send-button:hover {
    background-color: #F2BA00;
}

#email-input {
    margin-top: 2%;
    flex: 1;
    width: 21vw;
    padding: 10px;
    border: 1px solid #FFF3B9;
    background-color: #F7D62F;
    border-radius: 10px;
    font-size: 14px;
    box-sizing: border-box;
}

.textSmallContact{
    margin-bottom: 2%;
    color: #2E572B;
}

/* bestellen styles */

.quantity-row {
    display: flex;
    align-items: center; /* Centreert de items verticaal */
    gap: 10px; /* Ruimte tussen "Aantal" en de knoppen */
}

.quantity-container {
    display: flex;
    align-items: center; /* Centreert de knoppen en het invoerveld verticaal */
    gap: 5px; /* Ruimte tussen de knoppen en het invoerveld */
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: #3C8A3B;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    line-height: 30px;
}

.quantity-btn:hover {
    background-color: #2e6a2d;
}

#quantity-input {
    width: 50px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #FFF3B9;
    border-radius: 10px;
    background-color: #F7D62F;
    padding: 5px;
    box-sizing: border-box;
    -moz-appearance: textfield;
    -webkit-appearance: none;
    appearance: none;
}

/* Specifieke stijl voor WebKit-gebaseerde browsers */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 10px;
    font-size: 16px;
    color: #2E572B;
}

#price-display {
    font-weight: bold;
    color: #3C8A3B;
}

.input-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

#firstname-input {
    flex: 1;
    max-width: 300px;
    padding: 10px;
    border: 1px solid #FFF3B9;
    background-color: #F7D62F;
    border-radius: 10px;
    font-size: 14px;
    box-sizing: border-box;
}

.textBoxBestel{
    width: 80%;
    max-width: 500px;
    margin: 10vh 20vw 3vh;
    padding: 20px;
    color: #2E572B;
    text-align: left;
}

.textBoxGegevens{
    width: 80%;
    max-width: 500px;
    margin: 0 20%;
    padding: 20px;
    color: #2E572B;
    text-align: left;
}

.textBoxIdeal {
    width: 80%;
    position: absolute;
    max-width: 500px;
    right: 10vw;
    top: 19vh;
    padding: 20px;
    color: #2E572B;
    text-align: left;
}

.quantity-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

#bank-dropdown {
    padding: 10px;
    border: 1px solid #FFF3B9;
    border-radius: 10px;
    font-size: 14px;
    background-color: #F7D62F;
    cursor: pointer;
}

.betaalKnop {
    display: block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #3C8A3B;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.betaalKnop:hover {
    background-color: #2e6a2d;
}

.logoIdeal{
    position: absolute;
    top: 21vh;
    right: 19vw;
    height: 13vh
}