/* Nav Styles */
.nav {
        padding: 2rem 0;
}
.nav__icon,
.nav__close,
.nav__bgOverlay {
        display: none;
}
.nav__wrapper {
        display: flex;
        justify-content: space-between;
}
.nav__list li {
        display: inline-block;
        margin: 0 1rem;
}
.nav__list .nav__link {
        font-size: 1.8rem;
        font-family: 'Pricedown Bl', 'Pricedown', sans-serif;
        color: var(--yellow-gta);
        padding: 0.5rem;
        text-transform: uppercase;
        position: relative;
        transition: all 0.3s ease;
        letter-spacing: 0.05em;
}
.nav__list .nav__link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--pink-gta), transparent);
        transform: translateX(-50%);
        transition: width 0.3s ease;
}
.nav__list li:hover .nav__link {
        color: var(--pink-gta);
}
.nav__list li:hover .nav__link::after {
        width: 100%;
}
@media only screen and (max-width: 768px) {
        .nav {
                position: relative;
                /* overflow-x: scroll; */
        }
        .nav__icon {
                display: block;
        }
        .nav__icon svg,
        .nav__close svg {
                pointer-events: none;
                height: 30px;
                width: 30px;
        }
        .nav__close {
                display: block;
                position: absolute;
                color: var(--white-1);
                right: 1rem;
                top: 1rem;
                cursor: pointer;
        }
        .nav__list {
                z-index: 1000;
                position: absolute;
                left: 100%;
                top: 0;
                height: 100vh;
                width: 80%;
                background: var(--lightGreen-1);
                display: flex;
                align-items: center;
                justify-content: flex-end;
                padding-right: 2rem;
                transform: translate(0%);
                overflow: hidden;
                transition: 0.3s ease-in transform;
        }
        .nav__list.show {
                transform: translate(-100%);
        }
        .nav__list li {
                display: block;
                text-align: right;
                margin-bottom: 2rem;
        }
        .nav__list a {
                font-size: 1.6rem;
        }
        .nav__bgOverlay {
                position: absolute;
                left: 0;
                top: 0;
                z-index: 1000;
                height: 100vh;
                width: 100%;
                background: rgba(18, 24, 14, 0.808);
                display: none;
        }
        .nav__bgOverlay.active {
                display: block;
        }
}
/* End Nav Styles */
/* Global Button Styles */
.btn {
        color: var(--pink-gta);
        font-family: 'Pricedown Bl', 'Pricedown', sans-serif;
        font-weight: 500;
        border-radius: 8px;
        font-size: 1.4rem;
        padding: 1.2rem 2rem;
        text-transform: uppercase;
        border: 2px solid var(--pink-gta);
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        letter-spacing: 0.05em;
}
.btn:hover {
        transform: translateY(-2px);
        border-color: var(--yellow-gta);
        color: var(--yellow-gta);
}
.btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 165, 0, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
}
.btn:hover::before {
        width: 300px;
        height: 300px;
}
.primary-btn {
        color: var(--white-1);
        background: linear-gradient(135deg, var(--pink-gta) 0%, #ff8ec4 100%);
        border: 2px solid var(--pink-gta);
}
.primary-btn:hover {
        background: linear-gradient(135deg, var(--yellow-gta) 0%, #ffd700 100%);
        border-color: var(--yellow-gta);
        color: var(--black-1);
        transform: translateY(-3px);
}
@media only screen and (min-width: 700px) {
        .btn {
                padding: 1.3rem 2rem;
                font-size: 2rem;
        }
}
/* End Global Button Styles */

/* Store info section styles*/
.storeInfo__wrapper {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
}
.storeInfo__item {
        background: linear-gradient(145deg, rgba(26, 26, 46, 0.95), rgba(15, 15, 30, 0.95));
        padding: 20px 30px;
        text-align: center;
        border-radius: 16px;
        width: 150px;
        border: 2px solid var(--yellow-gta);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
}
.storeInfo__item::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
                45deg,
                transparent,
                rgba(255, 232, 140, 0.15),
                transparent
        );
        transform: rotate(45deg);
        transition: all 0.6s ease;
}
.storeInfo__item:hover::before {
        left: 100%;
}
.storeInfo__item:hover {
        transform: translateY(-8px);
        border-color: var(--pink-gta);
}
.storeInfo__icon {
        width: 50px;
        margin: 0 auto;
        margin-bottom: 1.5rem;
}
.storeInfo__title {
        font-size: 1.4rem;
        font-family: 'Bank Gothic', sans-serif;
        font-weight: 500;
        margin-bottom: 0.5rem;
        color: var(--yellow-gta);
}
.storeInfo__text {
        font-size: 1.4rem;
        font-family: Raleway;
        color: var(--yellow-gta);
}
@media only screen and (min-width: 768px) {
        .storeInfo__wrapper {
                gap: 2rem;
        }
        .storeInfo__item {
                min-width: 200px;
                padding: 40px 0;
        }
        .storeInfo__icon {
                width: 70px;
                margin-bottom: 2.5rem;
        }
        .storeInfo__title {
                font-size: 1.8rem;
                margin-bottom: 1rem;
        }
        .storeInfo__text {
                font-size: 1.6rem;
        }
}

