

/*
-------                -------
-------    mobile nav  -------
-------                -------
*/
@media (max-width: 700px) {
  .navbar {
    display: block;
    width: 100vw;
    box-shadow: 0 1px 4px rgb(146 161 176 / 15%);
    transition: background 300ms ease;
    background: #c9c9c9c9;
  }
  .navbar.scrolled {
    background-color: #df9a10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    transition: background 300ms ease;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
  }
  .nav-widescreen  {
    display: none;
  }

  .navbar .menu-items {
    display: flex;
  }

  .navbar .nav-container li {
    list-style: none;
  }

  .navbar .nav-container a {
    text-decoration: none;
    color: #0e2431;
    font-weight: 500;
    font-size: 1.9rem;
    padding: 0.7rem;
    font-family: 'Skranji-reg';
    }
  }

  .navbar .nav-container a:hover{
      font-weight: bolder;
  }

  .nav-container {
    display: block;
    position: relative;
    height: 60px;
    --navbar-height: 80px;
    height: var(--navbar-height);
  }

  .nav-container .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }

  .nav-container .hamburger-lines {
    display: block;
    height: 21px;
    width: 32px;
    position: absolute;
    top: 26px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .nav-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0e2431;
  }

  .nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }

  .nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 120px;
    height: 100vh;
    width: 100vw;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    text-align: left;
    background: linear-gradient(153deg, rgb(255, 255, 255) 30%, rgb(97 225 222) 100%);
  }
  .nav-break {
    border: 2px solid #e6c9c9;
    width: 45vw;
    margin-bottom: 16px;
  }
  .menu-icon {
    display: inline;
    filter: grayscale(75%);
  }

  .navbar .menu-items li {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(10px);
  }

  .menu-items[data-open="true"] li {
    animation: fadeInUp 0.4s ease;
    animation-fill-mode: forwards; /* start from 0 opacity/10px */
    animation-delay: var(--delay);
  }

  .navbar-logo {
    position: absolute;
    top: 5px;
    right: 15px;
    height: var(--navbar-height);
    filter: grayscale(30%);
  }
  .navbar-logo img {
    display: block;
    height: 80%;
    width: auto;
  }

  .nav-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }

  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
    transform-origin: 13% -32%;
  }

  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }

  .nav-container input[type="checkbox"]:checked ~ .navbar-logo{
    display: none;
  }
  .logo {
    display: none;
  }
}

.nav-container input[type="checkbox"]:checked ~ .menu-items li {
  animation: fadeInUp 0.4s ease forwards;
  animation-delay: var(--delay);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}





/*
-------                -------
-------    home        -------
-------                -------
*/
section.top {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(rgb(255 255 255 / 64%), rgb(0 0 0)), url(../images/bg5.png) no-repeat center / cover;
  overflow: hidden;
  background-blend-mode: inherit;
  background-blend-mode: hue;
  background-size: cover;
  background-position: 45% -4%;
}
.l {
  text-align: left;
}
.r {
  text-align: right;
}
.top-content {
  position: absolute;
  bottom: 36vh;
  width: clamp(60vw, 70vw, 72vw);
  right: 5vw;
}
#background-video {
  position: absolute; /* Position the video inside the section */
  top: 57px;
  left: 0;
  width: 100%; /* Ensure the video covers the full width of the section */
  height: 100%; /* Ensure the video covers the full height of the section */
  object-fit: cover; /* Make the video cover the entire section (like background-size: cover) */
  object-position: 45% -4%; /* Position the video similarly to background-position */
  z-index: -1; /* Position video behind content */
  pointer-events: none; /* Ensure the video doesn’t interfere with content interaction */
}
.top-content h1 {
  font-size: 5rem;
  position: relative;
  background: linear-gradient(135deg, var(--orange-accent), #fbbf4b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Skranji-reg';
  letter-spacing: 2px;
  position: relative;
  text-align: right;
  line-height: 5.5rem;
  -webkit-text-stroke: 3px hsl(0deg 0% 0% / 86%);
}
.top-content .h1-widescreen {
  display: none;
}
@media (max-width: 450px) {
  .top-content h1 {
    font-size: 3.5rem;
  }
}

.location-gallery {
  display: block;
}
.location-gallery-mobile {
  display: none; block;
}
.top-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  text-align: right;
  bottom: -169px;
  z-index: 10;
}
.top-links a {
  padding: 20px 30px 20px 30px;
  background: var(--orange);
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
  color: #fbbf4b;
  font-family: 'Skranji-reg';
  letter-spacing: 2px;
  font-size: 2rem;
  text-shadow: 1px 2px 4px black;
  box-shadow: 0px 8px 3px -4px rgb(0 0 0 / 48%);
}
.top-down-arrow {
  position: absolute;
  bottom: 4vh;
  left: 50%; /* Move it to the horizontal center */
  transform: translateX(-50%); /* Offset the element's width by 50% to perfectly center */
  font-size: 2em;
  text-shadow: 0px 12px 0px hsl(96.36deg 25.3% 41.68% / 43%);
}

