/*=============== GOOGLE FONTS ===============*/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/*=============== VARIABLES CSS ===============*/

:root {
    --header-height: 3.5rem;
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    /* الألوان الرئيسية */
    --first-color: #5eba58;
    /* اللون الأساسي */
    --first-color-alt: #5cdc64;
    /* لون بديل أفتح */
    --first-color-light: #d9f0d9;
    /* لون فاتح للخلفيات / highlights */
    --input-background: white;
    /* التدرج */
    --gradient-color: linear-gradient(180deg, #5cdc64 0%, #224621 100%);
    /* ألوان النص */
    --title-color: #224621;
    /* للعنواوين */
    --text-color: #224621cc;
    /* نص عادي */
    --text-color-light: #22462199;
    /* نص خفيف */
    /* الألوان المحايدة / خلفيات */
    --white-color: #f5fff5;
    /* أبيض خفيف جدًا */
    --dark-color: #224621;
    /* داكن */
    --body-color: #e6f5e6;
    /* خلفية الجسم */
    --container-color: #f8fff8;
    /* خلفية الحاويات */
    /* الظلال */
    --shadow-first-color: rgba(94, 186, 88, 0.3);
    /* ظل أخضر شفاف */
    --shadow-small: 0 4px 8px hsla(45, 50%, 8%, .1);
    --shadow-big: 0 2px 16px hsla(45, 50%, 8%, .1);
    --shadow-img-small: drop-shadow(0 4px 8px hsla(45, 50%, 8%, .2));
    --shadow-img-big: drop-shadow(0 16px 4px hsla(45, 50%, 8%, .3));
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Montserrat", sans-serif;
    --biggest-font-size: 2.25rem;
    --bigger-font-size: 1.5rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}


/*========== Responsive typography ==========*/

@media screen and (min-width: 1150px) {
     :root {
        --biggest-font-size: 4rem;
        --bigger-font-size: 3rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}


/*=============== BASE ===============*/

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

html {
    scroll-behavior: smooth;
}

body,
button,
input {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}

body {
    background-color: var(--body-color);
    color: var(--text-color);
    transition: background-color .4s;
}

input,
button {
    border: none;
    outline: none;
}

h1,
h2,
h3,
h4 {
    color: var(--title-color);
    font-weight: var(--font-bold);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    display: block;
    /* max-width: 100%; */
    height: auto;
}


/*=============== THEME ===============*/


/*========== Variables Dark theme ==========*/

.dark-theme {
    --first-color-light: #5cdc64;
    /* أخضر فاتح مناسب للدارك مود */
    --title-color: hsl(45, 4%, 95%);
    --text-color: hsl(45, 4%, 60%);
    --input-background: #0000006e;
    --body-color: hsl(45, 8%, 8%);
    --container-color: hsl(45, 8%, 12%);
    --shadow-small: 0 4px 8px hsla(45, 50%, 2%, .2);
    --shadow-big: 0 2px 16px hsla(45, 50%, 2%, .6);
}


/*========== 
	Color changes in some parts of 
	the website, in dark theme
==========*/

.dark-theme :is(.button,
.home__link:hover,
.menu__button,
.swiper-button-prev:hover,
.swiper-button-next:hover,
.footer__social-link:hover,
.footer__button:hover) {
    color: var(--dark-color);
}

.dark-theme .footer {
    background-color: var(--container-color);
}

.dark-theme :is(.footer__social-link,
.footer__form) {
    background-color: var(--body-color);
}

.dark-theme::-webkit-scrollbar {
    background-color: hsl(45, 8%, 12%);
}

.dark-theme::-webkit-scrollbar-thumb {
    background-color: hsl(45, 8%, 20%);
}

.dark-theme::-webkit-scrollbar-thumb:hover {
    background-color: hsl(45, 8%, 24%);
}


/*=============== REUSABLE CSS CLASSES ===============*/

.container {
    max-width: 1120px;
    margin-inline: 1.5rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.section {
    padding-block: 5rem 1rem;
}

.section__title,
.section__subtitle {
    text-align: center;
}

.section__title {
    font-size: var(--bigger-font-size);
    margin-bottom: 2rem;
}

.section__subtitle {
    font-size: var(--normal-font-size);
    color: var(--body-color);
    margin-bottom: .25rem;
}

.main {
    overflow: hidden;
}


/*=============== HEADER & NAV ===============*/

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--body-color);
    z-index: var(--z-fixed);
    transition: background-color .4s, box-shadow .4s;
}

.ss {
    width: 3rem;
}

.nav {
    position: relative;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    column-gap: .25rem;
}

.nav__logo i {
    font-size: 1.5rem;
    color: var(--title-color);
    transition: color .4s;
}

.nav__logo span {
    font-weight: var(--font-bold);
    color: var(--first-color);
}

.nav__toggle {
    display: flex;
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
    transition: transform .4s;
}


/* Navigation for mobile devices */

@media screen and (max-width:1150px) {
    .nav__menu {
        position: fixed;
        top: 5rem;
        left: -200%;
        right: 0;
        margin: 0 auto;
        width: 75%;
        box-shadow: var(--shadow-big);
        background-color: var(--body-color);
        padding: 3.5rem;
        border-radius: 3rem;
        border: 3px solid var(--first-color);
        transition: left .4s, background-color .4s, box-shadow .4s;
    }
}

.nav__list {
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.nav__link {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    transition: color .4s;
}

.nav__link:hover {
    color: var(--first-color);
}

.nav__theme {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.25rem;
    color: var(--title-color);
    cursor: pointer;
}


/* Show menu */

.show-menu {
    left: 0;
}

.show-menu+.nav__toggle {
    transform: rotate(90deg);
}


/* Add shadow header */

.shadow-header {
    box-shadow: 0 2px 16px hsl(123.27deg 46.22% 53.33%);
}


/* Active link */

.active-link {
    color: var(--first-color);
}


/*=============== HOME ===============*/

.home__container {
    padding-block: 1.5rem;
    row-gap: 3rem;
}

.home__data {
    text-align: center;
    display: grid;
    row-gap: 3rem;
}

.home__title {
    font-size: var(--biggest-font-size);
    margin-bottom: .5rem;
}

.home__title span {
    color: var(--first-color);
}

.home__description {
    margin-bottom: 2rem;
}

.home__social {
    display: flex;
    justify-content: center;
    column-gap: .75rem;
}

.home__link {
    width: 40px;
    height: 40px;
    background-color: var(--container-color);
    box-shadow: var(--shadow-small);
    border-radius: .75rem;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--title-color);
    transition: background-color .4s, box-shadow .4s, color .4s;
}

.home__link:hover {
    background-color: var(--first-color);
    box-shadow: 0 4px 8px var(--shadow-first-color);
}

.home__image {
    position: relative;
    width: 320px;
    height: 320px;
    background: var(--gradient-color);
    border-radius: 6rem;
    justify-self: center;
    margin-top: 3rem;
}

.home__img {
    width: 230px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    mask-image: linear-gradient(var(--first-color) 80%, transparent 95%);
    filter: var(--shadow-img-big);
}

.home__phone {
    position: absolute;
    top: 9.5rem;
    left: -1rem;
    background-color: var(--container-color);
    box-shadow: var(--shadow-small);
    padding: .5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    column-gap: .5rem;
    transition: background-color .4;
}

.home__icon {
    width: 36px;
    height: 36px;
    background-color: var(--first-color);
    border-radius: .75rem;
    display: grid;
    place-items: center;
    color: var(--white-color);
    font-size: 1.25rem;
}

.home__number {
    font-size: var(--small-font-size);
    font-style: normal;
    color: var(--title-color);
}

.home__number span {
    display: block;
    font-weight: var(--font-semi-bold);
    margin-top: .25rem;
}

.home__comment {
    position: absolute;
    right: 0;
    bottom: -1.5rem;
    width: 250px;
    background-color: var(--container-color);
    box-shadow: var(--shadow-small);
    border-radius: 1.5rem;
    padding: 1.5rem 2.5rem;
    text-align: center;
    font-size: var(--small-font-size);
    color: var(--title-color);
    transition: background-color .4s;
}

.home__comment::before {
    content: open-quote;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.home__comment::after {
    content: close-quote;
    position: absolute;
    right: 1rem;
    bottom: 0;
}

.home__comment::before,
.home__comment::after {
    font-size: 2rem;
    font-weight: var(--font-semi-bold);
    color: var(--first-color);
}


/*=============== BUTTON ===============*/

.button {
    display: inline-flex;
    background-color: var(--first-color);
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    padding: 1rem 2rem;
    border-radius: 1rem;
    /* display: table-row; */
    box-shadow: 0 8px 16px var(--shadow-first-color);
    transition: background-color .4s, color .4s;
}

.button:hover {
    background-color: var(--first-color-alt);
}


/*=============== SERVICE ===============*/

.care__container {
    padding-top: 2rem;
    row-gap: 2rem;
}

.care__img {
    width: 331px;
    filter: drop-shadow(var(--shadow-img-big));
    justify-self: center;
}

.care__list {
    display: grid;
    row-gap: 1rem;
}

.care__item {
    display: flex;
    column-gap: .5rem;
    align-items: flex-start;
}

.care__item i {
    font-size: 1.5rem;
    color: var(--first-color);
}


/*=============== MENU ===============*/

.menu__container {
    grid-template-columns: repeat(1, 1fr);
}

.menu__macros {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: .75rem;
}

.menu__macros .macro {
    background-color: var(--body-color);
    padding: .3rem .5rem;
    border-radius: .5rem;
    font-size: .7rem;
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
}

.menu__macros .macro strong {
    color: var(--title-color);
}

.menu__details {
    margin-top: .6rem;
    font-size: .7rem;
}

.menu__details h4 {
    font-size: .75rem;
    color: var(--title-color);
    margin-bottom: .2rem;
}

.menu__details p {
    color: var(--text-color);
    line-height: 1.4;
}

.menu__card {
    position: relative;
    display: grid;
    row-gap: .5rem;
    background-color: var(--container-color);
    box-shadow: var(--shadow-small);
    padding: .5rem 1rem 1rem;
    border-radius: 1.5rem;
    transition: background-color .4;
}

.menu__img {
    width: 13rem;
    justify-self: center;
    filter: var(--shadow-img-small);
    transition: transform .4s;
}

.menu__card:hover .menu__img {
    transform: translateY(-.25rem);
}

.menu__name {
    font-size: var(--h3-font-size);
}

.menu__amount {
    font-size: var(--small-font-size);
    margin-block: .25rem .5rem;
}

.menu__price {
    font-size: var(--h3-font-size);
    color: var(--first-color);
}

.menu__button {
    /* position: absolute;
    right: 1rem;
    bottom: 4rem; */
    justify-self: anchor-center;
    width: 32px;
    height: 32px;
    background-color: var(--first-color);
    box-shadow: 0 4px 8px var(--shadow-first-color);
    border-radius: .75rem;
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
}


/*=============== REVIEWS ===============*/

.reviews__container {
    row-gap: 6rem;
}

.reviews__content {
    display: grid;
}

.reviews__swiper {
    margin-inline: initial;
    padding-bottom: 6rem;
}

.reviews__card {
    display: grid;
    row-gap: 1rem;
}

.reviews__profile {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: .5rem;
}

.reviews__photo {
    width: 60px;
    border-radius: 50%;
    display: none;
}

.reviews__data {
    display: grid;
    row-gap: .25rem;
}

.reviews__name,
.reviews__number {
    font-size: var(--h3-font-size);
}

.reviews__rating {
    display: flex;
    align-items: center;
    column-gap: .5rem;
}

.reviews__stars {
    display: flex;
    column-gap: .25rem;
}

.reviews__stars i {
    font-size: 1rem;
    color: var(--first-color);
}

.reviews__comment {
    position: relative;
    width: 280px;
    justify-self: center;
    text-align: center;
}

.reviews__comment::before {
    content: open-quote;
    position: absolute;
    left: -1rem;
    top: -.5rem;
}

.reviews__comment::after {
    content: close-quote;
    position: absolute;
    right: -1rem;
    bottom: -2rem;
}

.reviews__comment::after,
.reviews__comment::before {
    font-size: 2.5rem;
    font-weight: var(--font-semi-bold);
    color: var(--first-color);
}

.reviews__image {
    position: relative;
    width: 320px;
    height: 320px;
    background: var(--gradient-color);
    border-radius: 6rem;
    justify-self: center;
}

.reviews__img {
    width: 270px;
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 0;
    margin: 0 auto;
    mask-image: linear-gradient(var(--first-color) 80%, transparent 95%);
    filter: var(--shadow-img-big);
}


/* Swiper class */

.reviews .swiper-navigation-icon {
    display: none;
}

.reviews :is(.swiper-button-prev,
.swiper-button-next) {
    top: initial;
    bottom: 1.5rem;
    width: 40px;
    height: 40px;
    background-color: var(--container-color);
    box-shadow: var(--shadow-small);
    color: var(--title-color);
    border-radius: .75rem;
    font-size: 1.5rem;
    transition: background-color .4s, box-shadow .4s, color .4s;
}

.reviews :is(.swiper-button-prev,
.swiper-button-next):hover {
    background-color: var(--first-color);
    box-shadow: 0 4px 8px var(--shadow-first-color);
}

.reviews .swiper-button-prev {
    left: calc(50% - 3rem);
}

.reviews .swiper-button-next {
    right: calc(50% - 3rem);
}


/*=============== APP ===============*/

.new__container {
    padding-top: 1.5rem;
    row-gap: 3.5rem;
}

.new__content {
    row-gap: 2rem;
}

.new__card {
    display: flex;
    column-gap: 1rem;
    align-items: center;
}

.new__img {
    width: 150px;
}

.new__title {
    font-size: var(--h2-font-size);
    font-family: var(--body-font);
    color: var(--first-color);
    margin-bottom: .5rem;
}

.new__description {
    font-size: var(--small-font-size);
}

.new__card:nth-child(2) img {
    order: -1;
}

.new__button {
    justify-self: center;
}


/*=============== MAP ===============*/


/* Steps */

.steps {
    display: grid;
    row-gap: 1.5rem;
    margin-top: 2rem;
}

.step {
    background-color: var(--container-color);
    padding: 1.5rem;
    border-radius: 1.5rem;
    opacity: .4;
    transform: scale(.95);
    transition: all .4s ease;
}

.step.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.step__number {
    display: inline-block;
    font-weight: 700;
    color: var(--first-color);
    margin-bottom: .5rem;
}

.step__title {
    font-size: var(--h3-font-size);
    margin-bottom: .25rem;
}

.step__description {
    font-size: var(--small-font-size);
    color: var(--first-color);
}


/* Video */

.app__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
}


/* Responsive */

@media screen and (max-width:768px) {
    .app__container {
        grid-template-columns: 1fr;
    }
    .app__image {
        height: 220px;
    }
}

.app__container {
    background: var(--gradient-color);
    padding: 3rem 1.5rem 0;
    border-radius: 2rem;
    row-gap: 3rem;
    overflow: hidden;
    transition: background-color .4s;
}

.app__data .section__title {
    margin-bottom: .5rem;
}

.app__data {
    text-align: center;
}

.app__description {
    margin-bottom: 2rem;
}

.app__image {
    width: 260px;
    height: 310px;
    justify-self: center;
}

.app__img {
    border-radius: 1.5rem;
    filter: var(--shadow-img-small);
}


/*=============== MEALS SECTION ===============*/

.meals__container {
    padding-top: 2rem;
}

.meal__card {
    background-color: var(--container-color);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-big);
    transition: transform .4s ease, box-shadow .4s ease;
    /* الجديد */
    height: 100%;
    min-height: 440px;
    border: 1px solid #5eba58;
    display: flex;
    flex-direction: column;
    will-change: transform;
    gap: 1rem;
}

