#headr{
    padding-top:12rem;
}
.roomshead{
    margin-bottom:2rem;
    background-color: #1c1c1c;
}
@media(max-width:768px){
    #headr{
        padding-top:2rem;
    }
    #titlespac{
        margin-top:-4rem;
    }
    .landvideo{
        object-fit: cover;
        width: 72vh;
        height: 100vh;
    }
    
}
@media(min-width:769px){
    .roomshead{
        margin-bottom:10rem;
        background-color: #1c1c1c;
        
    }
    #breadcrumbroom{
        margin-top:0rem;
    }


}
.foothead{
    margin-top:1rem;
    letter-spacing: 1px;
    font-family: Marcellus;
}
.footsub{
    font-size: 14px;
    letter-spacing: 1px;
    margin-top:-.5rem;
    margin-bottom:4rem;
}

.eventvid{
    width: 100%;
}
.eventsmap{
    width: 100%;
}
.slick-slider {
    touch-action: auto;
    -ms-touch-action: auto;
    }
.owl-item{
    touch-action: auto !important;
}
#explorep{
    font-size: 16px;
}
address{
    font-family: Raleway;
}
.jm{
    font-family: Jost;
    font-weight: 700;
    letter-spacing: 0px;
}
.imgcar{
    width: 400px !important;
    align-self: center;
}
.aboutp{
    font-weight: 200 !important;
}
html p{
    font-family: Raleway !important;
}

/* Reservation Form Modal Styles */
#reservationModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
  }
  
  .arcticmodal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
  }
  
  .arcticmodal-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
  }
  
  .reservation-form-modal {
    background: #fff;
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .reservation-form-container {
    padding: 30px;
  }
  
  .reservation-form-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    z-index: 10002;
  }
  
  .reservation-form-close:hover {
    color: #8a615b; /* Updated to match the site's default color */
  }
  
  .reservation-form-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .reservation-form-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-family: 'Marcellus', serif;
    color: #8a615b; /* Updated to match the site's default color */
    text-transform: none;
    letter-spacing: 0.5px;
  }
  
  .reservation-form-header p {
    color: #777;
    font-size: 15px;
    line-height: 1.5;
    font-family: 'Jost', sans-serif;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-row {
    display: flex;
    gap: 15px;
  }
  
  .form-group.half {
    width: 50%;
  }
  
  .reservation-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
    color: #444;
    font-size: 15px;
  }
  
  .reservation-form input, 
  .reservation-form select, 
  .reservation-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease;
    background-color: #f9f9f9;
  }
  
  .reservation-form input:focus, 
  .reservation-form select:focus, 
  .reservation-form textarea:focus {
    outline: none;
    border-color: #8a615b;
    box-shadow: 0 0 3px rgba(184, 121, 70, 0.2);
  }
  
  .form-footer {
    text-align: center;
    margin-top: 30px;
  }
  
  .reservation-form .milenia-btn {
    padding: 12px 30px;
    transition: all 0.3s ease;
  }
  
  /* Make the modal responsive */
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
    }
    
    .form-group.half {
      width: 100%;
    }
    
    .date-fields-container {
      flex-direction: column;
      gap: 20px;
    }
    
    .reservation-form-container {
      padding: 20px;
    }
    
    .reservation-form-modal {
      width: 95%;
      max-height: 80vh;
    }
  }
  
  /* Date fields container */
  .date-fields-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .date-field {
    flex: 1;
  }
  
  .date-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
    color: #444;
    font-size: 15px;
  }
  
  .date-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease;
    background-color: #f9f9f9;
  }
  
  .date-field input:focus {
    outline: none;
    border-color: #8a615b;
    box-shadow: 0 0 3px rgba(184, 121, 70, 0.2);
  }
  
  /* Additional button styling */
  .submit-reservation-btn {
    background-color: #8a615b; /* Updated to match the site's default button color */
    color: white;
    border: none;
    padding: 12px 25px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 4px;
  }
  
  .submit-reservation-btn:hover {
    background-color: #a56a3b; /* Darker shade for hover state */
  }
