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

/* shared section */
.section-title {
    font-size: 3.125rem;
    font-weight: bold;
    margin-bottom: 16px;
    font-family: "Noto Serif", serif;
}

.description {
    font-size: 1.375rem;
    color: rgba(0, 0, 0, 0.5);
    font-family: "Inter", sans-serif;
}

.font-inter {
    font-family: "Inter", sans-serif;
}

.font-noto {
    font-family: "Noto Serif", serif;
}

li a:hover{
    font-weight: bold;
    color: black;
}


/* header */
header {
    max-width: 1140px;
    margin: 0 auto;
    margin-top: 30px;
}

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

.nav-menu-cart {
    display: flex;
    gap: 48px;
    font-family: "Inter", sans-serif;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 48px;
}

.nav-links a {
    text-decoration: none;
    color: #8987A1;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}





/* banner */
.banner {
    display: flex;
    align-items: flex-end;
    margin-top: 100px;
}

.banner-heading {
    font-size: 4rem;
    font-weight: 700;
    color: #E95A08;
    margin-bottom: 15px;
}





/* Our Plants */
.our-plants {
    max-width: 1140px;
    margin: 100px auto;
    text-align: center;
}

.our-plants-heading {
    max-width: 900px;
    margin: auto;
    margin-bottom: 50px;
    text-align: center;
}

.plants-card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.plant-card {
    max-width: 270px;
}

.plant-card img {
    width: 100%;
}

.plant-card-content {
    margin: 20px auto;
}

.plant-card-content h3 {
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "Inter", sans-serif;
}

.plant-card-content h4 {
    font-size: 1.375rem;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.card-button {
    background-color: #E95A08;
    color: white;
    font-weight: 600;
    padding: 19px;
    border: none;
    width: 100%;
    cursor: pointer;
}







/* flower and plants lover */
.flower-plants-lover {
    max-width: 1140px;
    margin: 0 auto;
    margin-top: 200px;
    margin-bottom: 100px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.flower-plants-lover-left {
    position: relative;
    max-width: 540px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.trusted-badge {
    width: 286px;
    width: 286px;
    position: absolute;
    left: 361px;
    bottom: 442px;
    animation: spin 10s linear infinite;
}

.flower-plants-lover-right {
    max-width: 540px;
}

.flower-plants-lover-right li {
    margin: 20px 0;
    margin-left: 20px;
}





/* Latest Deals */
.latest-deals {
    max-width: 1140px;
    margin: 0 auto;
}

.deals-grid {
    margin: 100px auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 28px;
}

.deals-grid-left {
    display: grid;
    gap: 25px;
}

.small-card,
.big-card {
    background-size: cover;
    background-position: center;
    padding: 65px 44px;
    text-align: center;
    border-radius: 14px;
    font-weight: bold;
    color: white;
    font-size: 1.25rem;
    font-family: "Noto Serif", serif;
}

.deals-grid-left .small-card:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../assets/deal-bloom.png);
    /* background-color: rgba(0, 0, 0, 0.4); */
}

.deals-grid-left .small-card:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../assets/deal-ana.png);
}

.big-card {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../assets/deal-zabo.png);
    height: 100%;
}

.big-card {
    font-size: 2.5rem;
    padding: 170px 100px;
}

.small-card button,
.big-card button {
    background-color: transparent;
    border: none;
    text-decoration: underline;
    color: white;
    padding: 19px 90px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
}

.big-card button {
    font-size: 1.5rem;
}



/* Join the colorful Bunch */
.join-the-bunch {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../assets/news-letter-bg.png);
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 195px 0px;
}

.join-the-bunch h2 {
    color: white;
}

form {
    display: flex;
    justify-content: center;
}

input {
    background-color: white;
    border: none;
    padding: 15px 20px;
    padding-right: 500px;
}

form button {
    background-color: #E95A08;
    padding: 15px 50px;
    border: none;
    color: white;
    font-weight: bold;
}


/* footer */
footer {
    max-width: 1140px;
    margin: 50px auto;
    display: flex;
    gap: 110px;
}

.footer-logo-description {
    width: 359px;
}

footer ul {
    list-style: none;
}

footer ul li {

    margin-bottom: 32px;
}

footer a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.5);
    font-family: "Inter", sans-serif;
}

.footer-icons img {
    max-width: 36px;
    max-height: 36px;
}

.footer-icons {
    display: flex;
    gap: 24px;
}