.meal__card:hover {
    /* transform: scale(1.1); */
    box-shadow: 0 12px 32px hsla(45, 50%, 8%, .2);
}

.jj {
    display: grid;
}

.meal__image {
    height: 180px;
    /* ارتفاع ثابت */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.meal__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* يمنع كبر الكارت */
    filter: var(--shadow-img-small);
}

.meal__type {
    font-size: var(--small-font-size);
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
}

.meal__title {
    font-size: var(--h3-font-size);
    margin: .5rem 0 1rem;
}

.meal__content {
    flex: 1;
    /* يخلي المحتوى يتمدد ويظبط الطول */
}

.meal__macros {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.macro {
    background-color: var(--body-color);
    border-radius: .75rem;
    padding: .5rem;
    text-align: center;
    box-shadow: var(--shadow-small);
}

.macro span {
    font-size: var(--smaller-font-size);
    color: var(--first-color);
}

.macro strong {
    display: block;
    font-size: var(--small-font-size);
    color: var(--title-color);
}

.meal__allergens h4 {
    font-size: var(--small-font-size);
    margin-bottom: .25rem;
}

.meal__allergens p {
    font-size: var(--smaller-font-size);
    color: var(--text-color);
}


/* Swiper */

.meals__swiper {
    padding-bottom: 4rem;
}

.swiper-slide {
    overflow: visible;
}

.meals__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.meals__controls .swiper-button-next,
.meals__controls .swiper-button-prev {
    position: static;
    width: 40px;
    height: 40px;
    border-radius: .75rem;
    background-color: var(--container-color);
    color: var(--title-color);
    box-shadow: var(--shadow-small);
}

.meals__controls .swiper-button-next::after,
.meals__controls .swiper-button-prev::after {
    font-size: 1rem;
    font-weight: bold;
}

.meals .swiper-pagination-bullet-active {
    background-color: var(--first-color);
}


/* Responsive */

@media screen and (max-width: 768px) {
    .meal__macros {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ============== Contact ============== */

.contact__container {
    row-gap: 4rem;
}

.contact__form {
    position: relative;
    row-gap: 1rem;
}

.contact__input {
    width: 100%;
    background: var(--body-color);
    color: var(--title-color);
    border: 2px solid var(--first-color);
    outline: none;
    padding: 1.25rem 1rem;
    border-radius: .5rem;
    font-weight: var(--font-medium);
}

.contact__input::placeholder {
    color: var(--gradient-color);
    transition: color .4s;
}

.contact__input:focus::placeholder {
    color: var(--first-color);
}

.contact__input:autofill {
    transition: background-color 6000s, color 6000s;
}

.contact__area {
    height: 10rem;
    resize: none;
}

.contact__form .button {
    cursor: pointer;
}

.contact {
    position: relative;
}

.contact__message {
    position: absolute;
    bottom: -2rem;
    font-size: var(--small-font-size);
}

.contact__data {
    row-gap: 1rem;
}

.contact__address {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    font-style: initial;
}

.contact__address i {
    font-size: 1.5rem;
    color: var(--first-color);
}

.contact__social {
    display: flex;
    column-gap: 1rem;
}

.contact__link {
    color: var(--title-color);
    font-size: 1.5rem;
    transition: transform .4s, color .4s;
}

.contact__link:hover {
    transform: translateY(-.25rem);
    color: var(--first-color);
}


/*=============== FOOTER ===============*/

.footer {
    padding-block: 4rem 2rem;
    background-color: var(--first-color-light);
    transition: background-color .4s;
}

.footer__container {
    row-gap: 2rem;
}

.footer__logo {
    font-size: var(--h1-font-size);
    font-family: var(--body-font);
    color: var(--title-color);
    justify-self: center;
}

.footer__content {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
}

.footer__link {
    color: var(--text-color);
}

.footer__social {
    grid-column: 1 / 3;
    display: flex;
    justify-content: center;
    column-gap: 1rem;
}

.footer__social a {
    width: 32px;
    height: 32px;
    background-color: var(--first-color);
    color: var(--title-color);
    font-size: 1.5rem;
    border-radius: .5rem;
    display: grid;
    place-items: center;
    transition: transform .4s;
}

.footer__social a:hover {
    transform: translateY(-.25rem);
}

.footer__copy {
    display: block;
    text-align-last: center;
    font-size: var(--small-font-size);
    margin-top: 3.5rem;
}


/*=============== SCROLL BAR ===============*/

::-webkit-scrollbar {
    width: .6rem;
    border-radius: 1rem;
    background-color: hsl(45, 32%, 70%);
}

::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background-color: hsl(45, 32%, 60%);
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(45, 32%, 50%);
}


/*=============== SCROLL UP ===============*/

.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -50%;
    background-color: var(--body-color);
    box-shadow: var(--shadow-big);
    color: var(--title-color);
    display: inline-flex;
    padding: 6px;
    font-size: 1.25rem;
    border-radius: .75rem;
    z-index: var(--z-tooltip);
    transition: bottom .4s, transform .4s, background-color .4s, color .4s;
}

.scrollupwhatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    background-color: var(--body-color);
    box-shadow: var(--shadow-big);
    color: var(--title-color);
    display: inline-flex;
    padding: 6px;
    font-size: 1.25rem;
    border-radius: .75rem;
    z-index: var(--z-tooltip);
    transition: bottom .4s, transform .4s, background-color .4s, color .4s;
}

