

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{

}

.hero-section{
    height: 100vh;
    background-image: url('Unsplash-City-image.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    padding: 20px;
}

.hero-section h2, .hero-section h3{
    font-family: "Poppins", serif;
    color: #fff;
 
}

#hero-sectionh2{
    font-size: 3rem;
    text-shadow: 5px 5px 3px #111;
    animation: comein .8s ease-in;
    margin: 100px 0px 0px;   
}

#hero-sectionh3{
    font-size: 1.8 rem;
    opacity: 0;
    text-shadow: 3px 3px 3px #111;
    animation: fadein .5s ease-in-out;
    animation-delay: .5s;
    animation-fill-mode: forwards;
}

@keyframes comein {
    0%{
        opacity: 0;
        transform: translateY(-100px);
    }

    50%{
        opacity: 0;
    }
    

    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}
@keyframes fadein {
    0%{
        opacity: 0;
    }

    100%{
        opacity: 1;
    }
}


  .activities-section{
    padding: 20px 20px 0px;
    background: wheat;
  }

  .activities-section .section-title{
    font-size: 3rem;
    font-family: "Poppins", serif;
    font-weight: 600;
    text-align: center;
    margin: 10px 0px 20px;
  }

   .activities-section .activities{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
   }

   .activity{
    border: 2px solid black;
    max-width: 30%;
    flex: 0 0 30%;
    background: whitesmoke;
    border-radius: 3%;
    transition: all .3s ease-in-out;
   }

   .activity:hover{
    box-shadow: 0px 0px 10px black;
    
   }

   .activity img { 
    width:100%;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.activity-title{
    font-family: poppins;
    font-size: 1.5rem;
    text-align: center;
    margin: 10px 0px 5px;   
padding: 0px 20px;
}

.activity-content{
    padding: 0px 15px 20px;
    font-size: 1.1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.tourguide-section{
    display: flex;
    justify-content: center;
    padding: 45px 0px 45px;
    background-color: wheat;
}

.tourguide-section .tourguidecard{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: #002366 ;
    width: 60%;
    gap: 20px;
    padding: 20px;
    border-radius: 30px;
    color: whitesmoke;
    transition: all .3s ease-in-out;
    border: 2px solid whitesmoke;
}

.tourguide-section .tourguidecard:hover{
    box-shadow: 0px 0px 10px black;
}

.tourguidecard .tourguideimg{
    display: flex;
    align-items: center;
    justify-content: center;
}

.tourguidecard .tourguideimg img{
    border-radius: 30px;
    width: 90%;
    background: red;
}

.tourguidetext .title{
    font-size: 2.5rem;
    font-family: poppins;
    font-weight: 600;
    text-align: center;
}

.tourguidetext .text{
    font-size: 1.5rem;
    /* background: red; */
    font-style: italic;
    margin: 25px 0px;
}

.tourguidetext .name{
    text-align: center;
    font-size: 1.3rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

@media only screen and (max-width: 680px) {
    #hero-sectionh2{
       line-height: 3rem;
       margin-bottom: 20px;
    }
    
  } 


@media only screen and (max-width: 900px) {
    .activity{
        max-width: 100%;
        flex: 0 0 100%;
       }

       .tourguide-section .tourguidecard{
        width: 80%;
    }
  }


  @media only screen and (max-width: 650px){
    .tourguide-section .tourguidecard{
        flex-direction: column;
    }
  }