*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/*BODY*/
body{
    font-family:"Jersey 20", sans-serif;
    background-color: rgb(241, 255, 232);
    margin-bottom: auto;
   
}
/*NAV BAR CONTAINER*/
.navbar{
    background: #789278;
    padding:10px 20px;
    border-bottom: 1px solid#585d4a;
}

.navbar .container {
    display:flex;
    justify-content: space-between;
    align-items: center;
  
}
/*LOGO SECTION*/
.logo{
    display:flex;
    align-items: center;
    gap:200px;
}
/*LOGO TEXT*/
.logo p{
    font-size:x-large;
    font-family: "Jersey 10", sans-serif;


}

/*HERO SECTION*/
.hero-section{
    background-image: url(https://wallpapercave.com/wp/wp6592768.png);
    text-align: center;
    height: 200px;   
}

.hero-section img {
  max-width:100%;
  height:auto;
  
}

.hero-section p{
    margin-top:15px;
    font-size: larger;
    color:rgb(35, 81, 53);
}
/*CARDS SECTION*/
.cards{
    display:flex;
    justify-content: center;
    gap:40px;
    margin-top: 60px;
}
.card1{
  padding:40px 20px;
  max-width: 220px;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
}
.card1 img{
    border-radius: 100%;

}
.card2{
  padding:40px 20px;
  max-width: 220px;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
}
.card2 img{
    border-radius: 100%;
    max-height: 200px;

}
/*BOOK NOW*/
.book-now{
    max-width: 100%;
  height: 100vh;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  margin-bottom: 10px;
  position:relative;
}
.book-now img{
    width:100%;
}
.book-now button{
    margin-left: 50%;
  margin-right: 50%;

}
.book-now .text{
    position:absolute;
    color:white;
    text-shadow: #585d4a;
    font-size: xx-large;
    right:50%;
    top:50%;
   
}
/*BUTTONS*/
button{
   background-color: #587e63;
  border: none;
  color: white;
  padding: 14px 28px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition:0.6s ease;
  text-align: center;
}
button:hover{
      background-color: #a46800;
}

    
