:root{
      --bg: #0b1220;
      --paper: #ffffff;
      --muted: #667085;
      --text: #101828;
      --brand: #0f3d2e;      /* deep green */
      --brand2: #c8a24d;     /* gold */
      --line: rgba(16,24,40,.10);
      --shadow: 0 10px 30px rgba(16,24,40,.10);
      --radius: 18px;
      --radius2: 24px;
      --max: 1120px;
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      color: var(--text);
      line-height: 1.5;
    }

    a{ color:inherit; text-decoration:none; }
    img{ max-width:100%; display:block; }

    .container{ width:min(var(--max), calc(100% - 40px)); margin-inline:auto; }

    /* Header */
    .header{
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(10px);
      background: rgba(247,248,251,.75);
      border-bottom: 1px solid var(--line);
    }

    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 14px;
      padding: 12px 0;
    }

    .brand{
      display:flex;
      align-items:center;
      gap: 12px;
      min-width: 220px;
	  position:relative;
    }

    .logo{
      width: 44px;
      height: 44px;
      border-radius: 12px;
      overflow:hidden;
      background: linear-gradient(135deg, rgba(15,61,46,.12), rgba(200,162,77,.18));
      border: 1px solid rgba(15,61,46,.16);
      display:grid;
      place-items:center;
      font-weight: 800;
      color: var(--brand);
      letter-spacing: .5px;
    }

    .brand h1{
      margin:0;
      font-size: 14px;
      line-height: 1.1;
      letter-spacing: .3px;
    }
	
	.brand h1 img{
		position: absolute;
		top: -46px;
	}
	
    .brand .sub{
      margin-top:2px;
      font-size: 12px;
      color: var(--muted);
      font-weight: 600;
    }

    .menu{
      display:flex;
      align-items:center;
      gap: 18px;
    }

    .menu a{
      font-weight: 650;
      color: rgba(16,24,40,.85);
      padding: 10px 10px;
      border-radius: 12px;
    }

    .menu a:hover{ background: rgba(15,61,46,.06); }

    .cta{
      display:flex;
      align-items:center;
      gap: 10px;
      min-width: 160px;
      justify-content:flex-end;
    }

    .btn{
      border: 1px solid rgba(15,61,46,.18);
      background: #fff;
      color: var(--brand);
      padding: 10px 14px;
      border-radius: 999px;
      font-weight: 750;
      box-shadow: 0 6px 18px rgba(16,24,40,.06);
      cursor:pointer;
      transition: transform .12s ease, box-shadow .12s ease;
      display:inline-flex;
      align-items:center;
      gap: 10px;
      white-space: nowrap;
    }
    .btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 22px rgba(16,24,40,.10); }
    .btn.primary{
      background: linear-gradient(135deg, var(--brand), #155741);
      color: #fff;
      border-color: rgba(15,61,46,.25);
    }

    .hamburger{
      display:none;
      border: 1px solid rgba(16,24,40,.12);
      background: #fff;
      border-radius: 14px;
      padding: 10px 12px;
      cursor:pointer;
      box-shadow: 0 6px 18px rgba(16,24,40,.06);
    }
    .hamburger span{
      display:block;
      width: 22px;
      height: 2px;
      background: rgba(16,24,40,.8);
      margin: 4px 0;
      border-radius: 2px;
    }

    .mobile-panel{
      display:none;
      padding-bottom: 12px;
    }
	
	/* Make sure hidden always wins */
.mobile-panel[hidden]{
  display: none !important;
}

    .mobile-panel a{
      display:block;
      padding: 12px 12px;
      border-radius: 14px;
      font-weight: 700;
    }
    .mobile-panel a:hover{ background: rgba(15,61,46,.06); }

    /* Hero slider */
    .hero{
      padding: 35px 0 50px;
	  background:
        radial-gradient(1200px 600px at 50% -10%, rgba(200,162,77,.20), transparent 60%),
        radial-gradient(900px 500px at 10% 10%, rgba(15,61,46,.18), transparent 55%),
        #f7f8fb;
    }

    .slider{
      position: relative;
      border-radius: var(--radius2);
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid rgba(16,24,40,.10);
      background: #000;
      min-height: 420px;
    }

    .slides{
      display:flex;
      width: 300%;
      height: 100%;
      transition: transform .5s ease;
    }

    .slide{
      width: 100%;
      min-width: 100%;
      position: relative;
      display:grid;
      place-items: stretch;
    }

    /* Replace these backgrounds with your own images */
    .slide.bg1{ background: linear-gradient(120deg, rgba(15,61,46,.92), rgba(200,162,77,.25)), url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1800&q=70'); background-size: cover; background-position: center; }
    .slide.bg2{ background: linear-gradient(120deg, rgba(15,61,46,.88), rgba(200,162,77,.22)), url('https://images.unsplash.com/photo-1482192505345-5655af888cc4?auto=format&fit=crop&w=1800&q=70'); background-size: cover; background-position: center; }
    .slide.bg3{ background: linear-gradient(120deg, rgba(15,61,46,.90), rgba(200,162,77,.18)), url('https://images.unsplash.com/photo-1548013146-72479768bada?auto=format&fit=crop&w=1800&q=70'); background-size: cover; background-position: center; }

    .overlay{
      display:flex;
      align-items:flex-end;
      padding: 34px;
      background: radial-gradient(700px 340px at 20% 70%, rgba(0,0,0,.32), transparent 60%);
      min-height: 420px;
    }

    .hero-card{
      max-width: 620px;
      color:#fff;
      background: rgba(0,0,0,.28);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 22px;
      padding: 22px 22px;
      backdrop-filter: blur(10px);
    }
    .kicker{
      display:inline-flex;
      gap:10px;
      align-items:center;
      font-weight: 800;
      letter-spacing: .5px;
      color: rgba(255,255,255,.92);
      background: rgba(200,162,77,.18);
      border: 1px solid rgba(200,162,77,.35);
      padding: 8px 12px;
      border-radius: 999px;
      margin-bottom: 12px;
      font-size: 12px;
    }
    .hero-card h2{
      margin: 0 0 10px;
      font-size: clamp(24px, 3.2vw, 40px);
      line-height: 1.12;
      letter-spacing: .2px;
    }
    .hero-card p{
      margin: 0 0 16px;
      color: rgba(255,255,255,.88);
      font-weight: 600;
    }
    .hero-actions{
      display:flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .slider-controls{
      position:absolute;
      inset: 0;
      pointer-events:none;
    }

    .arrow{
      pointer-events:auto;
      position:absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.20);
      background: rgba(0,0,0,.28);
      color:#fff;
      display:grid;
      place-items:center;
      cursor:pointer;
      backdrop-filter: blur(8px);
    }
    .arrow:hover{ background: rgba(0,0,0,.40); }
    .arrow.left{ left: 14px; }
    .arrow.right{ right: 14px; }

    .dots{
      pointer-events:auto;
      position:absolute;
      left: 0;
      right: 0;
      bottom: 14px;
      display:flex;
      justify-content:center;
      gap: 8px;
    }
    .dot{
      width: 9px;
      height: 9px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.35);
      background: rgba(255,255,255,.18);
      cursor:pointer;
    }
    .dot.active{
      background: rgba(255,255,255,.9);
      border-color: rgba(255,255,255,.9);
    }

    /* Sections */
    section{ padding: 70px 0; 
	  background:
        radial-gradient(1200px 600px at 50% -10%, rgba(200,162,77,.20), transparent 60%),
        radial-gradient(900px 500px at 10% 10%, rgba(15,61,46,.18), transparent 55%),
        #f7f8fb;}
    .section-title{
      text-align:center;
      margin-bottom: 22px;
    }
    .section-title h3{
      margin:0;
      font-size: 28px;
      letter-spacing: .2px;
    }
    .section-title p{
      margin: 30px auto 0;
      max-width: 950px;
          color: #3c4250;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    }

    /* Hotel cards */
    .grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .card{
      background: rgba(255,255,255,.86);
      border: 1px solid rgba(16,24,40,.10);
      border-radius: var(--radius);
      overflow:hidden;
      box-shadow: 0 10px 22px rgba(16,24,40,.06);
      display:flex;
      flex-direction:column;
      min-height: 360px;
    }

    .card-media{
      height: 170px;
      background: #e6ebf2;
    }
    .card-media.one{ background-image: url('/images/The_Pong_Eco_Village_1400x933.jpg?auto=format&fit=crop&w=1400&q=70'); background-size: cover; background-position: center; }
    .card-media.two{ background-image: url('/images/hotelapplepie_1400x933.jpg?auto=format&fit=crop&w=1400&q=70'); background-size: cover; background-position: center; }
    .card-media.three{ background-image: url('/images/Kaza_Spiti_1400x933.jpg?auto=format&fit=crop&w=1400&q=70'); background-size: cover; background-position: center; }

    .card-body{
      padding: 16px 16px 14px;
      display:flex;
      flex-direction:column;
      gap: 10px;
      flex:1;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      font-size: 12px;
      font-weight: 800;
      color: var(--brand);
      background: rgba(15,61,46,.08);
      border: 1px solid rgba(15,61,46,.14);
      padding: 6px 10px;
      border-radius: 999px;
      width: fit-content;
    }
    .card h4{
      margin:0;
      font-size: 18px;
      letter-spacing: .2px;
    }
    .meta{
      color: var(--muted);
      font-weight: 650;
      font-size: 13px;
    }
    .card p{
      margin:0;
      color: rgba(16,24,40,.78);
      font-weight: 600;
      font-size: 14px;
    }
    .card-footer{
      padding: 0 16px 16px;
      display:flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    /* Book Now form */
    .form-wrap{
      background: rgba(255,255,255,.90);
      border: 1px solid rgba(16,24,40,.10);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      padding: 18px;
    }

    form{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px;
      align-items:end;
    }

    .field{
      display:flex;
      flex-direction:column;
      gap: 6px;
    }
    label{
      font-size: 13px;
      font-weight: 750;
      color: rgba(16,24,40,.85);
    }
    input, select, textarea{
      width:100%;
      padding: 12px 12px;
      border-radius: 14px;
      border: 1px solid rgba(16,24,40,.14);
      background: #fff;
      outline:none;
      font-size: 14px;
      font-weight: 600;
    }
    textarea{
      min-height: 110px;
      resize: vertical;
    }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(15,61,46,.45);
      box-shadow: 0 0 0 4px rgba(15,61,46,.10);
    }

    .full{ grid-column: 1 / -1; }
    .actions{
      grid-column: 1 / -1;
      display:flex;
      justify-content:flex-end;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 4px;
    }
    .hint{
      grid-column: 1 / -1;
      font-size: 13px;
      color: var(--muted);
      font-weight: 600;
      margin-top: 2px;
    }

    .toast{
      display:none;
      margin-top: 12px;
      padding: 12px 14px;
      border-radius: 14px;
      font-weight: 750;
      border: 1px solid rgba(16,24,40,.12);
      background: #fff;
    }
    .toast.ok{
      display:block;
      border-color: rgba(15,61,46,.18);
      background: rgba(15,61,46,.06);
      color: var(--brand);
    }
    .toast.err{
      display:block;
      border-color: rgba(217,45,32,.25);
      background: rgba(217,45,32,.06);
      color: #b42318;
    }

    /* Footer */
    footer{
      padding: 26px 0;
      border-top: 1px solid var(--line);
      background: rgba(255,255,255,.65);
    }
    .footer-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      flex-wrap: wrap;
      color: rgba(16,24,40,.70);
      font-weight: 650;
      font-size: 13px;
    }

    /* Responsive */
    @media (max-width: 980px){
      .grid{ grid-template-columns: 1fr; }
      .card{ min-height: unset; }
      form{ grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 780px){
      .menu, .cta{ display:none; }
      .hamburger{ display:inline-block; }
      .mobile-panel{ display:none; padding-top:125px; }
.mobile-panel:not([hidden]){ display:block; }
      .overlay{ padding: 18px; }
      .hero-card{ padding: 16px; }
      .slider{ min-height: 380px; }
      .overlay{ min-height: 380px; }
    }

    @media (max-width: 560px){
      form{ grid-template-columns: 1fr; }
      .arrow{ display:none; } /* keep it clean on small screens */
      .brand{ }
    }
	
	
	
	.gallery-slider{
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #000;
  isolation: isolate; /* ensures overlay stacks correctly */
}

.gallery-viewport{ overflow: hidden; }

.gallery-track{
  display: flex;
  transition: transform .45s ease;
}

.gallery-slide{
  flex: 0 0 100%;
  width: 100%;
}

.gallery-slide img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* overlay layer pinned to slider */
.gallery-ui{
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none; /* lets image be selectable if needed */
}

/* arrows */
.gallery-arrow{
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.gallery-arrow:hover{ background: rgba(0,0,0,.65); }
.gallery-arrow.left{ left: 12px; }
.gallery-arrow.right{ right: 12px; }

/* dots pinned to bottom center */
.gallery-dots{
  pointer-events: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.gallery-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.30);
  border: 1px solid rgba(255,255,255,.45);
  cursor: pointer;
}

.gallery-dot.active{
  background: rgba(255,255,255,.95);
  border-color: rgba(255,255,255,.95);
}