*{
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body, div, ul, li, a, h1, h2, h3, h4, h5, p{
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--dark-color);
}

li {
    list-style-type: none;
}

.h3 {
    text-align: center;
    font-size: 40px;
    font-weight: 200;
    text-transform: uppercase;
    color: var(--dark-color);
}

body{
    --white-color: #fff;
    --bg-color: #fffaf0;
    --light-color: #e9c268;
    --dark-color: #531909;
    background-color: var(--bg-color);
    font-family: Montserrat;
    color: var(--text-color);
    font-size: 25px;
}

.button {
    padding: 10px 25px;
    background-color: var(--dark-color);
    color: var(--bg-color);
    border: 2px solid;
    transition: background-color 0.35s, color 0.35s;
    border-radius: 16px;
    font-size: 0.8rem;
}

.button:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100dvh;
}

/*  HEADER SECTION  */

.header__container {
    background-color: var(--dark-color);
    position: sticky;
    top: 0;
    box-shadow: 0 0 7px #000;
    z-index: 10;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: var(--light-color);
    max-width: 1600px;
    margin: auto;
}

.logo__container {
    max-width: 80px;
}

.logo {
    max-width: 100%;
    height: auto;
}

.checkbox {
    display: none;
}

.content__container {
    display: none;
    background-color: var(--dark-color);
}

.close__menu-button {
    display: none;
}

.open__menu-button, .close__menu-button {
    width: 35px;
    cursor: pointer;
    filter: brightness(0) saturate(100%) invert(90%) sepia(69%) saturate(630%) hue-rotate(317deg) brightness(94%) contrast(94%);
}

.checkbox:checked ~ .checkbox__label .open__menu-button {
    display:none;
}

.checkbox:checked ~ .checkbox__label .close__menu-button {
    display:block;
}

.checkbox:checked ~ .content__container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: absolute;
    top: 105.75px;
    left: 0;
    background-color: var(--bg-color);
    width: 100dvw;
    height: fit-content;
    padding: 60px 0;
    justify-content: start;
    align-items: center;
    z-index: 10;
    box-shadow: 0 0 10px #0007;
}

    

.nav__list-item {
    list-style-type: none;
    cursor: pointer;
    text-align: center;
    position: relative;
}

.nav__list-item, .nav__list-item a {
    color: var(--dark-color);
}

.nav__list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-size: 1rem;
    text-align: center;
}

.header__button {
    z-index: 1;
}

.nav__link:hover {
    text-decoration: underline;
}

@media only screen and (min-width: 810px) {
    .open__menu-button, .close__menu-button {
        display: none;
    }

    .content__container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        font-size: 20px;
        gap: 100px;
    }

    .nav__list-item, .nav__list-item a {
    color: var(--light-color);
    }

    .nav__list {
        flex-direction: row;
        gap: 30px;
    }

    .header__button {
        color: var(--dark-color);
        background-color: var(--light-color);
    }

    .header__button:hover {
        color: var(--light-color);
        background-color: var(--dark-color);
    }
}

@media only screen and (min-width: 800px) and (max-width: 930px) {
    .content__container {
        font-size: 16px;
        gap: 80px;
        align-items: center;
    }
}


h1 {
    text-align: center;
    margin-top: 40px;
    color: var(--dark-color);
    font-size: 2.5rem;
    padding: 0 20px;
}

h2, h3 {
    font-size: 2rem;
    align-self: flex-start;
}

.pago-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 0;
}

.qr-box {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    max-width: 280px;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-box:hover {
    transform: scale(1.03);
}

.title-zelle {
    color: #702c8c;
}

.title-venmo {
    color: #3d95ce;
}

.pago-img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    margin-top: 15px;
}

@media (max-width: 600px) {
    .pago-container {
        flex-direction: column;
        align-items: center;
    }
}

.pedidos {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 1.3rem;
    justify-content: center;
    align-items: center;
    color: var(--dark-color);
    padding: 30px;
    padding-top: 0;
    text-align: center;
}

.pedidos p {
    align-self: center;
}

.pago-link {
    text-decoration: underline;
    color: var(--dark-color);
    transition: color 0.3s;
}

.pago-link:hover {
    color: var(--light-color);
}

/*  FOOTER SECTION  */

.footer {
    background-color: var(--dark-color);
}

.footer-container {
    max-width: 1500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 30px;
    color: var(--light-color);
}

.container-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer__img-container {
    width: 200px;
    height: auto;
}

.footer__img-container img {
    width: 100%;
}

.footer__nav-container, .footer__contact-social-container, .contact-footer, .footer__contact-social {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer__contact-social-container {
    gap: 40px;
}

.social__icons-list {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.footer__nav-title {
    font-size: 1.5rem;
}

.footer__nav-list {
    text-align: center;
}

.footer_nav-item {
    padding-top: 10px;
    font-size: 1.2rem;
}

.footer-phone, 
.footer_nav-item a {
    color: var(--bg-color);
    transition: color 0.3s;
}

.footer_nav-item a:hover, .footer-phone:hover {
    color: var(--light-color);
}

.icon__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
}

.footer-icons {
    width: 25px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(100%) sepia(49%) saturate(1551%) hue-rotate(303deg) brightness(104%) contrast(108%);
}

@media screen and (min-width: 500px) {
    .footer-container {
        flex-direction: row;
    }
    .container-container {
        flex-direction: row;
        align-items: start;
    }
}