* {
  margin: 0px;
  padding: 0px;
}
html,
body {
  position: relative;
  overflow-y: auto;
  min-height: 100vh;
}


textarea:focus,
input:focus {
  outline: none;
}
a {
  color: inherit !important;
  text-decoration: none !important;
}
.navbar-brand{
margin:10px;
padding:10px;
width:10px;
}

footer {
  background: #f1f1f1;
  width: 100%;
  padding: 16px 0px;
  color: #999;
  vertical-align: bottom;
  margin-top: 40px;
  text-align: center;
  /* width: 100%; */
  /* height: 2.5rem;   */
}
/* ================================== */
/* Layout page CSS */
/* ================================== */


.row{
  margin-top:20px;
}
.city-container {
  margin: 20px auto;
}
.city {
  /* TODO: MODULE_CARDS */
  /* 1. Fill in the required properties. */
  height: 100%;
  position: relative;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  
}

.city img {
  /* TODO: MODULE_CARDS */
  /* 1. Fill in the required properties. */
  margin:0px;
  padding:10px;
  width:100%;
  height:100%;
  border-radius: 10px;
  transition: all 0.4s;
  cursor: pointer;
  vertical-align: middle;
  border-style: none;
}
.city img:hover {
  /* TODO: MODULE_CARDS */
  /* 1. Fill in the required properties. */
    filter: brightness(0.5);
    transform: scale(1.2);
  }


  
/* Hint: Notice the position:absolute and z-index properties. */
/* Think about how those in relation to the existing "tile" classes. */
.city-text {
  position: absolute;
  z-index: 1;
  color:whitesmoke;
  text-transform: uppercase;
  bottom: 20px;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  text-align: center;
}
 


  

.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/assets/hero.jpg");
    height:350px;
    background-position: center center;
    display:flex;
    flex-direction: column;
    align-items: center;
    color:white;
    justify-content: center;
  /* TODO: MODULE_LAYOUT */
  /* 1. Set a specific height. */
  /* 2. Position and center the image to scale nicely on all screens. */
}

.hero-image subheading {
  font-size: 20px;
  font-weight: lighter;
  justify-content: center;
}
.hero-image input {
  width: 80%;
  height: 30px;
  padding:0px 16px;
  border-radius: 5px;
  border: none;
}
.hero-image p{
  font-weight: lighter;
}


.input:focus{
  border :0px;
  outline: 0px;
}
.nav-link {
  margin-right: 36px;
}

/* ================================== */
/* Adventures grid page CSS */
/* ================================== */

.adventure-header{
  
  font-size: medium;
  text-align: start;
  padding:10px;
  
}

.adventure-card {
  /* TODO: MODULE_ADVENTURES_GRID */
  /* 1. Fill in the required properties. */
  margin:0px;
  padding:5px;
 
  
}

.card-body{
  
 border-radius:10px; 

}
.card-text {
  display:flex;
  flex-direction: row;
  justify-content:space-between;

}



.card img {

  margin:0px;
  padding:15px;
  width:100%;
  height:100%;
  border-radius: 10px;
  height:250px;
  transition: all 0.4s;
  cursor: pointer;
  vertical-align: middle;
  border-style: none;

 
}
.card img:hover {
  /* TODO: MODULE_ADVENTURES_GRID */
  /* 1. Fill in the required properties. */
  filter: brightness(0.5);

}

/* ================================= */
/* Adventure details page CSS */
/* ================================== */
.justify-content-between  {
margin:5px;
padding-bottom: 0%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
text-overflow: clip;
}
.justify-content-between p  {
  font-family:Arial;
  align-content:space-between;
}

.adventure-detail-card{
  border: 1px solid #eee;
  border-radius:5px;
  padding:16px;
  cursor:pointer;
  transition:(0.2s) all;
  border-radius: 5px;
}

.adventure-card {

  height:700px;
}


.adventure-card-image {
  /* TODO: MODULE_ADVENTURE_DETAILS */
  /* 1. Fill in the required properties. */
 height:80%;
 width:100%;
 cursor:pointer;
 transition:(0.5s) all;
 border-radius: 5px;
}
.adventure-card-image:hover {
  /* TODO: MODULE_ADVENTURE_DETAILS */
  /* 1. Fill in the required properties. */
filter:brightnes(0.3);
transition:(0.5s) all;

}
.experience-content ul li {
  margin-left: 16px;
  padding: 0;

}

@media only screen and (min-width: 992px) {
  /* For desktops phones: */
  #reservation {
    width: 400px;
    position: fixed;
  }
}