#mid-home {
  position: absolute;
  top: -82px;
}
section.bottom {
  padding-bottom: 250px;
  background: linear-gradient(0deg, #ffeac5 0%, #ffcd63 100%);
  position: relative;
}
.home-gallery {
  margin-top: 50px;
  margin-bottom: 150px;
}
.videoWrapper {
  padding-top: 100px;
}
.mid-down-arrow {
  position: absolute;
  bottom: 4vh;
  left: 50%; /* Move it to the horizontal center */
  transform: translateX(-50%); /* Offset the element's width by 50% to perfectly center */
  font-size: 2em;
  text-shadow: 0px 12px 0px hsl(96.36deg 25.3% 41.68% / 43%);
}
#bot-home {
  position: absolute;
  top: 0px;
}
section.bottom .fancy-card {
  padding-top: 118px;
}
.fancy-card-title-container {

}
section.bottom .fancy-card-icon {
  position: absolute;
}

/* input selects with slim-select.js */
.ss-main {
  background: var(--input-grey);
  color: #694f4f;
}









/*
-------                -------
-------    youtube     -------
-------                -------
*/
/* Wrapper for the video */
.videoWrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* Maintain 16:9 aspect ratio */
  overflow: hidden;
}

/* Video container */
.video-responsive {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* YouTube iframe */
.video-responsive iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


.reservation-page {
  background: var(--slate-grey) !important;
}


/*
-------                -------
-------    gallery     -------
-------                -------
*/
.home-gallery {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.gallery-container {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.home-gallery-pic {
  flex-shrink: 0; /* Prevents images from shrinking */
  width: 80%;    /* Adjust this value to control the size of each image */
  margin-right: 10px;  /* Space between images */
}

.home-gallery-pic img {
  width: 100%;      /* Makes the image fill the container's width */
  height: auto;     /* Maintains aspect ratio */
  object-fit: cover;  /* Ensures the image covers the container while maintaining its aspect ratio */
  border-radius: 25px;
}
.swiper-slide {
  max-height: calc(60vw - 50px);
  max-width: calc(60vw - 50px);
}
.swiper-slide img {
  width: 100%;
  display: block;
  height: auto;
}
.videoWrapper {
  width: 90vw;
}
.text-wide {
  display: none;
}
.sideNav {
  width: 140px;
}



/*
-------                -------
-------    desktop     -------
-------                -------
*/
#background-video-widescreen {
    display: none;
  }
#background-video-widescreen {
  position: absolute;
  top: 57px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: -1;
  pointer-events: none;
}


/*
-------                -------
-------    mid-size    -------
-------    desktop     -------
-------                -------
*/
@media (min-width: 700px) {
  .wrapper {
    /*background: linear-gradient(180deg, #fff7e6 0%, #ffd589 100%);*/
  }
  .videoWrapper-wide-screen {
    padding: 5%;
  }
  .videoWrapper {
    width: 100%;
  }
  .main_body {
    max-width: 80vw;
    margin: 0 auto;
  }
  #background-video-widescreen {
    display: block;
    object-fit: cover;
  }
  #background-video {
    display: none;
  }
  .nav-container {
    display: none;
  }
  .nav-widescreen {
    width: 100vw;
    background: linear-gradient(267deg, rgb(223 221 157 / 91%), rgb(255 254 212 / 87%));
    box-shadow: -1px 1px 11px 0px;
    background: url(../images/navBkg.png);
  }
  .nav-widescreen a {
    font-family: Antonio;
    color: black;
    font-size: clamp(0.5rem, 0.9vw + 0.8vh, 2rem);
    text-transform: uppercase;
    position: relative;
    top: 0px;
    text-align: center;
    font-weight: 700;
  }
  .active-page {
    color: #5555f9 !important;
    border: none;
    background: transparent;
  }
  .active-page::after {
    content: "";
    position: absolute;
    bottom: -4px; /* adjust as needed */
    left: 10%;
    width: 80%;
    height: 3px;
    background-color: #b9b9ce;
    border-radius: 2px;
  }
  .nav-reserve {
    border: 2px solid #b3b7c5;
    padding: 8px;
    border-radius: 9px;
    background: linear-gradient(309deg, rgb(182 181 125 / 61%), rgb(255 254 212 / 57%));
    /*background: linear-gradient(309deg, rgb(47 190 255 / 61%), rgb(255 254 212 / 57%));*/
  }
  .nav-widescreen .navbar-logo {
    position: relative;
    top: 0px;
    right: 0px;
    height: auto;
    filter: none;
  }
  .nav-widescreen .navbar-logo img {
    height: 66px;
  }
  .nav-widescreen-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 95vw;
    margin: 0 auto;
  }
  .mid {
    background: linear-gradient(180deg, #fff7e6 0%, #ffd589 100%);
  }
  .top-content {
    width: clamp(60vw, 80vw, 85vw);
  }
  .top-content h1 {
    display: none;
  }
  .top-content .h1-widescreen {
    display: block;
    line-height: clamp(5rem, 6rem, 7rem);
    font-size: clamp(4rem, 5rem, 6rem);
  }

}


