@font-face {
  font-family: 'SF Pro Text Light';
  src: url(../fonts/SFProText-Light.ttf);
}

@font-face {
  font-family: 'SF Pro Text';
  src: url(../fonts/SFProText-Regular.ttf);
}

@font-face {
  font-family: 'SF Pro Text Medium';
  src: url(../fonts/SFProText-Medium.ttf);
}

@font-face {
  font-family: 'SF Pro Text Bold';
  src: url(../fonts/SFProText-Bold.ttf);
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: '';
  z-index: 0;
}

canvas{
  width: 100%;
}

.image-container{
  height: 100vh;
  width: 100%;
  position: relative;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  z-index: 0;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    border-width: 2.3rem 2.3rem 2.3rem 2.3rem;
  }
  to {
    border-width: 0 0 0 0;
  }
}

.fade-out {
  animation: fadeOut ease-out forwards;
}

#watermark {
  width: 100px;
  height: 100px;
  position: fixed;
  bottom: 0%;
  left: 1%;
  background-image: url('../img/LOGO.png');
  background-size: contain;
  opacity: 0.7;
  pointer-events: none; /* This prevents the watermark from capturing mouse events */
  z-index: -1;
}

/***Window***/

.floor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#tabwin {
  width:30px;
  height:30px;
  position: fixed;
  top: 3.5%;
  right: 1.5%;
  background-image: url('../img/tabwin2.svg');
  background-size: contain;
  z-index: -1;
}

.about {
  display: none;
}

.window{
  position: absolute;
  float: right;
  width: 0%;
  height: 100%;
  right: 0%;
}

.window.open {
  width: 25%;
  padding: 2.0625rem;
  float: right;
  position: absolute;
  right: 0%;
  top:0;
  height: 100%;
  background: #fff;
  color: #383838;
  font-family: "SF Pro Text Medium";
  overflow: hidden;
  transition: right 0.5s ease;
  z-index: 1;
}

.window.open .about{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;

}

.window .closing {
  width: 0%;
  transition: right 0.5s ease;
}

.window h1{
  margin-bottom: 10%;
}

.reservation{
  width: 100%;
  margin-top: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reservation a{
  font-family: 'SF Pro Text Medium';
  font-size: 17px;
  text-decoration: none;
  color: #1D2022;
  border-radius: 56px;
  border: 2px solid #1D2022;
  padding: 14px 56px;
  transition: all 0.3s ease-out;
}

.reservation a:hover{
  background: #1D2022;
  color: #FFF;
}

.stars {
  position: relative;
  float: right;
  right:0;
  margin-top: 1%;
  margin-left: 2%;
}
.window .p1{
  font-size: 19px;
  font-family: "SF Pro Text Bold";
}

.room-img{
  margin-right: 5%;
  width: 65%;
  vertical-align: middle;
  box-sizing: border-box;
}

#close{
  width:25px;
  height:25px;
  position: fixed;
  top: 3.5%;
  right: 1.5%;
  background-image: url('../img/close.svg');
  background-size: contain;
  display: none;
  transition: right 0.5s ease;
}

/*** Showrooms ***/

.loading-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  width: 0;
  background-color: black;
  z-index: 9999;
  transition: width 0.5s ease-out;
}

.loading{
  position: absolute;
  width: 100%;
  height: 100vh;
  color: #1D2022;
  /* display: none; */
}

.loading .background {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: url("../img/preview3.jpg") no-repeat center center fixed;
    transition: 200ms opacity linear;
    z-index: 0;
}

.loading .panel-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.loading .main {
  margin-left: 2rem;
  margin-right: 2rem;
}

