* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "sans-serif";
}

:root {
    /*colors*/
    --white-color: #fff;
    --dark-color: #252525;
    --primary-color: #3b141c;
    --secondary-color: #f3961c;
    --light-pink-color: #faf4f5;
    --medium-gray-color: #ccc;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

.section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 100%;
}

.section-title {
    text-align: center;
    padding: 60px 0 40px;
    text-transform: uppercase;
    font-size: 2rem;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: 100px;
    background: var(--secondary-color);
}
.header {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(2, 1, 0, 0.8), rgba(2, 1, 0, 0.8));
}
.slider {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Place the image behind other content */
}
#slideImg {
    width: 100%;
    height: 100vh;
    animation: zoom 5s linear infinite;
}
@keyframes zoom {
    0% {
        transform: scale(1.3);
    }
    15% {
        transform: scale(1);
    }
    85% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.3);
    }
}
.slider img {
    width: 100%;
    height: 100vh;
    z-index: 1; 
}
nav {
    display: flex;
    padding: 0% 5%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 120px;
    height: 120px;
}
.nav-links {
    flex: 1;
    text-align: right;
}
.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: var(--white-color);
    text-decoration: none;
    font-size: 22px;
}
.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f3961c;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after {
    width: 100%;
}

nav .fa-solid{
    display: none;
}
.text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 55px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 20px;
    color: #f3961c;
}
.iraq {
    height: 20px;
    width: 20px;
}

@media screen and (max-width: 700px) {
    .header {
        height: 450px;
    }
    nav img{
        width: 90px;
        height: 90px;
    }
    #slideImg{
        height: 450px;
    }
    .nav-links ul li {
        display: block;
    }
    .nav-links {
        position: fixed;
        background: var(--white-color);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2; 
        transition: 1s;
    }
    nav .fa-solid{
        display: block;
        color: #f3961c;
        margin: 10px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 20px 0 10px 0;
    }
    .nav-links ul li a {
        color: var(--dark-color);
    }
    .text-box h1 {
        font-size: 20px;
    }
    .text-box p{
        font-size: 12px;
    }
    .iraq {
        height: 30px;
        width: 30px;
    }
}
@media screen and (min-width: 701px) and (max-width: 1200px) {
    .header {
        height: 650px;
    }
    nav img{
        width: 110px;
        height: 110px;
    }
    #slideImg{
        height: 650px;
    }
    .nav-links ul li {
        display: block;
    }
    .nav-links {
        position: fixed;
        background: var(--white-color);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2; 
        transition: 1s;
    }
    nav .fa-solid{
        display: block;
        font-size: 25px;
        color: #f3961c;
        margin: 10px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 20px 0 10px 0;
    }
    .nav-links ul li{
        margin-bottom: 20px;
    }
    .nav-links ul li a {
        color: var(--dark-color);
    }
    .text-box h1 {
        font-size: 35px;
    }
    .text-box p{
        font-size: 18px;
    }
    .iraq {
        height: 30px;
        width: 30px;
    }
}

/***************about*****************/
.about-section {
    padding: 120px 0;
    background: var(--light-pink-color);
}

.about-section .section-content {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.about-section .about-image-wrapper .about-image {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 50%;
    margin-left: 30px;
}

.about-section .about-details .section-title {
    padding: 0;
}

.about-section .about-details {
    max-width: 50%;
}

.about-section .about-details .text {
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: center;
    font-size: 1.12rem;
}

.about-section .social-link-list {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.about-section .social-link-list .social-link {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: 0.2s ease;
}

.about-section .social-link-list .social-link:hover {
    color: var(--secondary-color);
}
/****************menu*********************/
.menu-section {
    color: black;
    background:#84dca3;
    padding: 50px 0 100px;
}

.menu-section .menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    align-items: center;
    justify-content: space-between;
}

.menu-section .menu-list .menu-item {
    gap: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% / 3 - 110px);
}

.menu-section .menu-list .menu-item .menu-image {
    max-width: 83%;
    aspect-ratio: 1;
    object-fit: contain;
}

.menu-section .menu-list .menu-item .name {
    font-size: 1.5rem;
    font-weight: bold;
}

.menu-section .menu-list .menu-item .text {
    font-size: 1.12rem;
}
/**************testi*******************/
.testimonials-section {
    padding: 50px 0 100px;
    background: var(--light-pink-color);
}

.testimonials-section {
    overflow: hidden;
}

.testimonials-section .testimonial {
    display: flex;
    padding: 35px;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.testimonials-section .testimonial .user-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: 50%;
}

.testimonials-section .testimonial .name {
    margin-bottom: 16px;
    font-size: 1.12rem;
}

.testimonials-section .testimonial .feedback {
    line-height: 25px;
    margin-bottom: 25px;
}

.testimonials-section .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: 1;
    background: var(--secondary-color);
}

.testimonials-section .swiper-slide-button {
    margin-top: -50px;
    color: var(--secondary-color);
    transition: 0.3 ease;
}

.testimonials-section .swiper-slide-button:hover {
    color: #166a3ff7;
}
/***************************/

