*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif;
}
.hero{
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav{
  width: 100%;
  position: absolute;
  top:0;
  left:0;
  padding: 20px 8%;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease-in-out;
}
nav .logo{
  max-width: 80px
}
nav .nav-links li{
  list-style: none;
  font-weight: 600;
  display: inline-block;
  margin-left: 40px;
}
.nav-links :hover{
  border-bottom: 2px solid white;
}
nav .nav-links li a{
  text-decoration: none;
  color: #ffff;
  font-size: 17px;
}
nav .scrolled{
  background: white;
}
.content{
  text-align: center;
}
.content h1{
  font-size: 75px;
  color: #fff;
  font-weight: 600;
}
.content a{
  text-decoration: none;
  display: inline-block;
  color:#fff;
  background-color: #1A2B48;
  font-size: 24px;
  border: 2px solid #000;
  border-radius: 30px;
  padding: 14px 40px;
  margin-top: 50px;
  transition: border .5s ease-out.1s;
}
.content a:hover{
  border: 2px solid #fff;
}
.back-video{
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (min-aspect-ratio:320/169){
  .back-video{
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio:320/169){
  .back-video{
    width: auto;
    height: 100%;
  }
}
.services{
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.services h1{
  font-size: 50px;
}
.options{
  width: 100%;
  padding: 20px;
  display:flex;
  flex-direction:row;
  align-items: center;
}
.valley-option{
  flex: 1;
  height: 600px;
  padding: 20px;
  border-radius: 15px;
  color:forestgreen;
  border: 2px solid forestgreen;
  text-align: center;
  background-image: url(./images/valley.jpg);
  background-size: cover;
  background-position: center;
  transition: background-color .5s;
}
.valley-option:hover{
  color: rgba(34,139,34,0);
  background: rgba(34,139,34);
}
.valley-hover{
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s; /* Smooth fade effect */
  display: flex; /* Centers the text inside the overlay */
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.valley-hover:hover{
  opacity: 1; /* Make visible on hover */
}
.pricing{
  padding: 50px;
}

.mesa-option{
  flex: 1;
  height: 600px;
  padding: 20px;
  border-radius: 15px;
  color: orange;
  border: 2px solid orange;
  text-align: center;
  background-image: url(./images/mesa.jpg);
  background-size: cover;
  background-position: center;
}
.mesa-option:hover{
  color: rgba(34,139,34,0);
  background: orange;
}
.mesa-hover{
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s; /* Smooth fade effect */
  display: flex; /* Centers the text inside the overlay */
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.mesa-hover:hover{
  opacity: 1; /* Make visible on hover */
}
.summit-option{
  flex: 1;
  height: 600px;
  padding: 20px;
  border-radius: 15px;
  color: teal;
  border: 2px solid teal;
  text-align: center;
  background-image: url(./images/summit.jpg);
  background-size: cover;
  background-position: center;
}
.summit-option:hover{
  color: rgba(34,139,34,0);
  background: teal;
}
.summit-hover{
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s; /* Smooth fade effect */
  display: flex; /* Centers the text inside the overlay */
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.summit-hover:hover{
  opacity: 1; /* Make visible on hover */
}
html{
  scroll-behavior: smooth;
}
.About-Us{
  width: 100%;
  height: auto;
  position: relative;
  padding: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.about-text{
  flex: 1;
  text-align: center;
}
.about-image{
  width: 230px;
  height: 300px;
  background-image: url(./images/headshot.png);
  background-size:contain;
  background-position: center;
}
.Contact-Us{
  color:#000;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: auto;
  padding-bottom: 50px;
}
.Contact-Us a{
  color:darkblue;
}
footer {
    background-color: #333; /* Dark background color */
    color: white; /* White text color */
    text-align: center; /* Center-align text */
    padding: 20px 0; /* Add some padding top and bottom */
    width: 100%; /* Full width */
}

footer a {
    color: grey; /* Link color */
    text-decoration: none; /* Remove underlines from links */
}
header.scrolled {
    background-color: #333; /* The solid color when scrolled */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
}
