/*====================================================================================================================header css start===============================================================================================================================================*/





 :root {
      --header-h: 80px;
    }

    body {
      font-family: 'Abhaya Libre', serif;
      margin: 0;
      padding: 0;
      padding-top: var(--header-h); /* content header ke neeche start hoga */
    }

    /* Header */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: var(--header-h);
      background: linear-gradient(90deg, #FFCA97 0%, rgba(255, 194, 136, 0.68) 100%);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      z-index: 9999;
    }

    /* Nav Container */
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      padding: 0 20px;
      opacity: 1px;
    }

    /* Logo */
    .nav-logo img {
      height: 79px;
      width: auto;
      transition: transform 0.3s ease;
    }

    .nav-logo:hover img {
      transform: scale(1.05);
    }

    /* Menu */
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .nav-list {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 30px;
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      color: #5e4530;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.3s ease;
      padding: 8px 12px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      gap: 5px;
      position: relative;
    }

    .nav-link:hover {
      color: #a03210;
      background: rgba(255, 154, 0, 0.1);
      transform: translateY(-1px);
    }

    .nav-link::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #ff9a00, #ff7a00);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .nav-link:hover::before {
      width: 80%;
    }

    /* Dropdown */
    .dropdown-arrow {
      font-size: 10px;
      transition: transform 0.3s ease;
    }

    .dropdown:hover .dropdown-arrow {
      transform: rotate(180deg);
    }

    .dropdown-menu {
      position: absolute;
      background: linear-gradient(135deg, #fff7f0 0%, #fff5e0 100%);
      border: 2px solid #ff9a00;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(255, 154, 0, 0.2);
      top: 100%;
      left: 0;
      min-width: 200px;
      z-index: 20;
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-item {
      padding: 12px 20px;
      display: block;
      color: #5e4530;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      border-radius: 8px;
      margin: 2px 8px;
    }

    .dropdown-item:hover {
      background: linear-gradient(135deg, #ff9a00 0%, #ff7a00 100%);
      color: #fff;
      transform: translateX(5px);
      box-shadow: 0 4px 12px rgba(255, 154, 0, 0.3);
    }

    /* Hamburger */
    .nav-toggle {
      display: none;
      flex-direction: column;
      background: none;
      border: none;
      cursor: pointer;
      gap: 4px;
    }

    .hamburger {
      width: 25px;
      height: 3px;
      background: #5e4530;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .nav-toggle.active .hamburger:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active .hamburger:nth-child(2) {
      opacity: 0;
    }
    .nav-toggle.active .hamburger:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* CTA Button */
    .btn-book {
      background: linear-gradient(135deg, #ff9a00 0%, #ff7a00 100%);
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      padding: 12px 28px;
      border-radius: 25px;
      border: 2px solid transparent;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 154, 0, 0.3);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .btn-book:hover {
      background: linear-gradient(135deg, #ff7a00 0%, #ff5a00 100%);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 154, 0, 0.4);
      border-color: #fff;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .nav-toggle {
        display: flex;
      }

      .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff7f0;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        display: none;
      }

      .nav-menu.active {
        display: flex;
      }

      .nav-list {
        flex-direction: column;
        width: 100%;
      }

      .nav-link {
        width: 100%;
        justify-content: center;
        padding: 15px;
        margin: 5px 0;
      }

      .dropdown-menu {
        position: static;
        background: rgba(255,154,0,0.1);
        border: none;
        box-shadow: none;
        margin-top: 10px;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
      }

      .btn-book {
        width: 100%;
        margin-top: 20px;
      }
    }
    
    
    
/*====================================================================================================================header css end===============================================================================================================================================*/





/*====================================================================================================================index css start================================================================================================================================================*/

