:root{
  --agh-green: #2f7d57;
  --agh-green-2: #1f5c41;
  --agh-mint: #e8f6ef;
  --agh-ink: #101828;
}

html, body {
  height: 100%;
}

body{
  color: var(--agh-ink);
  background: #ffffff;
}

.top-notice{
  background: linear-gradient(90deg, var(--agh-green-2), var(--agh-green));
}

.text-white-75{ color: rgba(255,255,255,.85) !important; }

.hero{
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(47,125,87,.10), transparent 55%),
    radial-gradient(1200px 600px at 95% 20%, rgba(47,125,87,.08), transparent 55%),
    #fff;
}

.hero-card{
  border-radius: 16px;
}

.page-header{
  background:
    radial-gradient(900px 400px at 10% 15%, rgba(47,125,87,.10), transparent 55%),
    #fff;
}

.btn-primary{
  background-color: var(--agh-green);
  border-color: var(--agh-green);
}
.btn-primary:hover, .btn-primary:focus{
  background-color: var(--agh-green-2);
  border-color: var(--agh-green-2);
}

.btn-primary-soft{
  background: var(--agh-mint);
  border: 1px solid rgba(47,125,87,.25);
  color: var(--agh-green-2);
  border-radius: .75rem;
  padding: .5rem .9rem;
  text-decoration: none;
  font-weight: 600;
}
.btn-primary-soft:hover{
  background: #dff2e8;
  color: var(--agh-green-2);
}

.badge.text-bg-success-soft{
  background: rgba(47,125,87,.12) !important;
  color: var(--agh-green-2) !important;
  border: 1px solid rgba(47,125,87,.18);
}

.room-card{
  border-radius: 16px;
  overflow: hidden;
}

.room-image{
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  background: #f3f4f6;
}

.room-image-fallback{
  width: 100%;
  height: 210px;
  display: grid;
  place-items: center;
  background: #f3f4f6;
  color: #475467;
  font-weight: 700;
  text-align: center;
  padding: 16px;
}

.amenity-chip{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(16,24,40,.04);
  border: 1px solid rgba(16,24,40,.08);
  border-radius: 999px;
  padding: .25rem .6rem;
  font-size: .825rem;
  margin: 0 .35rem .35rem 0;
  white-space: nowrap;
}

.limited-badge{
  position: absolute;
  top: 12px;
  left: 12px;
}

.price-tag{
  font-weight: 800;
  letter-spacing: -0.02em;
}

.review-card{
  border-radius: 16px;
  background: #fff;
}

.card-shadow-soft{
  box-shadow: 0 10px 30px rgba(16,24,40,.06);
}

a{ text-decoration: none; }
a:hover{ text-decoration: none; }

@media (max-width: 575.98px){
  .room-image, .room-image-fallback{ height: 190px; }
}