.scrollup:hover {
    transform: translateY(-.5rem);
}


/* Show Scroll Up */

.show-scroll {
    bottom: 3rem;
}


/*=============== BREAKPOINTS ===============*/


/* For small devices */

@media screen and (max-width:360px) {
    .container {
        margin-inline: 1rem;
    }
    .home__image,
    .reviews__image,
    .app__image {
        width: 100%;
    }
    .reviews__container {
        row-gap: 4rem;
    }
    .reviews__img {
        left: 1rem;
    }
    .reviews__comment {
        width: 85%;
    }
    .new__content {
        grid-template-columns: 200px;
        justify-content: center;
    }
    .new__card {
        flex-direction: column;
        row-gap: 1rem;
        text-align: center;
    }
    .new__card:nth-child(2) img {
        order: initial;
    }
    .menu__container {
        grid-template-columns: 180px;
        justify-content: center;
    }
    .footer__social {
        grid-column: 1;
    }
    .footer__content {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

@media screen and (min-width:540px) {
    .nav__menu {
        width: 50%;
    }
    .care__container {
        grid-template-columns: 400px;
        justify-content: center;
    }
    .home__container,
    .reviews__container {
        grid-template-columns: 380px;
        justify-content: center;
    }
    .menu__container {
        grid-template-columns: repeat(2, 237px);
        justify-content: center;
    }
    .new__content {
        grid-template-columns: 350px;
        justify-content: center;
    }
    .app__container {
        width: 380px;
        margin-inline: auto;
    }
    .contact__container {
        grid-template-columns: 400px;
        justify-content: center;
    }
}


/* For medium devices */

@media screen and (min-width:768px) {
    .menu__container {
        grid-template-columns: repeat(3, 236px);
    }
    .contact__container {
        grid-template-columns: repeat(2, 350px);
    }
    .contact__content {
        align-content: flex-start;
    }
    .contact__form {
        order: 1;
    }
    .footer__social {
        grid-column: initial;
    }
    .footer__content {
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
    }
    .footer__link:nth-child(1) {
        justify-self: start;
    }
    .footer__link:nth-child(2) {
        order: 2;
        justify-self: end;
    }
}


/* For large devices */

@media screen and (min-width:1150px) {
    .container {
        margin-inline: auto;
    }
    .nav {
        height: calc(var(--header-height) + 2rem);
    }
    .nav__toggle {
        display: none;
    }
    .nav__list {
        flex-direction: row;
        column-gap: 4rem;
    }
    .nav__theme {
        position: initial;
        font-size: 1.5rem;
    }
    .nav__menu {
        width: initial;
        display: flex;
        column-gap: 4rem;
        align-items: center;
    }
    .section {
        padding-block: 7rem 2rem;
    }
    .home__container {
        grid-template-columns: 500px 520px;
        align-items: center;
        column-gap: 5rem;
        padding-block: 4rem;
    }
    .home__data {
        text-align: initial;
        row-gap: 5rem;
    }
    .home__title {
        margin-bottom: 1rem;
    }
    .home__description {
        font-size: var(--h3-font-size);
        margin-bottom: 3rem;
    }
    .home__social {
        justify-content: initial;
    }
    .home__image {
        width: 520px;
        height: 520px;
        border-radius: 11rem;
    }
    .home__img {
        width: 380px;
    }
    .home__phone {
        top: 15rem;
        left: -4rem;
        padding: .75rem;
        border-radius: 1.25rem;
    }
    .home__icon {
        width: 48px;
        height: 48px;
        border-radius: 1rem;
        font-size: 2rem;
    }
    .home__number {
        font-size: var(--normal-font-size);
    }
    .home__comment {
        right: 1.5rem;
        bottom: -3rem;
        width: 320px;
        padding: 2rem 3rem;
        border-radius: 2rem;
        font-size: var(--normal-font-size);
    }
    .home__comment::after,
    .home__comment::before {
        font-size: 3rem;
    }
    .reviews__container {
        grid-template-columns: 450px 560px;
        column-gap: 5rem;
        padding-block: 7rem 3rem;
    }
    .reviews__image {
        width: 450px;
        height: 450px;
        border-radius: 9rem;
        order: -1;
    }
    .reviews__img {
        width: 380px;
    }
    .reviews__content {
        display: initial;
    }
    .reviews__content :is(.section__title,
    .section__subtitle) {
        text-align: initial;
    }
    .reviews__swiper {
        padding-bottom: 8rem;
    }
    .reviews__card {
        row-gap: 3rem;
    }
    .reviews__profile {
        justify-content: initial;
        column-gap: 1rem;
    }
    .reviews__photo {
        width: 80px;
    }
    .reviews__data {
        row-gap: .5rem;
    }
    .reviews__comment {
        width: 450px;
        text-align: initial;
    }
    .reviews__comment::after,
    .reviews__comment::before {
        font-size: 5rem;
    }
    .reviews__comment::before {
        top: -1.5rem;
        left: -3.5rem;
    }
    .reviews__comment::after {
        right: -3.5rem;
        bottom: -3rem;
    }
    .reviews .swiper-button-prev {
        left: .5rem;
    }
    .reviews .swiper-button-next {
        left: 4rem;
    }
    .new__container {
        padding-top: 4rem;
    }
    .new__content {
        grid-template-columns: repeat(3, 270px);
        column-gap: 5.5rem;
    }
    .new__card {
        flex-direction: column;
        row-gap: 2rem;
        text-align: center;
    }
    .new__title {
        font-size: var(--h1-font-size);
    }
    .new__description {
        font-size: var(--normal-font-size);
        padding-inline: 1rem;
    }
    .new__img {
        width: 250px;
    }
    .app {
        padding-bottom: 4rem;
    }
    .app__container {
        width: initial;
        grid-template-columns: 420px 360px;
        justify-content: center;
        column-gap: 8rem;
        padding-block: 6rem;
        border-radius: 4rem;
    }
    .app__data,
    .app__data :is(.section__title,
    .section__subtitle) {
        text-align: initial;
    }
    .app__description {
        margin-block: .5rem 3rem;
        padding-right: 2rem;
    }
    .app__image {
        width: 360px;
        height: 330px;
    }
    .app__img {
        border-radius: 2rem;
    }
    .care__container {
        grid-template-columns: 480px 385px;
        align-items: center;
        column-gap: 8rem;
        padding-top: 3rem;
    }
    .care__img {
        width: 480px;
    }
    .care__list {
        row-gap: 1.5rem;
    }
    .menu__container {
        grid-template-columns: repeat(4, 260px);
        row-gap: 2rem;
    }
    .menu__card {
        padding: 1rem 1.5rem 2rem;
        border-radius: 2rem;
    }
    .menu__img {
        width: 225px;
    }
    .menu__name,
    .menu__price {
        font-size: var(--h2-font-size);
    }
    .menu__amount {
        font-size: var(--normal-font-size);
        margin-block: .5rem 1rem;
    }
    .menu__button {
        right: 1.5rem;
        bottom: 2rem;
        width: 48px;
        height: 48px;
        border-radius: 1rem;
        font-size: 2rem;
    }
    .contact {
        padding-block: 8rem;
    }
    .contact__container {
        grid-template-columns: 310px 450px;
        column-gap: 10rem;
    }
    .contact__content {
        row-gap: 2rem;
    }
    .contact__data {
        row-gap: 1.5rem;
    }
    .contact__form .button {
        justify-self: center;
        margin-top: 1rem;
    }
    .contact__area {
        height: 14rem;
    }
    .footer {
        padding-block: 5rem 3rem;
    }
    .footer__container {
        row-gap: 3.5rem;
    }
}


/* For 2K resolutions (2048 x 1152, 2048 x 1536) */

@media screen and (max-width: 540px) {
    .menu__macros {
        grid-template-columns: repeat(2, 1fr);
        font-size: .65rem;
    }
    .menu__macros .macro {
        flex-direction: column;
        text-align: center;
        padding: .25rem;
    }
}


/* =================== Testo ============ */


/* ===== Navbar Extras ===== */

.nav__extras {
    display: flex;
    align-items: center;
    gap: 1rem;
}


/* Mode Button */

.mode-switch {
    background-color: var(--first-color);
    color: var(--title-color);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .3s, background-color .3s;
}

.mode-switch:hover {
    transform: scale(1.1);
    background-color: var(--first-color-alt);
}


/* Cart */

.cart {
    position: relative;
    display: flex;
    align-items: center;
    gap: .25rem;
    font-size: 1rem;
    color: var(--title-color);
    font-weight: var(--font-bold);
}

.cart span {
    background-color: var(--first-color);
    color: var(--title-color);
    font-size: .75rem;
    padding: 2px 6px;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    right: -10px;
    display: inline-block;
    text-align: center;
    line-height: 1;
    min-width: 18px;
}


/* Dark Theme adjustments */

.dark-theme .mode-switch {
    background-color: var(--first-color-light);
    color: var(--dark-color);
}

.dark-theme .cart span {
    background-color: var(--first-color-alt);
    color: var(--dark-color);
}


/* ===== Responsive ===== */

@media screen and (max-width: 540px) {
    .nav__extras {
        gap: .5rem;
    }
    .mode-switch {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    .cart {
        font-size: .9rem;
    }
    .cart span {
        min-width: 16px;
        top: -8px;
        right: -8px;
    }
}

@media screen and (max-width: 360px) {
    .nav__extras {
        gap: .25rem;
    }
    .mode-switch {
        width: 1.8rem;
        height: 1.8rem;
        font-size: .9rem;
    }
    .cart span {
        min-width: 14px;
        top: -6px;
        right: -6px;
        font-size: .65rem;
    }
}


/* ================= MEAL MODAL ================= */

.meal-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    /* مخفي افتراضيًا */
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}


/* لما المودال يبقى مفتوح */

.meal-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--container-color);
    width: 90%;
    max-width: 420px;
    padding: 1.5rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-big);
    position: relative;
    animation: modalScale .3s ease;
}

