/*
Theme Name: Dust2Glory Simple
Theme URI: https://dust2glory.fitness/
Author: Dust2Glory
Description: A clean, editable gym website theme for Dust2Glory Fitness.
Version: 1.0.0
*/

:root {
  --ink: #111315;
  --muted: #5b626b;
  --line: #e7eaee;
  --green: #72a900;
  --green-dark: #4f7800;
  --cream: #f7f4ee;
  --white: #ffffff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: var(--white);
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
}
.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  gap: 24px;
}
.brand {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}
.brand span { color: var(--green); }
.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.menu a {
  text-decoration: none;
}
.menu a:hover { color: var(--green-dark); }
.hero {
  min-height: 620px;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.22)),
    url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1800&q=80') center/cover;
}
.hero .wrap { padding: 92px 0; }
.eyebrow {
  color: #c9ff76;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
}
h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 18px;
}
h1 { font-size: clamp(42px, 7vw, 76px); max-width: 850px; }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: 22px; }
.lead {
  font-size: 20px;
  max-width: 700px;
  color: inherit;
}
.button {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
}
.button.secondary {
  background: var(--ink);
}
.section { padding: 76px 0; }
.section.alt { background: var(--cream); }
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.two {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}
.card img, .feature-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.muted { color: var(--muted); }
.page-title {
  background: var(--ink);
  color: var(--white);
  padding: 72px 0;
}
.content {
  max-width: 900px;
}
.content ul { padding-left: 22px; }
.schedule {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
}
.schedule th, .schedule td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.schedule th { background: var(--cream); }
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 40px 0;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 820px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .menu { flex-wrap: wrap; gap: 12px 18px; }
  .hero { min-height: 520px; }
  .grid, .two { grid-template-columns: 1fr; }
}