/* Dishes Grid */
.dishGrid__title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        font-weight: 600;
        color: var(--yellow-gta);
        font-family: 'Pricedown Bl', 'Pricedown', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.05em;
}
.dishGrid__wrapper {
        display: grid;
        /* grid-template-columns: repeat(autofit, minmax(140px, 1fr)); */
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
}
.dishGrid__item {
        display: flex;
        flex-direction: column;
        background: linear-gradient(145deg, rgba(26, 26, 46, 0.95), rgba(15, 15, 30, 0.95));
        padding: 0.5rem;
        border-radius: 12px;
        gap: 0.5rem;
        border: 2px solid rgba(255, 165, 0, 0.4);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
}
.dishGrid__item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 165, 0, 0.1),
                transparent
        );
        transition: left 0.5s ease;
}
.dishGrid__item:hover::before {
        left: 100%;
}
.dishGrid__item:hover {
        transform: translateY(-5px);
        border-color: var(--pink-gta);
}
.dishGrid__item__img {
        flex: 4;
}
.dishGrid__item__info {
        flex: 5;
}
.dishGrid__item__img img {
        object-fit: cover;
        border-radius: 12px;
}
.dishGrid__item__title {
        font-size: 1.4rem;
        line-height: 1.3em;
        font-weight: 500;
        color: var(--white-1);
        margin-bottom: 0.5rem;
        font-family: 'Bank Gothic', sans-serif;
}
.dishGrid__item__price {
        font-size: 1.4rem;
        color: var(--pink-gta);
        font-weight: 600;
        margin-bottom: 0.5rem;
}
.dishGrid__item__stars {
        max-height: 15px;
        width: max-content;
}
@media only screen and (min-width: 768px) {
        .dishGrid__title {
                font-size: 2.4rem;
        }
        .dishGrid__wrapper {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 3rem;
        }
        .dishGrid__item {
                flex-direction: row;
                padding: 1.5rem;
                border-radius: 12px;
                gap: 1rem;
        }
        .dishGrid__item__title {
                font-size: 2.4rem;
                margin-bottom: 1rem;
        }
        .dishGrid__item__price {
                font-size: 2rem;
                margin-bottom: 1rem;
        }
}
/* Dishes Grid */

