/* The code bellow was Written by Jonathan Scott 8/28/25 */
body {
    background: url("https://upload.wikimedia.org/wikipedia/commons/8/8c/Lowland_rainforest%2C_Masoala_National_Park%2C_Madagascar_%284026784053%29.jpg");
    background-position: 90%;
    background-color: rgb(11, 30, 11);
}

/* paw logo */
.logo {
    background-color: rgba(255, 255, 60, 0.9);
    width: 90px;
    height: 60px;
    border-radius: 20px;
    padding-left: 8px;
}

.logo_name {
    text-shadow: 5px 2px 10px  rgba(0, 0, 0, .8);
    font-weight: bolder;
    color: white;
    font-size: 35px;
}
/* end of paw logo */

/* Navigation bar */
.nav_bar {
    background-color: rgba(255, 255, 60, 0.9);
    color: black;
    font-size: 14px;
    letter-spacing: 2px;
    margin: 2px;
    margin-top: 10PX;
}

.nav_bar:hover{
    background-color: rgba(255, 255, 255, 0.8) !important;
    color:rgb(4, 33, 121);
    transition: all 0.3s ease;
    font-size: 18px;
}

.collapse_navbar {
    background-color: rgba(255, 255, 60, 0.9);
    color: black;
    font-size: 20px;
    position: fixed;
    top: 20px;
    right: 25px;
    width: 15%;
    z-index: 1024;
}
/* End of the navigation bar */

/* Hero section */
.home {
    color: aliceblue;
    background-color: rgba(255, 255, 0, 0.60);
    border-radius: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5%;    
}

.home h2{
    color: black;
    font-size: 30px;
    font-weight: bold;
}

.home h1{
    color: aliceblue;
    text-shadow: 5px 2px 10px  rgba(0, 0, 0, .5);
    padding: 0 15%;
}

.home-image {
    width: 500px;
    height: 200px;
}
/* end of hero */

/* Animal name */
h1 {
    font-size: 80px;
    text-align: center;
    padding-top: 10px;
    color:aliceblue;
    text-shadow: 5px 2px 8px rgba(0, 0, 0, .75);
}

/* Animal images */
.animals_image {
    background-color: black;
    margin: 0 auto 20px auto;
    color: aliceblue;
    font-size: large;
    width: 550px;
    height: 400px;
    border: solid 20px rgba(0, 0, 0, 0.75);
    border-radius: 25px;
}

/* Description box */
.text_box {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px) brightness(1.5);
    outline-color: rgba(255, 255, 255, 0.15);
    outline-style: ridge;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px; 
}

.description {
    font-size: 22px;
    letter-spacing: 2px;
    color:whitesmoke;
    text-shadow: 5px 2px 8px rgba(0, 0, 0, .75);
    margin-bottom: 30px;
    max-width: 800px;
}
/* End of description */


.footer {
    background-color: rgba(0, 0, 0, .4);
    text-shadow: 2px 2px 0 black;
    color: aliceblue;
    max-width: 200px;    
    font-weight: bolder;
    text-align: center; 
    margin-top: 50px; 
    font-size: 20px;
    border-radius: 10px;
}

/* Style for the mobile version */
@media (max-width: 768px) {
    /* Adjust the background image for readability */
    body {
        background-position: 39%;
    }

    /* paw logo */
    .logo {
        background-color: rgba(255, 255, 60, 0.9);
        width: 70px;
        height: 60px;
        position: fixed;
        top: 20px;
        left: 15px;
        padding-left: 5px;
        z-index: 1024;
    }

    .logo_name {
        font-weight: bolder;
        color: aliceblue;
        font-size: 20px;
        position: fixed;
        top: 26px;
        left: 25%;
    }
    /* End of logo  */

    /* hero section */
    .home {
        margin-right: 0.1%;
    }

    .home h1 {
        text-shadow: none;
        font-size: 40px;
        font-weight: normal;
        padding: 0;
    }

    .home h2{
        font-size: 24px;
    }
    /* End of hero  */

    /* Description box */
    .text_box {
        margin: 5% 5% 5% 5%;
        border-radius: 25px;
        margin-top: 70px;
        z-index: 1025;
    }

    .description {
        margin-left: 5px;
    }
    /* End of description */

    h1{
    font-size: 50px;
    }

    /* navigation bar */
    .nav_bar {
        position: fixed;
        top: 80px;
        left: 10px;
        z-index: 1025;
    }
}
/* Edn of style for the mobile version */
