* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #232323;
  background: #fffaf3;
}

/* HEADER */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  max-width: 1400px;
  margin: auto;
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.mini-brand {
  color: #222;
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #222;
  text-decoration: none;
  font-size: 15px;
}

.nav-links a:hover {
  opacity: 0.55;
}

.nav-button {
  background: #222;
  color: white;
  padding: 12px 20px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
}

/* TAGLINE */
.tagline {
  font-family: "Codystar", sans-serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 30px;
  background: rgba(255, 255, 255, 0.82);
  padding: 12px 25px;
  border-radius: 100px;
}

/* HERO */
.hero {
  min-height: 88vh;
  padding: 65px 20px 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, #ff4f87 0 12%, transparent 30%),
    radial-gradient(circle at 90% 12%, #00c7c7 0 15%, transparent 32%),
    radial-gradient(circle at 20% 85%, #ffd447 0 17%, transparent 34%),
    radial-gradient(circle at 85% 80%, #ff7043 0 15%, transparent 32%),
    radial-gradient(circle at 50% 5%, #b98cff 0 13%, transparent 30%),
    radial-gradient(circle at 55% 95%, #7ed957 0 14%, transparent 31%),
    linear-gradient(135deg, #ff9db5 0%, #ffd86f 25%, #75dfd1 50%, #a7d86d 72%, #ff9aac 100%);
}

.hero-logo {
  width: min(590px, 82vw);
  height: auto;
  display: block;
  margin-bottom: 25px;
  filter: drop-shadow(0 5px 3px rgba(255, 255, 255, 0.35));
}

/* UNDER CONSTRUCTION */
.under-construction {
  width: min(760px, 92%);
  margin: 0 auto 24px;
  padding: 24px 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 3px dashed #ff4f87;
  border-radius: 25px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
  color: #232323;
}

.under-construction h3 {
  margin: 0 0 12px;
  color: #e92f78;
  font-size: 24px;
}

.under-construction p {
  max-width: 650px;
  margin: 8px auto;
  font-size: 16px;
  line-height: 1.6;
}

/* MAIN BUTTON */
.main-button {
  display: inline-block;
  background: #222;
  color: white;
  padding: 14px 26px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.main-button:hover {
  opacity: 0.8;
}

/* INTRO */
.intro {
  max-width: 900px;
  margin: auto;
  padding: 110px 30px 70px;
  text-align: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: bold;
  margin-bottom: 20px;
}

.intro h2,
.gallery h2,
.contact h2 {
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1;
  margin: 0 0 30px;
}

.intro > p:last-child {
  max-width: 700px;
  margin: auto;
  font-size: 19px;
  line-height: 1.7;
}

/* SERVICES */
.services {
  max-width: 1000px;
  margin: 0 auto;
  padding: 45px 6% 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  justify-content: center;
}

/* Each current services section contains one card. */
.services > .service-card:only-child {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 600px;
  justify-self: center;
}

.service-card {
  min-height: 430px;
  border-radius: 35px;
  padding: 55px;
  position: relative;
}

#face-painting { background: #f6d7da; }
#embroidery { background: #dce9df; }
#metal-stamping { background: #f4dfb8; }
#wood-burning { background: #d9c7b8; }

.service-number {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.service-card h2 {
  font-size: clamp(38px, 5vw, 60px);
  margin: 0 0 16px;
  line-height: 1;
}

.service-card p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 500px;
}

.text-link {
  display: inline-block;
  margin-top: 30px;
  color: #222;
  font-weight: bold;
  text-decoration: none;
}

/* FEATURED FACE-PAINTING SETUP */
.facepaint-setup {
  max-width: 900px;
  margin: 60px auto 0;
  padding: 0 20px;
  text-align: center;
}

.facepaint-setup .eyebrow {
  color: #e92f78;
}

.facepaint-setup h2 {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.1;
  margin: 0 0 28px;
}

.facepaint-setup .setup-photo {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 0 auto;
  border: 6px solid #ff1493;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.2);
}

/* GALLERY */
.gallery {
  padding: 100px 6% 120px;
  text-align: center;
}

.gallery-grid {
  max-width: 1100px;
  margin: 45px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery-photo {
  width: 220px;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 25px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

#facepainting-gallery .gallery-photo {
  object-position: center 40%;
}

/* CONTACT */
.contact {
  padding: 120px 25px;
  background: #efc5c5;
  text-align: center;
}

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

.email-link {
  display: inline-block;
  margin-top: 20px;
  color: #222;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: bold;
}

/* FOOTER */
footer {
  background: #222;
  color: white;
  padding: 35px 6%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 14px;
}

/* FACE PAINTING PACKAGES */
.facepaint-packages {
  padding: 100px 6%;
  text-align: center;
  background: #fff4f7;
}

.facepaint-packages h2 {
  font-size: clamp(38px, 6vw, 65px);
  line-height: 1.05;
  margin: 0 0 45px;
}

.package-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.package-card {
  background: white;
  padding: 38px 32px;
  border-radius: 30px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.package-card h3 {
  margin: 0 0 24px;
  font-size: 30px;
  color: #e92f78;
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.package-list li {
  background: #fff0f5;
  padding: 15px 18px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
}

.event-option { padding: 20px 0; }

.event-option + .event-option {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.event-option h4 {
  margin: 0 0 8px;
  font-size: 21px;
}

.event-option p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.package-note {
  max-width: 760px;
  margin: 35px auto 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Keep navigation within the screen on tablets and smaller laptops. */
@media (max-width: 1200px) {
  .nav-wrap { flex-wrap: wrap; gap: 16px; }
  .nav-links {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
}

/* MOBILE */
@media (max-width: 800px) {
  .package-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .mini-brand { font-size: 17px; }
  .nav-button { padding: 10px 16px; }
  .hero { min-height: 70vh; padding-top: 50px; }
  .under-construction { width: 94%; padding: 20px 18px; }
  .under-construction h3 { font-size: 21px; }
  .under-construction p { font-size: 15px; }
  .services { grid-template-columns: 1fr; }
  .service-card { min-height: 350px; padding: 40px; }
  .service-number { margin-bottom: 40px; }
  .gallery-photo { width: calc(50% - 10px); }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 500px) {
  .gallery-grid { max-width: 280px; }
  .gallery-photo { width: 280px; max-width: 100%; }
}