.title-text {
    text-align: center;
    padding-bottom: 70px;
}

.title-text p {
    margin: auto;
    font-size: 30px;
    color: var(--secondary-color);
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding-bottom: 20px;
}

.title-text h1 {
    font-size: 50px;
    color: #fff;
}

#footer {
    height: 85vh;
    width: 100%;
    padding: 100px 0 20px;
    background: #166a3ff7;
    position: relative;
}

.fa-solid {
    font-size: 20px;
    color: #f3961c;
    margin: 10px;
  }

.footer-row {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left,
.footer-right {
    flex-basis: 45%;
    padding: 10px;
    margin-bottom: 20px;
}

.footer-right {
    text-align: right;
    color: whitesmoke;
}

.footer-right h1 {
    font-size: 35px;
}

.footer-right p {
    font-size: 16px;
}

.footer-left {
    text-align: left;
    color: whitesmoke;
}

.footer-left h1 {
    font-size: 30px;
}

.footer-left p {
    font-size: 16px;
}

.footer-row h1 {
    margin: 10px 0;
}

.footer-row p {
    line-height: 35px;
}

.footer-left .fa,
.footer-right .fa {
    font-size: 20px;
    color: #f3961c;
    margin: 10px;
}

.footer-img {
    max-width: 350px;
    opacity: 0.7;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-top: 40px;
}
@media screen and (max-width: 770px) {
    #footer{
        height: auto;
    }
    .footer-left,.footer-right {
        flex-basis: 100%;
        font-size: 14px;
    }
    .footer-img {
        opacity: 0.2;
    }
}
@media screen and (min-width: 770px) and (max-width: 1200px) {
    #footer {
        height: auto;
    }
    .footer-left p{
        width: 320px;
    }
    .footer-img {
        opacity: 0.2;
    }
} 

@media screen and (max-width: 1024px) {
    .hero-details {
        margin-top: 50px;
        text-align: center;
    }

    .hero-details .title {
        max-width: 100%;
    }

    .hero-section .hero-image-wrapper {
        width: 350px;
        margin-right: 30px;
        margin-top: 0px;
    }
    
    .hero-section .hero-image-wrapper img {
        height: 350px;
        width: 350px;
    }

    .menu-section .menu-list {
        gap: 60px;
    }

    .menu-section .menu-list .menu-item {
        width: calc(100% / 3 - 60px);
    }
}

@media screen and (max-width: 900px) {

    /* body.show-mobile-menu header::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background: rgba(0, 0, 0, 0.2);
    } */


    .hero-section .section-content {
        flex-direction: column-reverse;
        /* gap: 50px; */
        text-align: center;
        padding: 30px 20px 20px;
        justify-content: center;
    }

    .hero-details {
        margin-top: 50px;
        text-align: center;
    }

    .hero-details .title {
        max-width: 100%;
    }

    .hero-section .hero-details :is(.subtitle,
    .description), .about-section .about-details {
        max-width: 100%;
    }

    .hero-details {
        margin: 0;
    }

    .hero-section .hero-details .buttons {
        justify-content: center;
    }

    .hero-section .hero-image-wrapper {
        max-width: 270px;
        margin-right: 0;
    }

    .hero-section {
        height: 100vh;
    }

    .hero-section .hero-details .title {
        font-size: 20px;
        font-weight: bold;
    }

    .hero-section .hero-details .subtitle {
        margin-top: 8px;
        margin-left: 15%;
        max-width: 70%;
        font-size: 17px;
        font-weight: 500;
    }

    .hero-section .hero-image-wrapper {
        width: 300px;
        margin-right: 30px;
        margin-top: 0px;
    }
    
    .hero-section .hero-image-wrapper img {
        height: 350px;
        width: 350px;
    }

    .about-section .section-content {
        gap: 70px;
        flex-direction: column;
    }

    .about-section .about-image-wrapper .about-image {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;
    }

    .menu-section .menu-list {
        gap: 30px;
    }

    .menu-section .menu-list .menu-item {
        width: calc(100% / 2 - 30px);
    }

    .menu-section .menu-list .menu-item .menu-image {
        max-width: 200px;
    }
}

@media screen and (max-width: 640px) {
    .hero-section {
        height: 100vh;
    }

    .hero-section .hero-details {
        width: 100%;
    }

    .hero-section .hero-details .title {
        font-size: 20px;
        font-weight: bold;
    }

    .hero-section .hero-details .subtitle {
        margin-top: 8px;
        margin-left: 15%;
        max-width: 70%;
        font-size: 17px;
        font-weight: 500;
    }

    .hero-section .hero-image-wrapper {
        width: 300px;
        margin-right: 30px;
        margin-top: 0px;
    }
    
    .hero-section .hero-image-wrapper img {
        height: 300px;
        width: 300px;
    }

    .menu-section .menu-list {
        gap: 60px;
    }

    .menu-section .menu-list .menu-item {
        width: 100%;
    }

    .testimonials-section .slider-wrapper {
        margin: 0 0 30px;
    }

    .testimonials-section .swiper-slide-button {
        
    }
}

