/* АЛТЕК Brand Styles - Based on Brand Book */
/* Принудительная светлая тема по брендбуку */

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  color: #202120 !important;
  background: #ffffff !important;
  font-size: 16px;
  line-height: 1.5;
}

#app {
  max-width: 100%;
  padding: 16px;
  padding-bottom: 32px;
  background: #ffffff;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 24px;
}

.logo {
  width: 180px;
  height: auto;
  margin-bottom: 16px;
}

.header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #202120;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #787878;
}

/* Buttons Base */
button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  transition: all 300ms ease;
}

/* Primary Booking Button */
.booking-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  background: linear-gradient(135deg, #86bc25 0%, #4a9d2e 100%);
  color: #ffffff;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(134, 188, 37, 0.3);
  min-height: 52px;
}

.booking-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(134, 188, 37, 0.2);
}

.booking-btn.primary {
  font-size: 18px;
  padding: 16px 32px;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.menu-item {
  background: linear-gradient(135deg, #86bc25 0%, #65911c 100%);
  color: #ffffff;
  padding: 20px 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(134, 188, 37, 0.3);
  border: none;
}

.menu-item:active {
  transform: translateY(2px);
  box-shadow: 0 2px 6px rgba(134, 188, 37, 0.2);
  background: linear-gradient(135deg, #76a821 0%, #547a17 100%);
}

.menu-item .icon {
  font-size: 32px;
}

/* Sections */
.section {
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #202120;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.section h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #202120;
}

/* Content Blocks */
.content-block {
  background: #f0f0f1;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px solid #e0e0e0;
}

.content-block .text {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  font-size: 15px;
  color: #202120;
}

.content-block h3 {
  font-family: 'Oswald', sans-serif;
  color: #202120;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.content-block ul {
  list-style: none;
  padding-left: 0;
}

.content-block li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: #202120;
}

.content-block li:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 14px;
  width: 6px;
  height: 6px;
  background: #86bc25;
  border-radius: 50%;
}

/* Info Cards */
.info-card {
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px 0 rgba(32, 33, 32, 0.05);
  border: 1px solid #e0e0e0;
}

.info-card p {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: #202120;
}

.info-card ul {
  list-style: none;
  padding-left: 0;
}

.info-card li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: #202120;
}

.info-card li:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 14px;
  width: 6px;
  height: 6px;
  background: #86bc25;
  border-radius: 50%;
}

/* Phone Buttons */
.phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.phone-btn {
  background: #86bc25;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.phone-btn:active {
  background: #65911c;
}

.hours {
  margin-top: 12px;
  font-weight: 600;
  text-align: center;
  color: #202120;
}

/* Trainer Cards */
.trainer-card {
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px 0 rgba(32, 33, 32, 0.05);
  border: 1px solid #e0e0e0;
}

.trainer-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #86bc25;
}

.experience {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #787878;
}

.achievements {
  margin-top: 12px;
  color: #202120;
}

.achievements strong {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: #202120;
}

.achievements ul {
  list-style: none;
  padding-left: 0;
  margin-top: 8px;
}

.achievements li {
  padding: 4px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: #202120;
}

.achievements li:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 12px;
  height: 8px;
  border-left: 2px solid #86bc25;
  border-bottom: 2px solid #86bc25;
  transform: rotate(-45deg);
}

/* Promo */
.promo {
  background: linear-gradient(135deg, #86bc25 0%, #4a9d2e 100%);
  color: #ffffff;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(134, 188, 37, 0.3);
}

/* Equipment List */
.equipment-list {
  margin-bottom: 16px;
}

.equipment-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 1px 2px 0 rgba(32, 33, 32, 0.05);
  border: 1px solid #e0e0e0;
}

.equipment-name {
  font-size: 15px;
  font-weight: 500;
  color: #202120;
}

.equipment-price {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #86bc25;
}

/* Training Cards */
.training-card {
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px 0 rgba(32, 33, 32, 0.05);
  border: 1px solid #e0e0e0;
}

.training-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #86bc25;
}

.training-card p {
  margin-bottom: 12px;
  font-size: 15px;
  color: #202120;
}

.training-card ul {
  list-style: none;
  padding-left: 0;
}

.training-card li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: #202120;
}

.training-card li:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 12px;
  height: 8px;
  border-left: 2px solid #86bc25;
  border-bottom: 2px solid #86bc25;
  transform: rotate(-45deg);
}

/* Loading */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #202120;
  background: #ffffff;
}

/* Back Button */
.back-btn {
  width: 100%;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  background: #ffffff;
  color: #86bc25;
  margin-top: 20px;
  border: 2px solid #86bc25;
}

.back-btn:active {
  background: #f0f9e6;
  border-color: #86bc25;
  color: #86bc25;
}

/* Accent text */
strong {
  color: #202120;
  font-weight: 600;
}
