/*
Theme Name: Daisy Theme
Theme URI:
Author: Daily Daisy Kitchen
Description: Custom single-page landing theme for Daily Daisy Kitchen
Version: 1.0
*/

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media (max-width: 768px) { html { font-size: 14px; } }

body {
  background: #F8F4E9;
  font-family: system-ui, -apple-system, sans-serif;
  color: #2D3E2A;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Layout wrapper — full width ── */
.daisy-page {
  width: 100%;
}

/* ── Hero ── */
.hero {
  background: #718b6a;
  padding: 5rem 3rem 4.5rem;
  text-align: center;
}

.hero__logo {
  width: 30rem;
  max-width: 70vw;
  height: auto;
  margin: 0 auto 0.75rem auto;
}

.hero__tagline {
  font-size: 1.5rem;
  color: #F8F4E9;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  opacity: 0.95;
}

.btn-primary {
  display: inline-block;
  background: #FFE082;
  color: #4A5D44;
  border: none;
  padding: 0.8125rem 1.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover { background: #ffd54f; }

/* ── About ── */
.about {
  padding: 4rem 3rem;
  text-align: center;
}

.about__text {
  font-size: 1.5rem;
  color: #4A5D44;
  line-height: 1.75;
  max-width: 42.5rem;
  margin: 0 auto;
}

.about__emoji { color: #B89A3E; }

/* ── Email Capture ── */
.email-capture__daisy {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem auto;
}

.email-capture {
  background: #718b6a;
  padding: 4.5rem 3rem;
  text-align: center;
}

.email-capture__title {
  font-family: Georgia, serif;
  font-size: 2.25rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 0.875rem;
}

.email-capture__subtitle {
  font-size: 1.25rem;
  color: #F8F4E9;
  margin-bottom: 2.25rem;
  opacity: 0.95;
}

.pdf-thumb {
  width: 10rem;
  height: 13.125rem;
  background: #FFFFFF;
  border-radius: 0.75rem;
  margin: 0 auto 2.25rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem;
}

.pdf-thumb__daisy {
  width: 2.5rem;
  height: 2.5rem;
}

.pdf-thumb__label {
  font-family: Georgia, serif;
  font-size: 0.875rem;
  color: #4A5D44;
  text-align: center;
  line-height: 1.4;
}

.email-form {
  max-width: 16.25rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.email-form__input {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: none;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  width: 100%;
}

.email-form__input:focus {
  box-shadow: 0 0 0 3px rgba(255,224,130,0.6);
}

.email-form__btn {
  background: #FFE082;
  color: #4A5D44;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.email-form__btn:hover { background: #ffd54f; }

.email-form__message {
  font-size: 0.8125rem;
  color: #F8F4E9;
  min-height: 1.25rem;
  text-align: center;
}

.email-form__message.error { color: #ffccbc; }

.email-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.email-form__consent input[type="checkbox"] {
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: #FFE082;
  cursor: pointer;
}

.email-form__consent span {
  font-size: 0.75rem;
  color: #F8F4E9;
  opacity: 0.85;
  line-height: 1.5;
  text-align: left;
}

.email-form__consent a {
  color: #F8F4E9;
  text-decoration: underline;
}

/* ── Social ── */
.social {
  padding: 4rem 3rem;
  text-align: center;
}

.social__label {
  font-size: 1rem;
  color: #6B7B65;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  margin-bottom: 1.5rem;
}

.social__icons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.social__link {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #718b6a;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.social__link:hover {
  background: #5a7054;
  transform: translateY(-2px);
}

.social__link i { font-size: 1.875rem; }

/* ── Hero logo link ── */
.hero a { display: inline-block; }

/* ── Privacy Policy page ── */
.hero--slim {
  padding: 2.5rem 3rem;
}

.privacy-content {
  max-width: 48rem;
  margin: 0 auto;
  padding: 3rem 3rem 4rem;
}

.privacy-content h1 {
  font-family: Georgia, serif;
  font-size: 2rem;
  color: #4A5D44;
  margin-bottom: 0.5rem;
}

.privacy-updated {
  font-size: 0.875rem;
  color: #6B7B65;
  margin-bottom: 2rem;
}

.privacy-content h2 {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: #4A5D44;
  margin: 2rem 0 0.5rem;
}

.privacy-content p,
.privacy-content li {
  font-size: 1rem;
  color: #2D3E2A;
  line-height: 1.8;
}

.privacy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-content a {
  color: #718b6a;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-content { padding: 2rem 1.5rem 3rem; }
}

/* ── Footer ── */
.site-footer {
  background: #718b6a;
  color: #F8F4E9;
  padding: 2.25rem 3rem;
  text-align: center;
}

.site-footer__copy {
  font-size: 1rem;
  margin-bottom: 0.625rem;
  opacity: 0.9;
}

.site-footer__disclaimer {
  font-size: 0.8125rem;
  opacity: 0.6;
  line-height: 1.6;
}

.site-footer__links {
  margin-top: 0.75rem;
}

.site-footer__links a {
  color: #F8F4E9;
  font-size: 0.8125rem;
  opacity: 0.7;
  text-decoration: underline;
}