/*
-------                -------
-------  wide-screen   -------
-------    desktop     -------
-------                -------
*/
@media (min-width: 1200px) {
  .top-content .h1-widescreen {
    display: block;
    line-height: clamp(6rem, 8rem, 9rem);
    font-size: clamp(6rem, 7rem, 8rem);
  }
  .nav-widescreen-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 85vw;
    margin: 0 auto;
  }
  .nav-widescreen .navbar-logo img {
    height: 100px;
    position: relative;
    top: -10px;
  }
  .swiper-slide {
    max-width: calc(37vw - 50px);
  }
  #background-video-widescreen {
    display: block;
    object-fit: fill;
  }
  .text-wide {
    display: inline;
  }
  .eligibility-image {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 25px 28px -14px black;
  }
  .active-page {
    /*color: #5555f9 !important;*/
    border: none;
    background: transparent;
    color: white !important;
    text-shadow: 1px 1px 4px black;
  }
  .active-page::after {
    content: "";
    position: absolute;
    bottom: -4px; /* adjust as needed */
    left: 10%;
    width: 80%;
    height: 3px;
    background-color: #b9b9ce;
    border-radius: 2px;
  }


}


@media (max-width: 600px) {
  .fancy-card-title-container {

  }
  .mid .fancy-card-icon {
    /*position: absolute;*/
  }
  .h3-with-icon {
    margin-left: 80px;
  }
  .fancy-title-holder {
    flex-direction: column;
  }
  .fancy-title-holder h3 {
    line-height: 50px;
  }
  .mid .fancy-card-icon {
    margin-bottom: 10px;
  }
  .fancy-card-title-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  section.bottom .fancy-card-icon {
    position: relative !important;
  }
  .fancy-card h3 {
    margin-left: 0px;
    font-size: 3rem;
    font-size: 2.5rem;
    line-height: 50px;
    margin-top: 5px;
  }
  .fancy-card h4 {
    font-size: 1rem;
    text-align: left;
    line-height: 21px;
    font-family: Arimo;
  }
  .fancy-card h4 a {
    font-weight: 900;
    text-shadow: 0px 0px 1px #bc0000ab;
  }
  .location1-full {
    flex-direction: column;
  }
  .mid-callout {
    width: 100%;
  }
  .input-item {
    width: 100%;
    max-width: 100%;
  }
  .input-item input {
    max-width: 100%;
    width: 100%;
    border-radius: 3px;
  }
  .fancy-card .h4--subtext {
    width: 100%;
    text-align: left;
  }
  .videoWrapper {
    width: 100%;
  }
  .fancy-rooms {
    width: 100%;
  }
  .fancy-textarea textarea {
    width: 100%;
  }
  .rates-open {
    height: auto;
  }
  .location--info {
    width: 98%;
  }
  .location-gallery {
    display: none !important;
  }
  .location-gallery-mobile {
    display: block;
  }
  .swiper-slide {
    max-height: calc(80vw - 50px);
    max-width: calc(80vw - 50px);
  }
  .top-content {
    width: 90vw;
  }
  .location2-left {
    width: 100%;
    padding: 0px;
  }
  .locationText {
    padding: 0px;
  }
  .hollywoodForm-submit-conditions {
    width: 100%;
  }
  .submit-item {
    margin-bottom: 100px;
  }
  .hollywood-res-top {
    margin-top: 0px;
    background-position: 61% top;
  }
  .fancy-card.info-card {
    border-radius: 0px;
    border: 0px solid;
    margin: 0px;
    padding: 15px;
  }
  .mid {
    text-align: left;
  }
  h1 {
    font-size: 29px;
    text-align: left;
    line-height: 38px;
    margin-top: 60px;
  }
  .footerFlex div h1 {
    font-family: "Barlow-Regular";
    font-size: 24px;
    margin: 0px;
    font-weight: 700;
    color: #e7e7e7;
    text-align: center;
  }
  .toursWrap {
    width: 98%;
    margin: 0 auto;
  }
  .tours1-left, .tours1-right,
  .tours2-left, .tours2-right,
  .tours3-left, .tours3-right,
  .tours4-left, .tours4-right,
  .tours5-left, .tours5-right,
  .tours6-left, .tours6-right,
  .tours7-left, .tours7-right,
  .tours8-left, .tours8-right,
  .tours9-left, .tours9-right {
    padding: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .hollywood-top {
    background-position: 78% top;
  }
  .pre-conditions ul {
    padding: 0px;
    padding-left: 9px;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .top-links a {
    font-size: 1.5rem;
    padding: 25px;
  }
}