  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

  :root {
      --primary-color: #503532;
      --accent-color: #a05a4e;
      --bg-light: #fdfaf7;
      --text-dark: #3a2e2d;
  }


  body {
      background-color: var(--bg-light);
      color: var(--text-dark);
      font-family: 'Montserrat', sans-serif;
      background: url('../images/bg.jpg') no-repeat center top #D9DFD1;
      background-size: contain
  }

  .bg-primary-hotel {
      background-color: var(--primary-color) !important;
  }

  .btn-hotel {
      background-color: var(--primary-color);
      color: white;
      border: none;
      transition: all 0.3s ease;
  }

  .btn-hotel:hover {
      background-color: var(--accent-color);
      color: white;
  }

  .navbar-brand {
      width: 230px;
      height: 100px;
      position: relative;
      margin-left: 15px;
  }

  .navbar-expand-lg .navbar-collapse {
      margin-top: -82px;
  }

  .navbar-brand img {
      position: absolute;
      top: 0px;
      max-height: 100px;
  }


  .navbar-dark .navbar-nav .nav-link {
      color: rgba(255, 255, 255, 0.85);
      font-weight: 500;
      font-size: 14px;
      padding: 8px 12px;
      border-radius: 30px;
  }

  .navbar-dark .navbar-nav .nav-link:hover {
      background-color: #253A04;
      color: #fff;
  }

  .hero-section {
      background-color: #fff;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      border-radius: 8px;
      overflow: hidden;
  }

  .reservation-card {
      background-color: #eee;
      border: 1px solid rgba(80, 53, 50, 0.1);
      border-radius: 8px;
      padding: 20px;
  }

  .seg-main {
      width: 100%;
      background: #fff;
      padding: 30px;
      border-radius: 5px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
      box-sizing: border-box;
      overflow: hidden;
  }

  footer {
      background-color: #253A04;
      color: #fff;
  }

  footer .bw {
      border-color: #ffffff67 !important;

  }

  footer a {
      color: #fff;
      text-decoration: none;
      transition: color 0.2s;
  }

  footer .list-inline-item a {
      color: #fff;
      font-size: 14px;
      padding: 0 8px;
  }


  footer a:hover {
      color: #fff;
  }

  /* Cookie box */
  .box-cookies {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(80, 53, 50, 0.95);
      color: white;
      padding: 15px 25px;
      border-radius: 30px;
      z-index: 9999;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      gap: 15px;
      max-width: 90%;
  }

  .box-cookies.hide {
      display: none !important;
  }

  /* WhatsApp Floating Button */
  .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 40px;
      right: 40px;
      background-color: #25d366;
      color: #FFF;
      border-radius: 50px;
      text-align: center;
      font-size: 30px;
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .whatsapp-float:hover {
      background-color: #20ba5a;
      color: #FFF;
      transform: scale(1.1);
  }

  .breadcrumb {
      font-size: 13px;
  }

  .inst-text {
      font-size: 1.05rem;
      line-height: 1.7;
      color: #4a3e3d;
      text-align: justify;
  }

  .inst-img {
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
  }

  .inst-img:hover {
      transform: scale(1.02);
  }

  @media (max-width: 1024px) {
      .navbar-brand img {
          position: relative
      }

      .navbar-expand-lg .navbar-collapse {
          margin-top: 30px;

          background: #ffffffe3;
          backdrop-filter: blur(6px);
          width: 100%;
          float: left;
          padding: 30px;
          border-radius: 15px;
          text-align: center;
      }

      .navbar-dark .navbar-nav .nav-link {
          color: #000;
      }

      .navbar-toggler {
          background-color: #253A04;
          border: none;
          padding: 5px;
          color: #fff;
      }

      .navbar-expand-lg .text-white {
          color: #000 !important;
      }
  }

  @media (max-width: 768px) {
      .navbar-brand img {
          height: 50px;
      }
  }