/* ==========================================================================
   Vitaminka — static pages
   Colors and fonts copied from the live theme (pharmacare-child):
   --primary: #cf8377 (terracotta accent)
   --secondary: #516C6B (dark teal-green, headings/logo)
   ========================================================================== */

@font-face {
  font-family: "Fira Sans Condensed";
  src: url("../fonts/FiraSansCondensed-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --primary-color: #cf8377;
  --secondary-color: #516c6b;
  --cream: #fffbf6;
  --text: #191919;
  --border: #ebebeb;
  --container-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fira Sans Condensed", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--secondary-color);
  margin: 0 0 16px;
}

h1 { font-size: 40px; }
h2 { font-size: 26px; }
h5, h6 { font-size: 18px; text-transform: uppercase; }

p { margin: 0 0 16px; }

a {
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover { color: var(--primary-color); }

ul { margin: 0 0 16px; padding-left: 20px; }

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */

.announcement-bar {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 16px;
}

.announcement-bar svg {
  vertical-align: -3px;
  margin-right: 8px;
}

.site-header {
  background-color: var(--cream);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 20;
}

.header-main__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 40px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--secondary-color);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-logo img {
  height: 42px;
  width: auto;
}

.header-spacer {
  width: 40px;
}

.site-nav {
  max-height: 0;
  overflow: hidden;
  background-color: var(--cream);
  border-top: 1px solid transparent;
  transition: max-height 0.25s ease;
}

.site-nav.is-open {
  max-height: 400px;
  border-top-color: var(--border);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 8px 24px 16px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.site-nav li a {
  display: block;
  padding: 12px 0;
  font-family: "Fira Sans Condensed", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--secondary-color);
  border-bottom: 1px solid var(--border);
}

.site-nav li:last-child a { border-bottom: none; }

/* -------------------------------------------------------------------------
   Hero / Coming soon
   ------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: #2f3c37 url("../images/main-banner.avif") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 26, 24, 0.55) 0%, rgba(20, 26, 24, 0.35) 45%, rgba(20, 26, 24, 0.65) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 80px 24px;
  margin: 0 auto;
  max-width: 720px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: "Fira Sans Condensed", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 8px 20px;
  margin-bottom: 24px;
}

.hero h1 {
  color: #fff;
  font-size: 52px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #f3f0ec;
  margin-bottom: 32px;
}

.notify-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto 20px;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
}

.notify-form input[type="email"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 18px;
  font-size: 15px;
  outline: none;
  color: var(--text);
}

.notify-form button {
  border: none;
  background-color: var(--primary-color);
  color: #fff;
  font-family: "Fira Sans Condensed", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 12px 28px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.notify-form button:hover { background-color: #b96e63; }

.hero__note {
  font-size: 13px;
  color: #e4dfd9;
  margin: 0;
}

.hero__socials {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.hero__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background-color 0.2s ease;
}

.hero__socials a:hover { background-color: var(--primary-color); border-color: var(--primary-color); }

/* -------------------------------------------------------------------------
   Philosophy strip (used on coming-soon page)
   ------------------------------------------------------------------------- */

.philosophy {
  text-align: center;
  padding: 56px 24px;
}

.philosophy p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
}

.philosophy strong { color: var(--secondary-color); }

/* -------------------------------------------------------------------------
   Page content (policy pages / contact us)
   ------------------------------------------------------------------------- */

.page-content {
  padding: 64px 24px;
}

.page-content .container {
  max-width: 820px;
}

.page-content h1 {
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.page-content h2 {
  margin-top: 36px;
}

.page-content .updated {
  color: #8a8a8a;
  font-size: 14px;
  margin-bottom: 24px;
}

.contact-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 24px 0;
}

/* -------------------------------------------------------------------------
   Features bar
   ------------------------------------------------------------------------- */

.features-bar {
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.features-bar li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fira Sans Condensed", Arial, sans-serif;
  font-weight: 700;
  color: var(--secondary-color);
}

.features-bar .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.features-bar li:nth-child(3n+2) .icon { background-color: var(--primary-color); }
.features-bar li:nth-child(3n) .icon { background-color: #ba7b66; }

.features-bar .icon svg { width: 24px; height: 24px; }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */

.site-footer {
  background-color: var(--primary-color);
  color: #fff;
}

.footer-top {
  padding: 56px 24px 32px;
}

.footer-top__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-newsletter h5,
.footer-links h6 {
  color: #fff;
  margin-bottom: 12px;
}

.footer-newsletter p {
  color: #f6e6e2;
  font-size: 14px;
  max-width: 360px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 380px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
  font-size: 14px;
}

.newsletter-form input::placeholder { color: #f6e6e2; }

.newsletter-form button {
  border: none;
  background-color: #fff;
  color: var(--secondary-color);
  font-family: "Fira Sans Condensed", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: #fff2ef;
  font-size: 14px;
}

.footer-links a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding: 20px 24px;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.social-list a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright {
  font-size: 13px;
  color: #fff2ef;
  margin: 0;
}

.payments-icon {
  height: 24px;
  border-radius: 6px;
  padding: 3px 8px;
}

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */

@media only screen and (max-width: 900px) {
  .footer-top__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-newsletter { grid-column: 1 / -1; }
}

@media only screen and (max-width: 640px) {
  .hero { min-height: 520px; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 16px; }
  .notify-form { flex-direction: column; border-radius: 20px; }
  .notify-form button { border-radius: 16px; }
  .footer-top__grid { grid-template-columns: 1fr; }
  .footer-bottom__inner { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 30px; }
}