.loading .border {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2.3rem solid #fff;
  pointer-events: none;
  /* -webkit-transition: 400ms border-width ease-out;
  -moz-transition: 400ms border-width ease-out;
  -ms-transition: 400ms border-width ease-out;
  -o-transition: 400ms border-width ease-out;
  transition: 400ms border-width ease-out; */
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

.loading .panel {
  padding: 2.0625rem;
  float: left;
  position: relative;
  height: 100%;
  background: #fff;
  color: #383838;
  font-family: "SF Pro Text Medium";
  overflow: hidden;
}

.title {
  margin-top: 30%;
  margin-bottom: 55px;
  font-family: 'SF Pro Text Bold';
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 1em;
}

.title p{
  margin-top: 0;
  margin-bottom: 1rem;
}

.progress.show {
  display: flex;
}

.subtitle:before {
  content: '';
  display: block;
  float: left;
  background: url('../img/mobsr-icon.svg') no-repeat center center;
  width:53px;
  height: 33px;
  margin-left: 2px;
  margin-right: 15px;
  margin-top: 1.3%;
}

.subtitle{
  margin-bottom: 70px;
}

.subtitle p{
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'SF Pro Text Light';
  font-size: 17px;
}

.showroom-btn{
  width: 220px;
  height: 48px;
  border-radius: 25px;
  border: 2px solid #1D2022;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showroom-btn a {
  position: absolute;
  width: 225px;
  height: 48px;
  border-radius: 25px;
  border: 0px solid #1D2022; 
  font-family: 'SF Pro Text Medium';
  font-size: 17px;
  text-decoration: none;
  color: #1D2022;
  background-color: transparent;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showroom-btn a:hover{
  background: #1D2022;
  color: #FFF;
}

.showroom-footer{
  position: absolute; 
  bottom: 100px;
  width: 77%;
}

.showroom-icons{
  margin-right: 5%;
  margin-bottom: 15px;
}

.showroom-footer img{
  max-width: 64px;
  float: left;
  margin-top: 1%;
  margin-right: 3%;
  margin-bottom: 3%;
}

.showroom-footer p{
  font-size: 14px;
  margin-bottom: 0;
}

.showroom-footer p a{
  color: #1D2022;
}

.showroom-text{
  font-size: 13px;
}

@media only screen and (max-width: 480px) {

  .loading .main{
    margin-left: 0rem;
    margin-right: 0rem;
    width: 90%;
    padding-right: 5%;
    padding-left: 5%;
    margin-top: 15%;
  }

  .loading .panel {
    padding: 0rem;
    width: 100%;
  }

  .loading .border {
    display: none;
  }

  .title {
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1em;
    font-size: 2rem;
  }
  
  .title p{
    font-size: 35px;
  }
  
  .subtitle:before {
    content: '';
    display: block;
    float: left;
    background: url('../img/mobsr-icon.svg') no-repeat center center;
    width:53px;
    height: 33px;
    margin-left: 2px;
    margin-right: 15px;
    margin-top: 1%;
  }

  .subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .showroom-mob {
    width: 100%;
    height: 100%;
    text-align: center;
    background: url('../img/sr1.webp') no-repeat center;
  }

  .showroom-mob, ::after, ::before {
    box-sizing: border-box;
  }

  .showroom-btn {
    position: relative;
    margin-top: 10%;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

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

  #watermark {
    width: 85px;
    height:85px;
    bottom: 0vh;
    right: 1vh;
    position: fixed;
  }

  .showroom-btn a:hover{
    display: none;
  }

  .showroom-footer{
    position: absolute; 
    bottom: 1%;
    width: 80%;
  }
  
  .showroom-icons{
    margin-right: 5%;
    margin-bottom: 15px;
  }
  
  .showroom-footer img{
    max-width: 64px;
    float: left;
    margin-top: 1%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  
  .showroom-footer p{
    font-size: 0.7rem;
    margin-bottom: 0;
  }
  
  .showroom-footer p a{
    color: #1D2022;
  }
  
  .showroom-text{
    margin-top: 1.5%;
    font-size: 0.7rem;
  }

  .window.open {
    padding: 0rem;
    padding-top: 15%;
    width: auto;
    float: right;
    position: absolute;
    right: 0%;
    top:0;
    height: 100%;
    background: #fff;
    color: #383838;
    font-family: "SF Pro Text Medium";
    overflow: hidden;
    transition: right 0.5s ease;
  }

  .window.open .about {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
  }

  .stars {
    position: relative;
    right:0;
    margin-right: 0%;
    margin-left: 5%;
  }

  .room-img{
    width: 65%;
    vertical-align: middle;
    box-sizing: border-box;
  }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {

  .loading .main{
    margin-left: 0rem;
    margin-right: 0rem;
    width: 90%;
    padding-right: 5%;
    padding-left: 5%;
    margin-top: 15%;
  }

  .loading .panel {
    padding: 0rem;
    width: 100%;
  }

  .loading .border {
    display: none;
  }

  .title {
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1em;
    font-size: 2rem;
  }

  .title p{
    font-size: 35px;
  }

  #tabwin {
    width:30px;
    height:30px;
    position: fixed;
    top: 3.5%;
    right: 2.5%;
    background-image: url('../img/tabwin2.svg');
    background-size: contain;
    z-index: -1;
  }
  
  #close{
    width:25px;
    height:25px;
    position: fixed;
    top: 3.5%;
    right: 2.5%;
    background-image: url('../img/close.svg');
    background-size: contain;
    display: none;
    transition: right 0.5s ease;
  }

  .subtitle:before {
    content: '';
    display: block;
    float: left;
    background: url('../img/mobsr-icon.svg') no-repeat center center;
    width:53px;
    height: 33px;
    margin-left: 2px;
    margin-right: 15px;
    margin-top: 1%;
  }

  .subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .showroom-mob {
    width: 100%;
    height: 100%;
    text-align: center;
    background: url('../img/sr1.webp') no-repeat center;
  }

  .showroom-mob, ::after, ::before {
    box-sizing: border-box;
  }

  .showroom-btn {
    position: relative;
    margin-top: 10%;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

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

  #watermark {
    width: 100px; 
    height: 100px; 
    bottom: 0vh; 
    right: 1vh; 
    position: fixed;
  }

  .showroom-btn a:hover{
    display: none;
  }

  .showroom-footer{
    position: absolute; 
    bottom: 1%;
    width: 80%;
  }

  .showroom-icons{
    margin-right: 5%;
    margin-bottom: 25px;
  }
  
  .showroom-footer img{
    max-width: 64px;
    float: left;
    margin-top: 1%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  
  .showroom-footer p{
    font-size: 0.7rem;
    margin-bottom: 0;
  }
  
  .showroom-footer p a{
    color: #1D2022;
  }

  .window.open {
    padding: 0rem;
    padding-top: 15%;
    width: auto;
    float: right;
    position: absolute;
    right: 0%;
    top:0;
    height: 100%;
    background: #fff;
    color: #383838;
    font-family: "SF Pro Text Medium";
    overflow: hidden;
    transition: right 0.5s ease;
  }

  .window.open .about {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
  }

  .stars {
    position: relative;
    right:0;
    margin-right: 0%;
    margin-left: 5%;
  }

  .room-img{
    width: 65%;
    vertical-align: middle;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

  .showroom-mob {
    display: none;
  }

  .loading .border {
    width: 100%;
    height: 100%;
  }

  .title {
    margin-bottom: 0;
  }

  .subtitle:before {
    content: '';
    display: block;
    float: left;
    background: url('../img/mobsr-icon.svg') no-repeat center center;
    width:53px;
    height: 33px;
    margin-left: 2px;
    margin-right: 15px;
    margin-top: 1.3%;
  }

  #watermark {
    width: 100px; 
    height: 100px; 
    bottom: 0vh; 
    right: 1vh; 
    position: fixed;
  }

  .showroom-btn a:hover{
    display: none;
  }

  .window.open{
    width: 35%
  }

  .window.open .about {
    margin-top: 10%;
  }

  #tabwin {
    width:30px;
    height:30px;
    position: fixed;
    top: 3.5%;
    right: 2.5%;
    background-image: url('../img/tabwin2.svg');
    background-size: contain;
    z-index: -1;
  }
  
  #close{
    width:25px;
    height:25px;
    position: fixed;
    top: 3.5%;
    right: 2.5%;
    background-image: url('../img/close.svg');
    background-size: contain;
    display: none;
    transition: right 0.5s ease;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1280px) {

  .showroom-mob {
    display: none;
  }

  .loading .border {
    width: 100%;
    height: 100%;
  }

  .title {
    margin-bottom: 0;
  }

  .subtitle:before {
    content: '';
    display: block;
    float: left;
    background: url('../img/mobsr-icon.svg') no-repeat center center;
    width:53px;
    height: 33px;
    margin-left: 2px;
    margin-right: 15px;
    margin-top: 1.3%;
  }

  #watermark {
    width: 100px; 
    height: 100px; 
    bottom: 1vh; 
    right: 1vh; 
    position: fixed;
  }
}

@media screen and (min-width: 1280px) {

  .showroom-mob {
    display: none;
  }

  .window {
    width: 25%;
    right: -50%;
  }
}