@keyframes modalScale {
    from {
        transform: scale(.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content img {
    width: 160px;
    margin: 0 auto 1rem;
    filter: var(--shadow-img-small);
}

.modal-content h3 {
    font-size: var(--h2-font-size);
    margin-bottom: .5rem;
}

.modal-content p {
    font-size: var(--small-font-size);
    color: var(--text-color);
    margin-bottom: .75rem;
}

.modal-content label {
    display: block;
    margin-bottom: .25rem;
    font-size: var(--small-font-size);
}

.modal-content input {
    width: 80px;
    padding: .4rem;
    border-radius: .5rem;
    text-align: center;
    margin-bottom: 1rem;
    background-color: var(--body-color);
    color: var(--title-color);
}

.modal-content button {
    width: 100%;
    padding: .75rem;
    border-radius: 1rem;
    background-color: var(--first-color);
    color: var(--title-color);
    font-weight: var(--font-bold);
    cursor: pointer;
    transition: background-color .3s;
}

.modal-content button:hover {
    background-color: var(--first-color-alt);
}


/* زرار الإغلاق */

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--title-color);
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    display: none;
    z-index: 999;
}

.side-cart {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: #111;
    color: #fff;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: .3s ease;
}

.side-cart.show {
    right: 0;
}

.cart-header,
.cart-footer {
    padding: 15px;
    border-bottom: 1px solid #333;
}

.cart-footer {
    display: flex;
    align-content: stretch;
    justify-content: space-evenly;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.cart-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.cart-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-actions button {
    padding: 4px 8px;
    background: #222;
    color: #fff;
    border: none;
    cursor: pointer;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: #5eba58;
    border: none;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}


/* ===== MOBILE ===== */

@media (max-width: 480px) {
    .side-cart {
        width: 100%;
        right: -100%;
    }
    .cart-item img {
        width: 60px;
        height: 60px;
    }
}


/* ========== Checkout Section ========== */

.checkout {
    padding: 5rem 0;
}


/* Buttons */

.button-xfix {
    background: var(--first-color);
    border-radius: 0;
    padding: .5rem;
}


/* ========== Layout ========== */


/* ================= Checkout Modern Style ================= */

.checkout-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 1rem;
}

.checkout-form,
.order-summary {
    background: var(--container-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-big);
    flex: 1 1 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.checkout-form:hover,
.order-summary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


/* Titles */

.checkout-title {
    font-size: 2rem;
    /* مظبوط لكل الشاشات */
    margin-bottom: 1.5rem;
    color: var(--first-color);
    text-align: center;
}


/* Inputs */

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    margin-bottom: 1rem;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    background: var(--input-background);
    color: var(--title-color);
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    border-color: var(--first-color);
    box-shadow: 0 0 8px var(--first-color-alt);
}


/* Payment options */

.payment-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.payment-option {
    flex: 1;
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid #ccc;
    cursor: pointer;
    font-weight: var(--font-medium);
    text-align: center;
    transition: all 0.3s ease;
}

.payment-option.selected {
    border-color: var(--first-color);
    background: var(--first-color-light);
}

.payment-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* Order Summary */

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.order-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.order-item:hover {
    transform: scale(1.02);
}

.order-item:hover img {
    transform: scale(1.1);
}

.order-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.summary-total {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    font-weight: var(--font-semibold);
    font-size: 1.2rem;
    text-align: right;
}


/* Buttons */

.button {
    /* width: 100%; */
    padding: 14px;
    border-radius: 12px;
    background: var(--first-color);
    color: #fff;
    font-weight: var(--font-bold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.button:hover {
    background: var(--first-color-alt);
    transform: scale(1.03);
}


/* Error */

.error-message {
    color: red;
    margin-bottom: 1rem;
    text-align: center;
}

.cardtext,
.cashtext {
    color: var(--title-color);
}

.paymentmethod {
    margin-bottom: 1rem;
}


/* ================= Responsive ================= */


/* Medium screens */

@media (max-width: 900px) {
    .checkout-grid {
        flex-direction: column;
    }
    .checkout-form,
    .order-summary {
        flex: 1 1 100%;
    }
}


/* Mobile screens */

@media (max-width: 500px) {
    .checkout-title {
        font-size: 1.5rem;
    }
    .checkout-form input,
    .checkout-form textarea,
    .button {
        font-size: 1rem;
        padding: 12px;
    }
    /* Order items vertical layout */
    .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .order-item img {
        width: 100%;
        max-width: 120px;
        height: auto;
        margin-bottom: 0.5rem;
    }
    .order-item-info {
        font-size: 0.95rem;
    }
}

.loader {
    position: fixed;
    inset: 0;
    background: var(--first-color-light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

.apple {
    position: relative;
    width: 120px;
    animation: run 2s ease-in-out infinite alternate;
}

.apple img {
    width: 100%;
    display: block;
}


/* Arms for lifting animation */

.arm {
    position: absolute;
    width: 20px;
    height: 40px;
    background: var(--dark-color);
    top: 50px;
    border-radius: 10px;
}

.arm.left {
    left: -20px;
    transform-origin: top center;
}

.arm.right {
    right: -20px;
    transform-origin: top center;
}


/* Sweat drop */

.sweat {
    position: absolute;
    top: -10px;
    right: 30px;
    width: 10px;
    height: 10px;
    background: var(--first-color);
    border-radius: 50%;
    opacity: 0;
}


/* Animations */

@keyframes run {
    0% {
        transform: translateX(-20px);
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes lift {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-60deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes sweatDrop {
    0% {
        opacity: 0;
        top: -10px;
    }
    50% {
        opacity: 1;
        top: 20px;
    }
    100% {
        opacity: 0;
        top: -10px;
    }
}


/* .menu1 {
    background-color: var(--first-color);
} */

.menu1 .section__title {
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.menu__container1 {
    position: relative;
    padding-bottom: 3rem;
}

.menu__text-1,
.menu__text-2 {
    position: absolute;
    font-size: 10rem;
    font-weight: var(--font-medium);
    color: var(--first-color-alt);
}

.menu__text-1 {
    top: -4rem;
    left: 0;
}

.menu__text-2 {
    bottom: 4rem;
    right: 0;
}

.menu__tabs1,
.menu__buttons1 {
    position: relative;
    z-index: 10;
}

.menu__button1 {
    display: flex;
    align-items: center;
    column-gap: .5rem;
    padding: .25rem .5rem;
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    background-color: hsl(123.75deg 64.65% 61.18% / 68%);
    color: var(--white-color);
    border: 2px solid var(--white-color);
    border-radius: 4rem;
    cursor: pointer;
    transition: background-color .4s, color .4s;
}

.menu__button1 img {
    width: 30px;
}

.menu__button1:hover {
    background-color: var(--white-color);
    color: var(--first-color);
}

.menu__cards1 {
    display: grid;
    grid-template-columns: 238px;
    justify-content: center;
    gap: 1.5rem;
}

.menu__card1 {
    background-color: hsla(358, 54%, 98%, .2);
    padding: 1.5rem;
    border-radius: 1rem;
    transition: background-color .4s;
}

.menu__blob1 {
    width: 190px;
    height: 190px;
    background-color: hsla(358, 54%, 98%, .2);
    border-radius: 1rem;
    display: grid;
    place-items: center;
    transition: background-color .4s;
}

.menu__img1 {
    width: 120px;
}

.menu__name1,
.menu__price1,
.menu__stock1 {
    color: var(--white-color);
    transition: color .4s;
}

.menu__name1 {
    font-size: var(--h2-font-size);
    text-align: center;
    margin-block: 1.25rem .75rem;
}

.menu__info1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu__price1 {
    font-size: var(--h2-font-size);
}

.menu__stock1 {
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
}

.menu__card1:hover {
    background-color: var(--white-color);
}

.menu__card1:hover .menu__blob1 {
    background-color: gray;
}

.menu__card1:hover .menu__name1 {
    color: var(--title-color);
}

.menu__card1:hover .menu__price1 {
    color: var(--first-color);
}

.menu__card1:hover .menu__stock1 {
    color: var(--text-color);
}


/* swiper menu */

.menu__tabs1 {
    overflow: initial;
}

.menu__tabs1 .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 3rem;
    transition: height .3s ease;
}

.menu__tabs1 .swiper-slide {
    width: initial;
    height: initial;
}

.menu__tabs1 .swiper-slide-thumb-active {
    background-color: var(--white-color);
    color: var(--first-color);
}

.menu__content1 {
    height: auto;
}

@media screen and (width>=1150px) {
    .menu1 .section__title {
        margin-bottom: 2rem;
    }
    .menu__container1 {
        padding-bottom: 6rem;
    }
    .menu__text-1 {
        top: -8rem;
        font-size: 12rem;
    }
    .menu__text-2 {
        bottom: 0;
        font-size: 12rem;
    }
    .menu__tabs1 .swiper-wrapper {
        column-gap: 1.5rem;
        margin-bottom: 6rem;
    }
    .menu__button1 {
        padding: .5rem 1rem;
        font-size: var(--normal-font-size);
    }
    .menu__cards1 {
        grid-template-columns: repeat(3, 304px);
        column-gap: 4rem;
    }
    .menu__card1 {
        padding: 2rem 2rem 2.5rem;
    }
    .menu__blob1 {
        width: 240px;
        height: 240px;
    }
    .menu__img1 {
        width: 150px;
    }
    .menu__name1 {
        font-size: 1.75rem;
    }
}


/* Submenu Style */

.submenu {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    align-content: stretch;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}


/* Active State */

.submenu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
    flex-direction: row;
}


/* Buttons */

.submenu__btn {
    padding: 0.6rem 1.5rem;
    background-color: var(--first-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: var(--small-font-size);
    transition: 0.3s;
}

.submenu__btn:hover {
    background-color: var(--first-color-alt);
}


/* Responsive */

@media screen and (max-width: 768px) {
    .submenu {
        flex-direction: column;
    }
}


/* استايل اسم Mohamed Alramaly في الفوتر */

.footer__copy .moalramly {
    color: var(--first-color-alt);
    /* لون الاسم */
    font-weight: bold;
    /* خط عريض */
    text-decoration: none;
    /* إزالة الخط السفلي الافتراضي */
    transition: color 0.3s ease, transform 0.3s ease;
    /* تأثير سلس عند المرور */
}

.footer__copy .moalramly:hover {
    color: var(--title-color);
    /* لون مختلف عند المرور */
    transform: scale(1.1);
    /* يكبر شوية عند المرور */
    cursor: pointer;
    /* المؤشر يتحول ليد */
}