/* Watts Health - simple editable stylesheet */
:root {
  --black: #000;
  --dark: #111;
  --white: #fff;
  --border: #000;
  --accent: #0a84ff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--dark);
  color: #222;
}

.frame {
  padding: 32px;
  background: var(--dark);
  min-height: 100vh;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--black);
  padding: 18px 28px;
  border: 3px solid var(--white);
  border-radius: 6px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  height: 160px; /* larger logo - change this value if you want bigger/smaller */
  display: block;
}

.brand-wrap {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

.brand {
  color: var(--white);
  font-size: 56px; /* WATTS size - edit to change */
  font-weight: 800;
  letter-spacing: 1px;
}

.brand-sub {
  color: var(--white);
  font-size: 44px; /* HEALTH size - edit to change */
  font-weight: 700;
  margin-top: 4px;
}

/* Header actions */
.header-actions { display:flex; align-items:center; gap:12px; }
.book-btn {
  color: var(--white);
  background: transparent;
  border: 3px solid var(--white);
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
}

/* Content box (white card) */
.content-box {
  background: var(--white);
  margin-top: 30px;
  padding: 36px;
  border: 3px solid var(--border);
  border-radius: 8px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero image */
.hero-img {
  width: 100%;
  border-radius: 10px;
  display: block;
  margin-bottom: 24px;
}

/* Sections */
h2 {
  font-size: 22px;
  margin: 0 0 12px 0;
}

.about p { font-size: 18px; line-height: 1.6; color:#333; }

/* Gallery grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

/* Footer */
.site-footer {
  text-align: center;
  color: #ddd;
  margin-top: 26px;
  font-size: 14px;
}
