
header#main-header-1{
  --font-size:clamp(1rem, 4vw, 1.5rem);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/*mobile view*/
@media (max-width:768px) {
  #full-view{
    display: none !important;
  }
  #mobile-view{
    display: block !important;
  }
  header#main-header-1{
    background-color: white !important;
    margin-top: unset !important;
    padding-top: unset !important;
    padding-bottom: unset !important;
  }
}
#full-view{
  display: block;
}
#mobile-view{
  display: none;
}


/*Quote button*/
#quote-btn{
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  padding: 12px 20px;
  background-color: var(--green);
}
#quote-btn-mobile{
  color: var(--dark-green);
  font-weight: bold;
  font-size: var(--font-size);
  border: none;
  text-decoration: none;
  display: flex;
  align-items: center;
}
#quote-btn:hover{
  background-color: var(--dark-green) !important;
}
#quote-btn-mobile:hover{
  color: var(--dark-green);
}
.quote-btn-top{
  color: var(--green) !important;
  background-color: white !important;
}
.quote-btn-top:hover{
  color: white !important;
  background-color: var(--green) !important;
}

.right-header{
  display: flex;
  justify-content: center;

}

/*Logo*/
.header-logo{
  width: clamp(10vh,90%,20vh);
}

#main-header-1{
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, margin-top 0.3s ease-in-out;
}
#main-header-1.hide {
  transform: translateY(-100%);
}
#main-header-1.show {
  transform: translateY(0);
}

.transparent-bg{
  background: transparent !important;
  margin-top: 1rem;
}

#main-header-1.white-bg {
  background-color: white !important;
}


/*Side Menu*/
.menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--green);
  color: white;
  transform: translateX(-100%);
  transition: transform 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}
.menu-container nav a{
  font-family: 'Arvo';
}
.menu-container nav button{
  font-family: 'Arvo';
}

.menu-container.show {
  transform: translateX(0);
}

.no-scroll {
  overflow: hidden !important;
}

.dropdown-toggle-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.main-nav-links .nav-link {
  font-size: 3rem;
  font-weight: 600; 
  border-radius: 0.5rem;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  color: white !important;
}

.main-nav-links .nav-link:hover{
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
}
.floorplan-active{
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
}
#home-collapse a{
  font-size: 2rem !important;
}

#home-collapse li{
  height: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-10px);
}
#home-collapse li img{
  height: 85%;
  margin-right: 5px;
}

/*Menu Button*/
button.menu-button#openMenuBtn{
  background: transparent;
  margin-left: 3vw !important;
  border: none;
  padding: 10px;
  display: flex;
  gap: 20px !important;
}
button.menu-button-mobile{
  span{
    color: var(--green);
    font-weight: bold;
    font-size: var(--font-size);
  }
  background: transparent;
  margin-left: 3vw !important;
  border: none;
  padding: 10px;
  display: flex;
  gap: 20px !important;
}
.openMenuBtn-top{
  .menu-line{
    background-color: white;
  }
  .menu-text{
    color: white;
  }
}

button#openMenuBtn:hover{
  .mid-line,
  .top-line,
  .bot-line{
    width: 100%;
  }
}
button.menu-button-mobile:hover{
  span{
    color: var(--dark-green);
  }
}

.seperator{
  border: solid 1px var(--green);
  height: 2rem;
  align-self: center;
  margin: 0 1rem 0 1rem;
}

.menu-icon{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 40px; /* Width of the icon area */
  height: 28px; /* Height of the icon area (3 lines * 3px height + 2 * 7.5px spacing) */
}

.menu-line {
  display: block;
  height: 4px;
  border-radius: 2px;
  background-color: var(--graphite);
  transition: width 0.3s ease-in-out;
}

.bot-line{
  width: 120%;
}
.mid-line{
  width: 70%;
}
.top-line{
  width: 30%;
}
.menu-text{
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--graphite);
}

/*quote button*/
.button-container {
  display: flex;
  align-items: center;
  width: 100vw;
  margin-top: 4rem;
}
.line {
  flex-grow: 1;
  height: 1px;
  background-color:#97cf99;
}
.button-container a#quote-btn-menu{
    color: var(--green);
    font-family: "Roboto";
    font-weight: var(--bold);
    font-size: 1rem;
    border: none;
    padding: 12px 20px;
    background-color: white;
    margin: 0 1rem 0 1rem;
}
.button-container a#quote-btn-menu:hover{
  color: var(--dark-green) !important;
}
