/* Good Mail Adventures - Brand styles */
/* Fonts: Rooney (heading/brand), Futura (body) - using Nunito + Jost as web alternatives until licensed */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --teal: #07afaa;
  --blue: #2574bb;
  --orange: #f29625;
  --font-heading: 'Nunito', sans-serif;   /* Rooney alternative */
  --font-body: 'Jost', sans-serif;       /* Futura alternative */
  --text-dark: #333;
  --text-muted: #666;
  --border-light: #e0e0e0;
  --white: #fff;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ========== Site header (teal bar) ========== */
.site-header {
  background: var(--teal);
  padding: 0.5rem;
  min-height: 0.5rem;
}

/* ========== Hero / Logo block ========== */
.hero {
  text-align: center;
  padding: 2rem 1.5rem 2.5rem;
  background: var(--white);
}

.hero .tagline {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 22em;
  margin: 1.5rem auto 0;
  line-height: 1.4;
}

.hero .logo-graphic {
  margin: 0 auto;
  max-width: 320px;
}

.hero .logo-graphic img {
  margin: 0 auto;
}

/* ========== Section common ========== */
.section {
  padding: 2rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--text-dark);
}

/* ========== Story section ========== */
.story .story-image-wrap {
  text-align: center;
  margin-bottom: 1.5rem;
}

.story .story-image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  background: var(--border-light);
}

.story .story-body {
  font-size: 1rem;
  color: var(--text-dark);
}

.story .story-body p {
  margin: 0 0 1rem;
}

.story .story-body strong {
  font-weight: 600;
}

/* ========== Subscribe box (teal / white inverted) ========== */
.subscribe-box {
  background: var(--teal);
  color: var(--white);
  padding: 2rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius);
}

.subscribe-heading {
  font-family: var(--font-body);
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin: 0 0 0.25rem;
  text-align: center;
}

.subscribe-price {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--white);
  margin: 0 0 0.5rem;
  text-align: center;
  opacity: 0.95;
}

.subscribe-intro {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--white);
  margin: 0 0 1.5rem;
  text-align: center;
  opacity: 0.95;
  line-height: 1.4;
  max-width: 28em;
  margin-left: auto;
  margin-right: auto;
}

.subscribe-form .form-group {
  margin-bottom: 1rem;
}

.subscribe-form label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.subscribe-form input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  padding: 0.6rem 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.2);
}

.subscribe-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.75rem;
}

.subscribe-form .form-row .form-group:last-child {
  min-width: 5rem;
}

.subscribe-form .btn-subscribe {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--teal);
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.2s;
}

.subscribe-form .btn-subscribe:hover {
  opacity: 0.95;
}

@media (max-width: 480px) {
  .subscribe-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========== Support section ========== */
.support {
  text-align: center;
  padding-top: 0.75rem;
}

.support .support-heading {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.support .btn {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.support .btn:hover {
  opacity: 0.9;
}

.support .brand-graphic {
  text-align: center;
  margin-bottom: 1.5rem;
}

.support .brand-graphic img {
  margin: 0 auto;
  max-width: 180px;
}

/* ========== Contact section ========== */
.contact .contact-heading {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
}

.contact .contact-sub {
  font-size: 0.9375rem;
  color: var(--text-dark);
  margin: 0 0 1rem;
}

.contact .divider {
  height: 1px;
  background: var(--border-light);
  margin: 0 0 1rem;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(7, 175, 170, 0.2);
}

.contact-form .btn-send {
  width: 100%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.85rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}

.contact-form .btn-send:hover {
  opacity: 0.9;
}

.recaptcha-notice {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.4;
}

.recaptcha-notice a {
  color: var(--blue);
}

/* ========== Social / CTA (orange box) ========== */
.social-cta {
  text-align: center;
  padding: 2rem 1.5rem;
}

.social-cta .social-cta-box {
  background: var(--orange);
  color: var(--white);
  padding: 2rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius);
}

.social-cta .social-heading {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 1rem;
}

.social-cta .btn-facebook {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  background: var(--white);
  color: var(--orange);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
}

.social-cta .btn-facebook:hover {
  opacity: 0.95;
}

/* ========== Public activity page ========== */
.activity-public .activity-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--teal);
  margin: 0 0 0.5rem;
}

.activity-public .activity-date {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.activity-public .activity-description {
  margin-bottom: 1.5rem;
  white-space: pre-wrap;
}

.activity-public .activity-preview-wrap {
  margin-bottom: 1.5rem;
}

.activity-public .activity-preview-link {
  display: inline-block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.activity-public .activity-preview-link:hover {
  box-shadow: 0 4px 12px rgba(7, 175, 170, 0.3);
}

.activity-public .activity-preview-img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 400px;
  vertical-align: middle;
  cursor: pointer;
}

.activity-public .btn-download {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.2s;
}

.activity-public .btn-download:hover {
  opacity: 0.9;
}

/* ========== Footer ========== */
.site-footer {
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  border-top: 1px solid var(--border-light);
}

.site-footer .footer-links {
  margin: 1rem 0;
}

.site-footer .footer-links a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  margin: 0.5rem 0;
}

.site-footer .footer-links a:hover {
  color: var(--teal);
}

.site-footer .copyright {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 1rem 0 0.5rem;
}

/* ========== Floating chat ========== */
.chat-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(7, 175, 170, 0.4);
  z-index: 50;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.chat-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(7, 175, 170, 0.45);
}

.chat-fab svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ========== TrustedSite (optional badge area) ========== */
.trusted-badge {
  text-align: center;
  padding: 0.5rem 0;
}

.trusted-badge img {
  margin: 0 auto;
  display: inline-block;
}

/* ========== Responsive ========== */
@media (min-width: 600px) {
  .section {
    padding: 2.5rem 2rem;
  }
  .hero {
    padding: 3rem 2rem;
  }
  .story .story-image {
    width: 280px;
    height: 280px;
  }
}

@media (min-width: 900px) {
  .section {
    padding: 3rem 2rem;
    max-width: 800px;
  }
}
