html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 1px;
    font-family: Arial, Helvetica, sans-serif;
    background-image: url(./imgs/background/pokeball-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

body::-webkit-scrollbar {
    width: 12px;
    /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: #FF4A57;
    /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: #07242E;
    /* color of the scroll thumb */
    border-radius: 20px;
    /* roundness of the scroll thumb */
    border: 1px solid white;
    /* creates padding around scroll thumb */
}

.header-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1920px;
}

.pokemon-content {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1920px;
    flex-direction: column;
}

/*-----------------------------------------------------------------------All reusable Class---------------------------------------------------------------------*/

.d-none {
    display: none !important;
}

.d-flex {
    display: flex !important;
}

.txt-wh {
    color: white;
}

.txt-bd {
    font-weight: bold;
}

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


/*----------------------------------------------------------------------All about Header---------------------------------------------------------------------------*/
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    background-color: #07242E;
    border-radius: 20px;
    border: solid 1px white;
    position: sticky;
    top: 5px;
    z-index: 3;
    width: 100%;
}

.logo {
    text-decoration: none;
}

.headline-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-left: 15px;
}

.headline {
    color: white;
    font-size: 30px;
}

.headline-icon {
    height: 40px;
    width: 40px;
}

.search-input {
    padding: 10px;
    border-radius: 20px;
    height: 50px;
    width: 200px;
    margin-right: 10px;
}


/*---------------------------------------------------------All about Section Pokedex Container-----------------------------------------------------------------*/

.pokedex-container {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    height: min-content;
    width: 100%;
    padding: 50px;
    flex-wrap: wrap;
    gap: 50px;
}


/*+++++++ All about PokeCards +++++++*/

.pokemon-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    align-items: center;
    height: 350px;
    width: 250px;
    border: solid 2px #07242E;
    object-fit: cover;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
}

.pokemon-card:hover {
    transform: scale(1.1);
    transition: all ease-in-out 250ms;
    cursor: pointer;
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 1.1));
}

.pokemon-card:hover .poke-img {
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 1.1));
    transition: all ease-in-out 255ms;
}

.pokemon-card-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    background-size: cover;
    opacity: 0.8;
}


.card-head {
    z-index: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: min-content;
    border-bottom: solid 1px #07242E;
}

.poke-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.poke-img {
    scale: 1.3;
    object-fit: cover;
    position: relative;
}

/*++++++++++++PokeCard Footer +++++++++++*/

.poke-card-type-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 20px;
    border: solid 1px #07242E;
    height: 35px;
    width: 40%;
    padding: 3px;
}

.card-detail {
    z-index: 1;
    display: flex;
    justify-content: end;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 55px;
}

.card-type-img {
    background-color: #07242E;
    height: 20px;
    width: 20px;
    object-fit: cover;
    border-radius: 20px;
    padding: 5px;
}


.card-types {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 5px;
}

/*------------------------------------Section load Pokemon Button----------------------------*/


.loadNextPokemons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: min-content;
    padding: 0 0 50px 0;
}

.poke-load-bt {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    font-weight: bold;
    border: solid 1px white;
    border-radius: 20px;
    background-color: #07242E;
    width: 500px;
    height: 100px;
    cursor: pointer;
    font-size: 20px;
}

.poke-load-bt:hover {
    filter: drop-shadow(0 1px 13px rgba(255, 255, 255, 1.2));
}

.pikachu-img {
    height: 90%;
}

.load-all-bt {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    font-weight: bold;
    border: solid 1px white;
    border-radius: 20px;
    background-color: #07242E;
    width: 200px;
    height: 50px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 15px;
}

.load-all-bt:hover {
    filter: drop-shadow(0 1px 13px rgba(255, 255, 255, 1.2));
}

/*--------------------------------------------Footer----------------------------------------*/

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #07242E;
    width: 100%;
    height: 150px;
}


