body {
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.wrap {
    flex-wrap: wrap;
}

.space-between {
    justify-content: space-between;
}


.book {
    transition: transform 0.3s ease-in-out;
}

.book:hover {
    transform: translateY(-10px) scale(1.2);
}

@keyframes sparkle {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.nav__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7rem;
    list-style: none;
    gap: 4rem;
}

@media screen and (max-width: 900px) {
    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1rem;
    }

    .nav__list-item {
        margin-bottom: 1rem;
    }

    .nav__link {
        font-size: 1.5rem;
    }
}

.nav__img {
    width: 19rem;
    height: 9rem;
}

.nav__link {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.75rem;
    font-family: Gemerald;
}

/* Rest of your CSS remains unchanged */

/* Additional styles for the mobile dropdown */

.mobile-dropdown {
    display: none;
    cursor: pointer;
}

.mobile-dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.mobile-dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.mobile-dropdown-content a:hover {
    background-color: green;
}

.mobile-parent {
    display: none;
    padding: 20px;
}

@media screen and (max-width: 1300px) {
    .nav__list {
        padding: 0 1.8rem;
    }



}

@media screen and (max-width: 1200px) {
    section {
        padding: 4rem 4rem!important ;
    }


    .nav__list{
        display: none;
    }
    .mobile-dropdown {
        display: block;
        margin-right: 4rem;

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

    .mobile-dropdown-content {
        display: none;
        position: absolute;
        right: 50px;
        top: 120px;
        background-color: #333;
        min-width: 160px;
        box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
        z-index: 1;
    }

    .mobile-dropdown-content a {
        color: white;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .mobile-dropdown-content a:hover {
        background-color: green;
    }

    .mainfoot {
        padding: 2rem 1rem;
    }


}

.footer .heading_secondary {
    color: white; 
}

.leftfoot .landing__text {
    line-height: 3rem;
    margin: 0; 
    padding-bottom: 1rem;
}

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

    .rightfoot {
        gap: 3rem;
    }

    .heading__primary {
        font-size: 5rem;
      }
}

@media screen and (max-width: 640px) {
    .rightfoot {
        flex-direction: column; 
        gap: 1rem;
    }

}


.btn {
    color: black;
    background-color: #5be518;
    padding: 1rem 2rem;
    border-radius: 3px;
    box-shadow: 0px 3px 20px #5be518;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
  .btn:hover {
    color: black;
    background-color: #51c916;
    cursor: url('./images/wand.svg'), auto;
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px #5be518;
  }

.align-center {
    text-align: center;
}

.nav__img {
    height: auto!important;
    width: auto!important;
}