/* =============================================
   NO LIPPY FITNESS — Shared Stylesheet
   ============================================= */

/* --- Variables --- */
:root {
  --black: #111111;
  --pink: #E8197D;
  --white: #FFFFFF;
  --grey: #f5f5f5;
  --text: #222222;
  --mid-grey: #666666;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

/* --- Layout --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--grey {
  background: var(--grey);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn-primary:hover {
  background: #c4146a;
  border-color: #c4146a;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  text-decoration: none;
}

.btn-pink-outline {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}
.btn-pink-outline:hover {
  background: var(--pink);
  color: var(--white);
  text-decoration: none;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* --- Pink band --- */
.pink-band {
  background: var(--pink);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.pink-band h2 {
  font-size: 2.8rem;
  margin-bottom: 12px;
}
.pink-band p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Header / Nav --- */
.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--pink);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1100px;
  margin: 0 auto;
  height: 70px;
}

.logo img {
  height: 54px;
  width: auto;
  display: block;
}

.site-header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-header nav a {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.15s;
}

.site-header nav a:hover,
.site-header nav a.active {
  color: var(--pink);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}

/* --- Page Hero --- */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 72px 0 56px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
}

/* --- Section headings --- */
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--black);
  margin-bottom: 8px;
}
.section-subtitle {
  color: var(--mid-grey);
  margin-bottom: 40px;
  font-size: 1rem;
}

/* --- Grid helpers --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- Timetable table --- */
.timetable-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.timetable-table th {
  background: var(--black);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 14px 16px;
  text-align: left;
}
.timetable-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e8e8e8;
}
.timetable-table tr:last-child td { border-bottom: none; }
.timetable-table tr:nth-child(even) td { background: var(--grey); }

.badge {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 3px;
}

/* --- Pricing cards --- */
.pricing-card {
  background: var(--white);
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s;
}
.pricing-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.pricing-card.featured {
  border-color: var(--pink);
  box-shadow: 0 6px 24px rgba(232,25,125,0.15);
}
.pricing-card .popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card .plan-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.pricing-card .price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--pink);
  line-height: 1;
  margin: 16px 0 4px;
}
.pricing-card .price-label {
  font-size: 0.85rem;
  color: var(--mid-grey);
  margin-bottom: 20px;
}
.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.pricing-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}
.pricing-card ul li::before {
  content: "✓ ";
  color: var(--pink);
  font-weight: 600;
}

/* --- Footer --- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 48px 24px;
  font-size: 0.9rem;
}
.footer-inner > * + * { margin-top: 8px; }
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 12px;
}
.site-footer a {
  color: rgba(255,255,255,0.7);
}
.site-footer a:hover { color: var(--pink); text-decoration: none; }
.footer-social { margin-top: 12px; }
.footer-copy {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* --- Contact form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-item {
  margin-bottom: 20px;
}
.contact-label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--mid-grey);
  margin-bottom: 2px;
}
.contact-details address { font-style: normal; line-height: 1.7; }
.map-wrap { margin-top: 28px; border-radius: 8px; overflow: hidden; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
}
.form-group textarea { resize: vertical; }
.required { color: var(--pink); }
.optional { color: var(--mid-grey); font-weight: 400; font-size: 0.85rem; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }

  .nav-toggle { display: flex; }

  .site-header nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .site-header nav.open { display: flex; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .pink-band h2 { font-size: 2.2rem; }
}
