:root {
    --body-color: #fff;
    --first-color: #62AB57;
    --second-color: #F8542A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: 0;
    font-family: "Raleway" sans-serif;
}

body {
    background-color: #fff;
    color: black;
    background: url();
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}


a {
    text-decoration: none;
}

p {
    font-size: 16px;
    color: gray;
}


/* navigation */

.black-bg {
    width: 100%;
    height: 50px;
    background-color: #000;
}

header {
    width: 100%;
    height: 190px;
    border-bottom: 1px solid gainsboro;
}




.flex-navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 10%;
    width: 100%;
    height: 100px;
    border-bottom: 1px solid gainsboro;
}

.logo-nane {
    font-size: 25px;
    font-weight: bold;
}

.location-name {
    display: flex;
    gap: 10px;
    margin-bottom: -15px;
}
.location-name img {
    margin-top: -14px;
}


.search-icon input {
    width: 300px;
    height: 40px;
    padding: 10px 20px;
    outline: none;
    border: 1px solid gainsboro;
    color: gray;
    background-color: rgb(240, 238, 238);
    border-radius: 5px;
    font-size: 14px;

}

.search-icon img {
    margin: 0 0 0 -30px;
    width: 20px;
}

.header-icon {
    width: 15%;
    margin-bottom: -15px;
}

.header-icon i {
    float: left;
    padding: 15px 20px 0 0;
}

.header-icon p {
    font-size: 13px;
    padding: 10px 0;
}

.header-icon p span {
    color: var(--first-color);
    font-weight: bold;
}

.profile {
    width: 15%;
}
.profile img {
    float: left;
    margin-right: 2px;
}

.profile p {
    padding-top: 10px;
    text-align: center;
    color: black;
    font-weight: bold;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    
}

nav ul {
    list-style:  none;
    padding: 20px 0;
}

nav ul li {
    display: inline-block;
    padding: 0px 30px;
}

nav ul li a {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #000; 
    transition: .5s;
}
nav ul li a:hover {
    color: var(--first-color);
}

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


.hero-container {
    width: 100%;
    height: 70vh;
    background: url(../img/bg-img.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    text-align: left;
    padding: 10% 10%;
}

.hero-text h1{
    font-size: 60px;
    font-weight: bolder;
    color: white;
}
.hero-text p {
    margin: 20px 0 30px;
}

.hero-text a {
    text-decoration: none;
    color: #fff;
    padding: 10px 40px 10px 20px;
    border-radius: 25px;
    background-color: var(--first-color);
}

/* fatest */

.contents {
    width: 100%;
    height: auto;
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
    padding: 3% 10%;
    background-color: #000;
}

.delivery {
    width: 20%;
}

.delivery img{
    float: left;
    width: 20%;
    padding: 5px 5px 0;
}

/* text header */

.text-header {
    text-align: center;
    padding: 5% 0;
    position: relative;
}

.text-header h2 {
font-size: 40px;
font-weight: bold;
}

.text-header p {
    position: relative;
    padding: 1px 1px 20px 1px;
    text-align: center;
}

.text-header p::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--first-color);

}

.chicken {
position: absolute;
top: -10%;
left: -20%;
animation: rotate 5s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate();
    }
}

.chicken2 {
position: absolute;
top: -10%;
right: -100%;
}
.chicken2   img {
    width: 20%;
}

/* shop */

.shop-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 0 15%;
}

.shop-grid-content {
    text-align: center;
    font-size: 25px;
}

.shop-grid-content img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    object-fit: contain;
    object-position: center;
}

.shop-bg-flex {
    display: flex;
    flex-direction: row;
    padding: 100px 15%;
    gap: 50px;
    justify-content: center;
    align-items: center;
}



.shop-image img {
    max-width: 500px;
    max-height: 450px;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
}

.shop-image-text {
    top: 70px;
    left: 20px
}



.shop-image-text2 p {
    font-size: 18px;
    color: #000;
}

.shop-image-text h3 {
    color: var(--second-color);
    font-size: 30px;
    font-weight: 700;
}

.shop-image-text2 a {
    font-size: 14px;
    padding: 10px 40px 10px 20px;
    background-color: var(--first-color);
    border-radius: 25px;
    color: #fff;
    text-decoration: none;

} 


/* deal */

.deal-grid-container {
    display: flex;
    flex-direction: row;
    padding: 0px 15%;
    gap: 30px;
    justify-content: center;
}


.deal-content {
    border: 3px solid var(--first-color);
    padding: 20px;
    border-radius: 5px;
}

.deal-content img {
    float: left;
    margin: 0 20px 0 0;
}

.deal-text p span {
color: var(--first-color);
font-size: 20px;
}

.deal-ends p {
    color: #000;
    font-weight: 600;
}

.flex-movement {
    display: flex;
    flex-direction: row;
}

.movement-content {
    padding: 20px 10px 0px 0;
    text-align: center;
}

.movement-content span {
    border:1px solid var(--first-color);
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 600;
}

.movement-content p {
    margin-top: 20px;
}

/* feature */

.items {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 35px;
}

.items li {
    font-size: 20px;
    font-weight: 600;
}

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

.feature-flex-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 15%;
}

.feature-flex-content .Feature-art-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-b {
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    border: 1px solid gainsboro;
    margin-bottom: 20px;
    border-radius: 10px;

}

.feature-b img {
    width: 50%;
    margin: 0 auto;

}

.feature-b p span {
    color: #000;
    font-weight: 600;
    font-size: 18px;
}

.feature-b span {
    color: var(--first-color);
    font-weight: 600;
    font-size: 16px;
}

.feature-b a {
    text-decoration: none;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
   
}

/* live */

.live {
    text-align: center;
    padding: 8% 20%;
    background: linear-gradient(90deg, #FC466B 0%, #3F5EFB 100%);

}

.live h1 {
    color: #ffff;
    font-size: 40px;
    font-weight: 600;
}

.live p {
    color: #ffff;
    font-size: 18px;
}

.live a {
    text-decoration: none;
    padding: 16px 50px;
    border-radius: 5px;
    background: var(--first-color);
    color: #ffff;
}


/* latest */

.latest-grid {
    display: grid;
    padding: 0 10%;
    grid-template-columns: repeat(3, 1fr);
}

.latest-content {
    width: 100%;
}


.latest-text {
    width: 88%;
}

.date {
    padding: 20px 0 0;
}

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

.latest-text a {
    padding: 10px 30px;
    background-color: var(--first-color);
    color: #ffff;
    text-decoration: none;
    border-radius: 24px;
}

/* footer */

.footer-container {
    padding: 100px 0 0;
}



.footer-content {
    background-color: rgb(235, 225, 209);
     padding: 100px 15%;
     margin: 0 30px;
     border-radius: 10px;
}

.copyrigt {
    padding: 20px 15%;
    
}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    font-size: 30px;
    font-weight: bold;
}

.footer-item a {
    text-decoration: none;
    color: #666565;
    transition: .5s;
}

.footer-item a:hover {
    color: var(--first-color);
}

.footer-email {
display: flex;
flex-direction: row;
}

.footer-item .footer-email input {
    width: 300px;
    height: 35px;
    outline: none;
    border: none;
    padding: 10px;
    font-size: 14px;
    background: none;
    border-bottom: 2px solid black;
}

.footer-email button {
    margin-left: -30px;
    font-size: 18px;
    font-weight: bold;
    color: var(--first-color);
    cursor: pointer;
    background: none;
    border: none;
}


