body{
  margin: 0!important;
  font-family: Dubai, sans-serif !important;
}

.navbar-container{
  background-color: #0e2e51;
  display: flex;
  flex-direction: column;
  height: fit-content;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  position: sticky;
}
.content-wrapper{
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.content-holder .logo-container{
  display: flex;
  flex-direction: column;
}
.logo-container i{
  margin-left:78px;
  font-size: 8px;
  color: black;
}
.logo-container a{
  text-decoration: none;
  width: fit-content;
}
.logo-container img{
  height: 150px;
  width: 90px;
}

.content-holder{
  height: max-content;
  background-color: #e0ba86;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px;
  gap: 50px;
}
.name-container h1{
  font-family: Dubai, sans-serif;
  font-size: 50px;
}
#tag-line{
  font-size: 22px;
}

.brochure-container{
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.assets{
  background-color: #b3621a;
  cursor: pointer;
  color: white;
  text-decoration: none;
  padding: 20px 35px;
  border-radius: 18px;
  transition: all 0.3s;
  border: none;
  font-family: Dubai, sans-serif;
}
.assets:hover{
  background-color: #ffcfb0;
  color: black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

#brochure-download-button{
  padding: 20px;
  border-radius: 18px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
#brochure-download-button:hover{
  background-color: #615f5f;
  color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}
#download-tooltip{
  margin-top:20px;
  background: #333;
  color: #fff;
  font-size: 13px;
  padding: 5px 10px;
  height: fit-content;
  width: fit-content;
  border-radius: 4px;
  display: none;
}

.details-holder{
  /*background-image: url("/img/sample.png");*/
  background-color: saddlebrown;
  background-size: cover;
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  color: #E0BB87 !important;
}

.details-main-container{
  display: flex;
  flex-direction: column;
}
.details{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
  gap: 30px;
  width: 100%;
  align-items: baseline;
}
.address a{
  color: white;
  text-decoration: none;
}
.mobile p span{
  cursor: pointer;
}
.mobile p a{
  color: white;
  text-decoration: none;
}
.website a{
  color: white;
  text-decoration: none;
}

.details-holder .logo-container{
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: flex-end;
}
.details-holder .logo-container div{
  display: flex;
  flex-direction: column;
}

.footer-prev{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
}

.footer-prev hr{
  width: 75%;
  opacity: 0.5;
  color: #c29046;
  border-color: #c29046;
  border-style: solid;
}
.footer-prev p{
  text-align: center;
}
.footer-prev a{
  color: antiquewhite;
}

/*Brochure pop up*/
.popup-overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content{
  position: relative;
  height: 90%;
  width: 70%;
  background: white;
  padding: 10px;
  border-radius: 10px;
}

iframe{
  height: inherit;
  width: inherit;
}

/* Back to Top Button */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  z-index: 9999;
  background-color: #e1bb75;
  color: white;
  padding: 12px 16px;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
}

#back-to-top:hover {
  background-color: #f5aa08;
  text-decoration: none;
  color: white;
}
