/* =========================================================
   Hotel Sai Shree Shirdi — Global Styles (Sky Blue, Red, White)
   File: assets/css/style.css
   ========================================================= */

/* -------- CSS Variables (Theme) -------- */
:root{
  --sky-50:#F2FAFF;
  --sky-100:#DFF4FF;
  --sky-200:#BFEAFF;
  --sky-300:#8EDBFF;
  --sky-500:#2FB6FF;
  --sky-700:#0A79B8;

  --red-500:#E53935;
  --red-700:#B71C1C;

  --white:#ffffff;
  --ink:#0F172A;
  --muted:#475569;
  --border:#E2E8F0;
  --shadow: 0 14px 30px rgba(2, 8, 23, .10);
  --shadow-soft: 0 10px 22px rgba(2, 8, 23, .08);

  --radius: 16px;
  --radius-sm: 12px;
  --max: 1160px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

/* -------- Reset -------- */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--ink);
  background:
    radial-gradient(1200px 600px at 20% -10%, var(--sky-100), transparent 60%),
    radial-gradient(1200px 700px at 80% 0%, rgba(229,57,53,.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  line-height:1.55;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button, input, textarea, select{ font:inherit; }

/* -------- Layout Helpers -------- */
.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}
.section{
  padding: 64px 0;
}
.section-sm{
  padding: 40px 0;
}
.card{
  background: var(--white);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.card-pad{ padding: 22px; }
.grid{
  display:grid;
  gap:18px;
}
.grid-2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px){
  .grid-2,.grid-3{ grid-template-columns: 1fr; }
}

/* -------- Typography -------- */
.kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-weight:700;
  font-size: 13px;
  color: var(--sky-700);
  background: rgba(47,182,255,.12);
  border:1px solid rgba(47,182,255,.25);
  padding: 8px 12px;
  border-radius: 999px;
}
.h1{
  font-size: clamp(30px, 3.2vw, 44px);
  line-height:1.15;
  margin: 14px 0 10px;
  letter-spacing:-.02em;
}
.h2{
  font-size: clamp(20px, 2.2vw, 28px);
  line-height:1.2;
  margin: 0 0 10px;
  letter-spacing:-.01em;
}
.lead{
  color: var(--muted);
  font-size: 16.5px;
  max-width: 78ch;
}
.muted{ color: var(--muted); }
.small{ font-size: 13.5px; color: var(--muted); }

/* -------- Buttons -------- */
.btn-row{ display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: linear-gradient(135deg, var(--sky-500), var(--sky-700));
  color: var(--white);
  box-shadow: 0 12px 22px rgba(47,182,255,.25);
}
.btn-primary:hover{ box-shadow: 0 16px 28px rgba(47,182,255,.30); }

.btn-secondary{
  background: rgba(229,57,53,.10);
  color: var(--red-700);
  border-color: rgba(229,57,53,.25);
}
.btn-secondary:hover{ background: rgba(229,57,53,.14); }

.btn-outline{
  background: var(--white);
  border-color: var(--border);
  color: var(--ink);
}
.btn-outline:hover{ box-shadow: var(--shadow-soft); }

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
  font-weight: 700;
  font-size: 13px;
}

/* -------- Header / Nav -------- */
.topbar{
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
  gap: 14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 200px;
}
.brand-logo{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 30% 30%, var(--sky-200), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(229,57,53,.22), transparent 55%),
    #fff;
  overflow:hidden;
}
.brand-title{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-title strong{ font-size: 15.5px; }
.brand-title span{ font-size: 12.5px; color: var(--muted); }

.nav{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 16px;
  align-items:center;
  justify-content:flex-end;
}
.nav a{
  font-weight: 700;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .12s ease, border-color .12s ease;
}
.nav a:hover{
  background: rgba(47,182,255,.10);
  border-color: rgba(47,182,255,.22);
}
.nav a.active{
  background: rgba(229,57,53,.10);
  border-color: rgba(229,57,53,.25);
  color: var(--red-700);
}
@media (max-width: 900px){
  .topbar-inner{ flex-direction:column; align-items:flex-start; }
  .nav{ justify-content:flex-start; }
}

/* -------- Hero -------- */
.hero{
  padding: 56px 0 30px;
}
.hero-wrap{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:stretch;
}
.hero-left{
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    radial-gradient(900px 450px at 0% 0%, rgba(47,182,255,.20), transparent 60%),
    radial-gradient(900px 450px at 100% 20%, rgba(229,57,53,.14), transparent 60%),
    rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.hero-right{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow:hidden;
  background:#fff;
  box-shadow: var(--shadow-soft);
}
.hero-media{
  width:100%;
  height: 100%;
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(47,182,255,.20), rgba(229,57,53,.12)),
    #ffffff;
  position:relative;
}
.hero-media::after{
  content:"Add images URL";
  position:absolute;
  inset:auto 16px 16px 16px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(15, 23, 42, .25);
  background: rgba(255,255,255,.75);
  color: var(--muted);
  font-weight: 700;
  text-align:center;
}
@media (max-width: 900px){
  .hero-wrap{ grid-template-columns: 1fr; }
  .hero-media{ min-height: 240px; }
}

/* -------- Feature / List Styles -------- */
.ul-check{
  list-style:none;
  padding:0;
  margin: 14px 0 0;
  display:grid;
  gap: 10px;
}
.ul-check li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.80);
}
.ul-check li::before{
  content:"✓";
  flex:0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
}

