* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff7fb;
  color: #3a2a2f;
  line-height: 1.6;
}

.hero {
  min-height: 720px;
  color: white;
  position: relative;
  background:
    linear-gradient(rgba(80,20,40,.35), rgba(120,25,55,.45)),
    url("images/spa-bg.jpg");
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 45% 6%;
  border-bottom-right-radius: 45% 6%;
}

.topbar {
  width: 100%;
  padding: 26px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo,
.footer-logo {
  font-family: Georgia, serif;
  font-size: 34px;
  font-style: italic;
  font-weight: bold;
}

.logo span,
.footer-logo span,
.hero h1 span {
  color: #ffd36a;
}

.nav-links a {
  color: white;
  margin-left: 28px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
}

.nav-links a:hover {
  color: #ffd6e5;
}

.hero-content {
  padding: 120px 7% 0;
  max-width: 760px;
}

.small-title {
  color: #ffd6e5;
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: italic;
  margin-bottom: 10px;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: 86px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 24px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.main-btn,
.second-btn,
.map-btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: bold;
}

.main-btn {
  background: linear-gradient(135deg, #ff5f9e, #e83e7c);
  color: white;
  box-shadow: 0 12px 28px rgba(232, 62, 124, 0.38);
}

.second-btn {
  background: rgba(255,255,255,0.18);
  color: white;
  border: 1px solid rgba(255,255,255,0.45);
}

.hero-note {
  margin-top: 22px;
  font-size: 16px;
}

section {
  max-width: 1120px;
  margin: auto;
  padding: 70px 22px;
  text-align: center;
}

h2 {
  font-family: Georgia, serif;
  color: #e94f8d;
  font-size: 36px;
  margin-bottom: 12px;
}

.section-desc {
  color: #75515e;
  margin-bottom: 34px;
}

.features {
  margin-top: -45px;
  background: white;
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(145, 60, 90, 0.15);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 34px;
  position: relative;
  z-index: 2;
}

.feature {
  padding: 20px 28px;
  border-right: 1px solid #ffd2e2;
}

.feature:last-child {
  border-right: none;
}

.icon,
.card-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #ffe3ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.feature h3,
.card h3 {
  color: #7e1f3d;
  margin-bottom: 8px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: white;
  padding: 34px 24px;
  border-radius: 20px;
  border: 1px solid #ffd2e2;
  box-shadow: 0 14px 36px rgba(180, 80, 120, 0.12);
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-6px);
}

.lineup-section {
  padding-top: 35px;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.person {
  min-height: 190px;
  border-radius: 22px;
  background:
    linear-gradient(rgba(255,255,255,0.15), rgba(233,79,141,0.88)),
    linear-gradient(135deg, #ffd7e7, #ff8fbd);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: white;
  font-size: 26px;
  font-weight: bold;
  padding-bottom: 22px;
  box-shadow: 0 15px 35px rgba(180, 80, 120, 0.18);
}

.info-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: white;
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(145, 60, 90, 0.15);
  margin-bottom: 70px;
}

.price-box,
.contact-box {
  padding: 48px;
  text-align: left;
}

.price-box {
  background: linear-gradient(135deg, #fff, #fff0f6);
}

.price-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #d99aac;
  padding: 18px 0;
  font-size: 20px;
}

.contact-box p {
  margin: 18px 0;
  font-size: 18px;
}

.contact-box a {
  color: #e94f8d;
  text-decoration: none;
}

.map-btn {
  background: #e94f8d;
  color: white !important;
  margin-top: 10px;
}

footer {
  background: linear-gradient(135deg, #e94f8d, #f67aa9);
  color: white;
  text-align: center;
  padding: 42px 20px;
}

footer p {
  margin-top: 8px;
}

.floating-call {
  display: none;
}

@media (max-width: 850px) {
  .topbar {
    display: block;
    text-align: center;
  }

  .nav-links {
    margin-top: 18px;
  }

  .nav-links a {
    margin: 0 8px;
    font-size: 14px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    text-align: center;
    padding: 90px 22px 0;
  }

  .hero h1 {
    font-size: 54px;
  }

  .subtitle {
    font-size: 20px;
  }

  .hero-buttons {
    justify-content: center;
  }

.cards,
.lineup-grid,
.info-box {
    grid-template-columns: 1fr;
}
.features {
    grid-template-columns: repeat(3, 1fr);
    padding: 18px;
}

.feature {
    padding: 10px 6px;
}

.feature h3 {
    font-size: 14px;
}

.feature p {
    font-size: 11px;
    line-height: 1.3;
}

.icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
    margin-bottom: 8px;
}

  .price-box,
  .contact-box {
    padding: 34px 24px;
    text-align: center;
  }

  .floating-call {
    display: block;
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: #e94f8d;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 12px 28px rgba(232, 62, 124, 0.38);
    z-index: 20;
  }

  body {
    padding-bottom: 72px;
  }
}
.group-photo{
    width:100%;
    padding:20px;
    background:#fff;
}

.group-photo img{
    width:100%;
    max-width:1200px;
    display:block;
    margin:auto;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.girls-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
    margin-top:30px;
}

.girl-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
}

.girl-card img{
    width:100%;
    aspect-ratio:3/4;
    object-fit:cover;
    object-position:center top;
    display:block;
}

@media (max-width:850px){
    .girls-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

.schedule-wrap{
    max-width:1000px;
    margin:30px auto;
}

.schedule-wrap img{
    width:100%;
    border-radius:20px;
    display:block;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}
.gallery-section{
  padding-top:40px;
}

.gallery-tabs{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin:25px 0;
}

.gallery-tabs button{
  border:none;
  background:#e94f8d;
  color:white;
  padding:10px 18px;
  border-radius:999px;
  font-weight:bold;
  cursor:pointer;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.gallery-grid img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  object-position:center top;
  border-radius:18px;
  box-shadow:0 8px 24px rgba(0,0,0,.15);
}

@media(max-width:850px){
  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }
}