:root{
  --teal: #2D6A4F;
  --teal_hover: #2D6A4F;
}

*{
  font-family: 'Lato', sans-serif;
}
.h-font{
  font-family: 'Merriweather', serif;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.custom-bg{
  background-color: var(--teal);
  border: 1px solid var(--teal);
}
.custom-bg:hover{
  background-color: var(--teal_hover);
  border-color: var(--teal_hover);
}

.h-line{
  width: 150px;
  margin: 0 auto;
  height: 1.7px;
}

.custom-alert{
  position: fixed;
  top: 80px;
  right: 25px;
  z-index: 1111;
}

/* 
Color pallete: Eco-Friendly Stay

•	Primary: Forest green (#2D6A4F)
•	Secondary: Light moss green (#B7E4C7)
•	Accent: Cream (#FFF8E1)
•	Background: Earthy tan (#DDA15E)
*/


/* --- Nâng cấp font chữ và màu sắc --- */
    body.bg-light {
  background: linear-gradient(135deg, #e6f0ff 0%, #ffffff 100%);
    color: #2c3e50;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

/* Tiêu đề */
    h2, h3, h5 {
  font-family: 'Merriweather', serif;
    color: #004080;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 64, 128, 0.15);
}

/* Navbar */
#nav-bar {
    background: #ffffffcc !important;
    backdrop-filter: saturate(180%) blur(15px);
    box-shadow: 0 4px 15px rgba(0, 64, 128, 0.1);
    transition: background-color 0.3s ease;
}

#nav-bar .navbar-brand {
    color: #004080 !important;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

#nav-bar .navbar-brand:hover {
  color: #007bff !important;
}

#nav-bar .nav-link {
    color: #004080 !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

#nav-bar .nav-link.active,
#nav-bar .nav-link:hover {
  color: #007bff !important;
    text-decoration: underline;
}

/* Buttons */
.btn-outline-dark {
    border-color: #004080;
    color: #004080;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 64, 128, 0.15);
}

.btn-outline-dark:hover {
  background: #004080;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
    transform: translateY(-3px);
}

/* Custom background button */
.custom-bg {
    background: linear-gradient(45deg, #004080, #007bff);
    border: none;
    color: white !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.5);
    transition: all 0.4s ease;
}

.custom-bg:hover {
  background: linear-gradient(45deg, #007bff, #004080);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.7);
    transform: translateY(-4px);
    color: #e0eaff !important;
}

/* Cards */
.card {
    border-radius: 20px !important;
    box-shadow: 0 15px 30px rgba(0, 64, 128, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.card:hover {
  transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 64, 128, 0.2) !important;
}

/* Card titles */
.card
    h5 {
  font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #003366;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

/* Card price */
.card
    h6 {
  color: #007bff;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Badges */
.badge.bg-light.text-dark {
    background: #f0f4ff !important;
    color: #004080 !important;
    font-weight: 600;
    border-radius: 15px;
    padding: 0.4em 0.9em;
    box-shadow: 0 2px 6px rgba(0, 64, 128, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.badge.bg-light.text-dark:hover {
  background-color: #007bff !important;
    color: #fff !important;
    cursor: default;
}

/* Availability form */
.availability-form .bg-white {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 64, 128, 0.1);
    padding: 2rem 2.5rem !important;
    transition: box-shadow 0.3s ease;
}

.availability-form .bg-white:hover {
  box-shadow: 0 25px 50px rgba(0, 64, 128, 0.2);
}

.availability-form
    label {
  font-weight: 600;
    color: #004080;
}

/* Form controls */
.form-control, .form-select {
    border-radius: 12px;
    border: 1.5px solid #cbd5e1;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.4);
    outline: none;
}

/* Modal headers */
.modal-header {
    background: #004080;
    color: white;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    letter-spacing: 1.5px;
}

/* Modal close button */
.btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.btn-close:hover {
  opacity: 1;
}

/* Footer */
.container-fluid.bg-white {
    background: #f0f4ff;
    color: #004080;
    font-family: 'Lato', sans-serif;
    padding: 3rem 2rem;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 20px rgba(0, 64, 128, 0.1);
}

.container-fluid.bg-white
    h3,
.container-fluid.bg-white h5 {
  font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #003366;
}

.container-fluid.bg-white
    a {
  color: #004080;
    font-weight: 600;
    transition: color 0.3s ease;
}

.container-fluid.bg-white
    a:hover {
  color: #007bff;
    text-decoration: underline;
}

/* Bottom copyright */
    h6.text-center.bg-dark.text-white {
  background: #003366 !important;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 1rem 0 !important;
    margin: 0 !important;
}
.facilities.mb-4 {
    min-height: 85px;
}


a.d-inline-block.text-dark.text-center {
    width: 100%;
}

/* Responsive tweaks */
    @media (max-width: 768px) {
  .availability-form .bg-white {
    padding: 1.5rem 1.8rem !important;
  }

  .card {
    max-width: 100% !important;
  }

  #nav-bar .navbar-brand {
    font-size: 1.5rem;
  }

  h2, h3, h5 {
    font-size: 1.5rem;
  }
}
    @media (max-width: 480px) {
  .btn-outline-dark, .custom-bg {
    width: 100%;
    padding: 0.7rem 0 !important;
  }

  .availability-form {
    margin-top: 20px !important;
    padding: 0 20px !important;
  }
};





.contact-page  .mt-3 {
    margin-top: 0px !important;
}
/* Container chính */
.contact-page .container {
  background: #fff;
  margin: 40px auto;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Tiêu đề */
.contact-page h1, .contact-page h2 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

/* Form */
.contact-page form {
  display: flex;
  flex-direction: column;
}

/* Label */
.contact-page label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #34495e;
}

/* Input, textarea */
.contact-page input[type="text"],
.contact-page input[type="email"],
.contact-page textarea {
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.contact-page input[type="text"]:focus,
.contact-page input[type="email"]:focus,
.contact-page textarea:focus {
  border-color: #2980b9;
  outline: none;
  box-shadow: 0 0 8px rgba(41, 128, 185, 0.3);
}

/* Textarea */
.contact-page textarea {
  resize: vertical;
  min-height: 120px;
}

/* Nút gửi */
.contact-page button[type="submit"] {
  background-color: #2980b9;
  color: white;
  padding: 10px 0;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.contact-page button[type="submit"]:hover {
  background-color: #1c5980;
}

/* Thông tin liên hệ bên cạnh (nếu có) */
.contact-page .contact-info {
  margin-top: 30px;
  font-size: 16px;
  color: #555;
}

.contact-page .contact-info p {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-page .container {
    margin: 20px;
    padding: 20px;
  }
}
.map {
    margin-bottom: 40px;
}

.about-us .w-100 {
    height: 500px;
    object-fit: cover;
}

img.card-img-top {
    min-height: 245px;
    object-fit: cover;
}