/* -------- Rooms Cards -------- */
.room-card{
  overflow:hidden;
}
.room-thumb{
  height: 190px;
  background:
    linear-gradient(135deg, rgba(47,182,255,.20), rgba(229,57,53,.12)),
    #fff;
  position:relative;
  border-bottom: 1px solid var(--border);
}
.room-thumb::after{
  content:"Add images URL";
  position:absolute;
  inset:auto 14px 14px 14px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(15, 23, 42, .25);
  background: rgba(255,255,255,.75);
  color: var(--muted);
  font-weight: 800;
  text-align:center;
}
.room-body{ padding: 18px; }
.room-meta{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 10px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(47,182,255,.08);
  color: var(--sky-700);
  font-weight: 800;
  font-size: 13px;
}

/* -------- Gallery Grid -------- */
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.g-item{
  grid-column: span 4;
  height: 190px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow:hidden;
  background:
    linear-gradient(135deg, rgba(47,182,255,.18), rgba(229,57,53,.12)),
    #fff;
  position:relative;
}
.g-item::after{
  content:"Add images URL";
  position:absolute;
  inset:auto 12px 12px 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(15, 23, 42, .25);
  background: rgba(255,255,255,.75);
  color: var(--muted);
  font-weight: 800;
  text-align:center;
}
@media (max-width: 900px){
  .gallery{ grid-template-columns: 1fr; }
  .g-item{ grid-column: auto; height: 220px; }
}

/* -------- Tables (Attractions etc.) -------- */
.table{
  width:100%;
  border-collapse:separate;
  border-spacing: 0;
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow-soft);
}
.table th, .table td{
  padding: 14px 14px;
  border-bottom: 1px solid var(--border);
  text-align:left;
  vertical-align:top;
}
.table th{
  background: rgba(47,182,255,.10);
  color: var(--sky-700);
  font-weight: 900;
}
.table tr:last-child td{ border-bottom:none; }

/* -------- Forms -------- */
.form{
  display:grid;
  gap: 12px;
}
.field{
  display:grid;
  gap: 8px;
}
.label{
  font-weight: 800;
  font-size: 14px;
}
.input, .textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.85);
  outline:none;
  transition: border-color .12s ease, box-shadow .12s ease;
}
.textarea{ min-height: 120px; resize: vertical; }
.input:focus, .textarea:focus{
  border-color: rgba(47,182,255,.55);
  box-shadow: 0 0 0 4px rgba(47,182,255,.16);
}

/* -------- Footer -------- */
.footer{
  margin-top: 40px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
}
.footer-inner{
  padding: 28px 0;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:start;
}
.footer a:hover{ text-decoration:underline; }
@media (max-width: 900px){
  .footer-inner{ grid-template-columns: 1fr; }
}

/* -------- Breadcrumb / Page Header -------- */
.page-head{
  padding: 34px 0 14px;
}
.breadcrumb{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
.breadcrumb a{
  color: var(--sky-700);
  border-bottom: 1px dashed rgba(10,121,184,.35);
}
.breadcrumb a:hover{ border-bottom-style: solid; }

/* -------- Notice Banner (optional) -------- */
.notice{
  border: 1px solid rgba(229,57,53,.25);
  background: rgba(229,57,53,.08);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--red-700);
  font-weight: 800;
}
/* ===============================
   Home Page Hero Slider
   =============================== */

.hero-slider{
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-slider .slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active{
  opacity: 1;
}

/* Mobile height fix */
@media(max-width:900px){
  .hero-slider{
    min-height: 260px;
  }
}
.hero-slider img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hero-slider img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
