:root{
  --gold:#d4af37;
  --gold2:rgba(212,175,55,.6);
  --bg:#0b0b0b;
  --muted:rgba(255,255,255,.55);
}

html{ scroll-behavior:smooth; }
body{ background:#0f0f10; }

.section-dark{
  background: var(--bg);
  color:#fff;
}
.section-soft{
  background: rgba(255,255,255,.03);
  color:#fff;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.badge-gold{
  color:var(--gold);
  border:1px solid var(--gold2);
  border-radius:999px;
  letter-spacing:1px;
  background:rgba(212,175,55,.06);
  padding:.55rem 1.1rem;
  display:inline-block;
}

.btn-gold{
  color:var(--gold);
  border:1px solid var(--gold2);
  background:transparent;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn-gold:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  background:rgba(212,175,55,.08);
}

.card-luxe{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  color:#fff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card-luxe:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  border-color: rgba(212,175,55,.25);
}

.hr-glow{
  height:1px;
  background: linear-gradient(90deg, rgba(212,175,55,0), rgba(212,175,55,.7), rgba(212,175,55,0));
  border:0;
  margin: 2.2rem 0;
}

.fade-up{ opacity:0; transform:translateY(10px); animation:fadeUp .6s ease-out forwards; }
@keyframes fadeUp{ to{ opacity:1; transform:translateY(0); } }

.photo-card{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.30);
  transition: transform .18s ease, box-shadow .18s ease;
}
.photo-card:hover{
  transform: scale(1.01);
  box-shadow: 0 16px 38px rgba(0,0,0,.38);
}

.footer-dark{
  background: #070707;
  color: rgba(255,255,255,.7);
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-dark a{ color: rgba(255,255,255,.85); text-decoration:none; }
.footer-dark a:hover{ color:#fff; text-decoration:underline; }

.small-muted{ color: rgba(255,255,255,.6); }

.img-tile{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.img-tile img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .25s ease, opacity .25s ease;
}
.img-tile:hover img{
  transform: scale(1.03);
  opacity: .95;
}

/* Gym page - make headings/text readable on dark background */
body {
  color: #fff;
}

.small-muted,
.text-muted {
  color: rgba(255,255,255,0.75) !important;
}

h2, h3, h4, h5, h6 {
  color: #fff;
}

:root{
  --gold:#d4af37;
  --bg:#0b0b0b;
}

.hero-dark{
  background: radial-gradient(1000px 400px at 50% 0%, rgba(212,175,55,0.10), transparent 60%),
              linear-gradient(180deg, #0b0b0b, #0a0a0a);
}

.text-gold{ color: var(--gold) !important; }

.badge-gold{
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.45);
  background: rgba(212,175,55,0.08);
  padding: .55rem 1rem;
  border-radius: 999px;
  letter-spacing: .12em;
  font-weight: 700;
  text-transform: uppercase;
}

.card-luxe{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
}

.dot-online{
  width: 10px; height: 10px; border-radius: 50%;
  background: #2ee06a;
  box-shadow: 0 0 0 6px rgba(46,224,106,0.10);
}

.contact-list{
  display: grid;
  gap: 14px;
}

.contact-item{
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.contact-ic{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--gold);
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.20);
  font-size: 1.1rem;
}

.btn-outline-gold{
  color: var(--gold) !important;
  border-color: rgba(212,175,55,0.55) !important;
  background: transparent !important;
}
.btn-outline-gold:hover{
  background: rgba(212,175,55,0.10) !important;
  border-color: rgba(212,175,55,0.75) !important;
}

.map-wrap{
  min-height: 420px; /* важно: убирает пустоту на большинстве экранов */
}
.map-wrap iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Мобилка: чуть компактнее */
@media (max-width: 576px){
  .map-wrap{ min-height: 360px; }
}