/* Footer Styles */
footer {
        background: linear-gradient(180deg, rgba(15, 15, 30, 0.98) 0%, rgba(10, 10, 20, 0.98) 100%);
        padding-top: 5rem;
        padding-bottom: 2rem;
        border-top: 2px solid rgba(255, 165, 0, 0.6);
        position: relative;
}
footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, 
                transparent, 
                var(--pink-gta), 
                var(--yellow-gta),
                var(--pink-gta),
                transparent
        );
        animation: borderFlow 3s linear infinite;
}
@keyframes borderFlow {
        0% { background-position: 0% 50%; }
        100% { background-position: 200% 50%; }
}
.footer__wrapper {
        display: flex;
        flex-direction: column;
        gap: 3rem;
}
.footer__logo {
        width: 150px;
        margin-bottom: 2rem;
}
.footer__desc {
        font-size: 1.4rem;
        color: var(--yellow-gta);
        margin-bottom: 2rem;
}
.footer__socials__title {
        font-size: 1.8rem;
        color: var(--yellow-gta);
        margin-bottom: 1rem;
        font-family: 'Pricedown Bl', 'Pricedown', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.05em;
}
.footer__socials li {
        display: inline-block;
        margin-right: 0.5rem;
}
.footer__socials a {
        padding: 0.5rem 0.8rem;
        background: linear-gradient(135deg, var(--pink-gta) 0%, #ff8ec4 100%);
        border: 2px solid var(--pink-gta);
        border-radius: 8px;
        transition: all 0.3s ease;
}
.footer__socials a:hover {
        background: linear-gradient(135deg, var(--yellow-gta) 0%, #ffd700 100%);
        border-color: var(--yellow-gta);
        transform: translateY(-3px) scale(1.1);
}
.footer__socials svg {
        width: 20px;
        color: var(--black-1);
}
.footer__text__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--yellow-gta);
        font-weight: 600;
        font-family: 'Pricedown Bl', 'Pricedown', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.05em;
}
.footer__text a {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        color: var(--yellow-gta);
        font-family: Raleway;
        font-weight: 500;
        line-height: 1.4em;
}
.footer__text a:hover {
        color: var(--pink-gta);
}
@media only screen and (min-width: 768px) {
        footer {
                padding-top: 8rem;
                padding-bottom: 4rem;
        }
        .footer__wrapper {
                flex-direction: row;
        }
        .footer__col1 {
                flex: 4;
        }
        .footer__col2,
        .footer__col3,
        .footer__col4 {
                flex: 2;
        }
        .footer__desc {
                max-width: 300px;
                font-size: 1.8rem;
                margin-bottom: 2.5rem;
        }
        .footer__socials__title {
                font-size: 2rem;
                margin-bottom: 1.5rem;
        }
        .footer__text__title {
                font-size: 2rem;
                margin-bottom: 2rem;
        }
        .footer__text a {
                font-size: 1.8rem;
                margin-bottom: 1rem;
        }
}
#copyright {
        padding: 1rem 0;
}
.copyright__text {
        font-size: 1.4rem;
        text-align: center;
        color: var(--yellow-gta);
}
@media only screen and (min-width: 768px) {
        .copyright__text {
                font-size: 1.6rem;
                text-align: center;
        }
}
/* End Footer Styles */

/* Form Styles */
#form {
        padding: 5rem 0;
}
.form__title {
        font-size: 2.4rem;
        color: var(--yellow-gta);
        font-weight: 600;
        font-family: 'Pricedown Bl', 'Pricedown', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.08em;
}
.form__wrapper {
        padding: 3rem 0;
}
.form__wrapper form {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
}
.form__group label {
        font-size: 1.6rem;
        font-family: 'Bank Gothic', sans-serif;
        color: var(--yellow-gta);
        font-weight: 500;
}
.form__group input,
.form__group textarea,
.form__group select {
        width: 100%;
        border: none;
        background: linear-gradient(145deg, rgba(26, 26, 46, 0.95), rgba(15, 15, 30, 0.95));
        font-size: 1.4rem;
        font-family: Raleway;
        font-weight: 600;
        padding: 1.5rem;
        border-radius: 12px;
        margin-top: 0.5rem;
        color: var(--white-1);
        border: 2px solid rgba(255, 165, 0, 0.4);
        transition: all 0.3s ease;
}
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
        outline: none;
        border-color: var(--pink-gta);
        transform: translateY(-2px);
}
.form__group textarea {
        resize: vertical;
}
.form__wrapper button[type='submit'] {
        width: max-content;
        border: none;
        padding: 1rem 4rem;
        font-weight: 500;
        letter-spacing: 0.1rem;
}
@media only screen and (min-width: 768px) {
        .form__title {
                font-size: 4.2rem;
        }
        .form__wrapper {
                padding: 5rem 0;
        }
        .form__wrapper form {
                grid-template-columns: 1fr 1fr;
        }
        .form__group__full {
                grid-column: 1/3;
        }
        .form__group label {
                font-size: 1.8rem;
        }
        .form__group input,
        .form__group textarea,
        .form__group select {
                font-size: 1.8rem;
                padding: 2rem;
                margin-top: 1.5rem;
        }
}
