header {
    position: relative;
    background-color: transparent;
    border-bottom: none;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
    box-shadow: none;
    z-index: 3;
    font-family: "Devanagari Sangam MN", sans-serif; /* Tukar font */
}

.navbar-nav {
    gap: 30px; /* Tambah ruang antara item nav */
}

.navbar-nav .nav-link {
    font-family: "Devanagari Sangam MN", sans-serif;
    font-weight: 600;          /* Jadikan font lebih tebal */
    letter-spacing: 1px;       /* Lebarkan jarak huruf */
    text-transform: uppercase; /* Optional: huruf besar semua */
    font-size: 16px;
    color: white;
}


.navbar-nav .nav-link:hover {
    background: linear-gradient(127.88deg, #d59d59 -106.39%, #f8c077 25.85%, #dfae6d 143.76%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Firefox */
    color: transparent;
  }

@font-face {
    font-family: 'Herr Von Muellerhoff';
    src: url('/fonts/HerrVonMuellerhoff-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Cinzel';
    src: url('/fonts/Cinzel-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

.HerrVon-text {
    font-family: 'Herr Von Muellerhoff', cursive;
}

h1{
    font-family: 'Cinzel', serif !important;
    font-weight: 700;
    color: #F1C180;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  background: linear-gradient(127.88deg, #D5A76D -106.39%, #F4C381 25.85%, #DFAF71 143.76%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For Firefox */
  color: transparent;
}


.logo-box{
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 700px;
    max-width: 700px;
}

.center-horizontal{
    display: flex;
    justify-content: center;
}

.staytion_operator{
    display: flex;
    align-items: center;
    background-color: #EEE8D2;
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: 50vh;
    p{
        font-weight: 700;
    }
}

.brochure-section{
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: azure;
    min-height: 100vh;
    position: relative;

    .images {
        display: flat;
        margin-top:15%;
        height: 120vh;
    }
      
    .image {
          margin: 0;
          padding: 20px 0 20px 0;
          position: relative;
          width: 800px;
          height: 440px;
          display: flex;
          transform: translate(-50%, 0%);
    }
    .image1 {
        position: absolute;
        left:50%;
        top: 15%;
    }
    .image2 {
        position: absolute;
        left:50%;
        top: 55%;
    }
    .image div {
        height: 100%;
        width: 25%;
        background-size: cover;
        transition: .5s;
        box-shadow:inset 0 0 0 2000px rgba(0,0,0,0.3);
    }

    .image1 div{
        background-image: url("../img/251024-T-Journey-Leaflet-1.webp");
    }
      
    .image2 div {
        background-image:   url("../img/251024-T-Journey-Leaflet-2.webp");
    }
      
    .image:hover {
        cursor: pointer;
    }
      
    .image.active div:nth-child(odd) {
        transform: skewY(10deg);
        box-shadow: inset 20px 0px 50px rgba(0,0,0,.5);
    }
    .image.active div:nth-child(even) {
        transform: skewY(-10deg);
        box-shadow: inset 20px 0px 50px rgba(0,0,0,.5);
    }
    .image div:nth-child(1){
        background-position: 0;
    }
    .image div:nth-child(2){
        background-position: -200px;
        margin-left:-200px;
    }
    .image div:nth-child(3){
        background-position:-400px;
        margin-left:-200px;
    }
      .image div:nth-child(4){
        background-position: -600px;
        margin-left:-200px;
    } 
      
      
    .image.active div:nth-child(2){
        background-position:-200px;
        margin-left:0px;
    }
    .image.active div:nth-child(3){
        margin-left:0px;
        background-position: -400px;
    }
    .image.active div:nth-child(4){
        background-position: -600px;
        margin-left:0px;
    }
    .image.active .name {
        display: none;
    }
      
    .name {
        position: relative;
        margin-left: 4%;
        width: 25%;
        color: #fefefe;
        font-size: 40pt;
        font-weight: 600;
        transform: rotate(-90deg);
        font-family: sans-serif;
        text-transform: uppercase;
        text-shadow: 1px 1px #000000 
      }
}

.collection-section{
   
}
.the-edge-section{
    display: flex;
    justify-content: center;
    align-items: center;
    .edge-box{
        width: 300px;
        height: 250px;
        border: 1px solid black;
    }

    .edge-box-teblet{
        margin-top: 10px;
        margin-bottom: 10px;
        width: 100%;
        height: 100px;
        border: 1px solid black;
    }
}
table{
    border: 2px solid black;
    border-radius: 10px; /* Adjust radius as needed */
    border-collapse: separate; /* Allows the border-radius to show */
    overflow: hidden; /* Ensures rounded corners clip the content inside */
    tr{
        border: 2px solid black
    }
    td{
        border: 2px solid black;
        padding: 10px;
        background-color: white;
    }
    .rowhead{
        background-color: #EEE8D2;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.to-top{
    position: fixed;
    bottom: 5%;
    right: 5%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1000;

    .circle-button{
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgb(197, 146, 7);
    }
    .circle-button:hover{
        cursor: pointer;
    }
}

.to-top.show {
    opacity: 1;
    visibility: visible;
  }
#hero, #about-us, #explore-stays, #snapshot, #collection, #the-edge {
    position: relative;
}

#hero, #about-us, #explore-stays, #snapshot, #collection, #the-edge {
    position: relative;
    width: 100%;
    height: 50% !important;

    img {
        object-fit: cover;
        object-position: bottom;
        width: auto;
    }
}

.registration-section {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
  }
  
  .registration-section h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 6vw;
    color: #F1C180;
  }
  .form-group {
    margin-bottom: 15px;
    position: relative;
  }
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid rgb(197, 146, 7);
    border-radius: 5px;
    background: transparent;
    outline: none;
  }
  .form-group select {
    appearance: none;
    background: #f9f9f9;
  }
  .form-row {
    display: flex;
    gap: 15px;
  }
  .col-6 {
    flex: 1;
  }
  .form-group button {
    background: linear-gradient(127.88deg, #D5A76D -106.39%, #F4C381 25.85%, #DFAF71 143.76%);
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    color: white;
  }
  .form-group button:hover {
    background: linear-gradient(127.88deg, #f0a64d -106.39%, #ffb95e 25.85%, #e9b26b 143.76%);
  }

  .checkbox-container input[type="checkbox"] {
    width: auto!important;
    padding: 10px;
    border: 1px solid rgb(197, 146, 7);
    border-radius: 5px;
    background: transparent;
    outline: none;
  }
  .checkbox-container label {
    display: block !important;
    position:  static !important;
    font-size: 12px;
    color: #555;
  }

  .checkbox-container {
    display: flex;
    align-items: start;
  }
  
  .checkbox-container input[type="checkbox"] {
    margin-right: 10px; /* Adjust the spacing between the checkbox and label */
    margin-top: 3px;  /* Ensure checkbox aligns nicely with the label */
  }

  .checkbox-container input[type="checkbox"]:invalid {
    border-color: red;
  }