:root {
  --hero-pink: #f7c6d9;
  --light-pink: #fbe3ec;
  --mid-pink: #f3b6cc;
  --white: #ffffff;
  --text: #222;
  --muted: #666;
}

/* GLOBAL */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--white);
  color: var(--text);
}

/* HERO */
.hero {
  height: 100vh;
  background: url('assets/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

/* overlay card */
.hero-overlay {
  background: rgba(255, 255, 255, 0.88);
  padding: 40px;
  max-width: 700px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.logo {
  width: 90px;
  margin-bottom: 20px;
}

h1 {
  font-size: 36px;
  margin: 10px 0;
}

.tagline {
  font-size: 18px;
  font-weight: bold;
}

.subtext {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.primary {
  background: #000;
  color: #fff;
}

.secondary {
  border: 1px solid #000;
  color: #000;
}

/* SECTIONS (base) */
.section {
  padding: 70px 20px;
  text-align: center;
}

/* alternating backgrounds */
.services {
  background: var(--light-pink);
}

.contact {
  background: var(--hero-pink);
}

.mobile {
  background: var(--light-pink);
}

.highlight {
  background: var(--mid-pink);
}

/* headings */
h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* SERVICES */
.grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  width: 150px;
  border-radius: 10px;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* PRICE LIST */
.price-img {
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
}

.note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

/* CONTACT */
.contact p {
  margin: 8px 0;
}

/* FOOTER */
footer {
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: #999;
}
