.container {
    background: #F2F2F2;
}

/* Remove arrows in Chrome, Safari, Edge, Opera */
#guests::-webkit-outer-spin-button,
#guests::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.book-btn-mobile {
    display: none;
}

/* Remove arrows in Firefox */
#guests[type=number] {
  -moz-appearance: textfield;
}

/* Container */
.flatpickr-calendar {
  border-radius: 12px !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  border: none !important;
  width: 320px !important;
}

/* Month & year header */
.flatpickr-months {
  background: transparent !important;
  border-bottom: none !important;
  padding: 12px 0 8px 0 !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  color: #FF385C !important;
}

/* Weekday labels */
.flatpickr-weekday {
  font-weight: 600 !important;
  color: #777 !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

/* Day cells */
.flatpickr-day {
  border-radius: 8px !important;
  font-weight: 500 !important;
  color: #222 !important;
  transition: background-color 0.3s ease;
}

/* Today highlight border */
.flatpickr-day.today {
  border: 1.5px solid #FF385C !important;
  color: #FF385C !important;
}

/* Hover effect */
.flatpickr-day:hover {
  background: #ffe6eb !important; /* light pink hover */
  color: #FF385C !important;
}

/* Selected days & range */
.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange {
  background: #FF385C !important;
  color: white !important;
  box-shadow: none !important;
  border-radius: 8px !important;
}

/* Days inside selected range */
.flatpickr-day.inRange {
  background: #FF385C33 !important; /* semi-transparent pink */
  color: #FF385C !important;
  border-radius: 0 !important;
}

/* Disabled days */
.flatpickr-day.disabled {
  color: #ccc !important;
  cursor: not-allowed !important;
}

/* Month navigation arrows */
.flatpickr-prev-month, .flatpickr-next-month {
  color: #FF385C !important;
  font-size: 20px !important;
  top: 14px !important;
  transition: color 0.3s ease;
}

.flatpickr-prev-month:hover, .flatpickr-next-month:hover {
  color: #e02c4d !important;
}

/* Booking Input Field */
.booking-bar {
    display: flex;
    justify-content: center;
}

.booking-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 12px 20px;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    width: fit-content;
}

.booking-item {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #ddd;
}

.booking-item:last-of-type {
    border-right: none;
}

.booking-item label {
    font-weight: 600;
    font-size: 13px;
    color: #333;
    margin-bottom: 4px;
}

.booking-item input {
    font-size: 14px;
    border: none;
    outline: none;
    color: #333;
    width: 150px;
    background: transparent;
}

.booking-item input::placeholder {
    color: #999;
}

.booking-item input[type="date"] {
    cursor: pointer;
}

.booking-btn {
    background: #ff385c;
    border: none;
    outline: none;
    color: white;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 15px;
    transition: background 0.3s ease;
}

.booking-btn:hover {
    background: #e43150;
}

/* Material icons styling if needed */
.material-symbols-outlined {
    font-size: 24px;
}

/* Accomodations */
.accomodations {
    width: 100%;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
}

.introduction {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 40px;
}

.introduction-heading, 
.introduction-subheading {
    margin-bottom: 30px;
    width: 100%;
}

.introduction-heading h2 {
    font-size: clamp(22px, 5vw, 24px);
    font-family: var(--font-body);
    font-weight: 500;
    text-align: center;
}

.introduction-subheading h3 {
    font-size: clamp(18px, 2vw, 20px);
    font-family: var(--font-body-poppins);
    font-weight: 300;
    text-align: center;
}

.introduction-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.group-1 {
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 10px;
}

.group-2 {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 10px;
}

.introduction-gallery .images {
  display: flex;
  justify-content: center;
  align-items: center;
}

.introduction-gallery .images img {
  width: 280px;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
}

.images img.tall {
    height: 200px;
}


/* Our Rooms */

/* Dropdown Menu */
.room-dropdown-nav {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    gap: 8px;
    width: 100%;
    margin-bottom: 30px;
}

.show-label {
    font-size: 18px;
    font-family: var(--font-body-poppins);
    color: #333;
    font-weight: lighter;
}

.dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.room-dropdown {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    font-family: var(--font-body-poppins);
}

.dropdown-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #333;
    font-size: 12px;
}

/* Room Gallery */
.rooms-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin-bottom: 40px;
    border-bottom: 0.2px solid rgba(0,0,0,0.1);
    padding-bottom: 30px;
}

.rooms {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-template-rows: repeat(2, 1fr);    /* 2 rows */
    gap: 1rem; 
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.room-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; /* keeps consistent ratio */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.room-detail {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;            
    padding: 20px 25px;
    color: rgb(255, 255, 255, 0.8);             
    background: rgba(0,0,0,0.7);
    font-size: 1rem;
    text-align: start;     
    font-family: var(--font-body-poppins);
    font-size: 20px;
}

/* Zoom image slightly on hover */
.room-image:hover img {
    transform: scale(1.05);
}

/* Optional shadow on hover */
.room-image:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Footer */
.footer-container {
    padding-top: 50px !important; 
}
