/* =============================================
   FF Southeast – Floral Theme Stylesheet
   ============================================= */

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

:root {
  --rose:       #c0617a;
  --rose-light: #f2d7df;
  --rose-dark:  #8c3a50;
  --sage:       #6b8f71;
  --sage-light: #d4e6d6;
  --cream:      #fdf6f0;
  --white:      #ffffff;
  --charcoal:   #2d2d2d;
  --gray:       #666666;
  --gray-light: #f5f5f5;
  --border:     #e0cdd3;
  --shadow:     rgba(0, 0, 0, 0.08);
  --font-body:  'Georgia', 'Times New Roman', serif;
  --font-sans:  'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
}

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

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

a:hover {
  text-decoration: underline;
  color: var(--rose-dark);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: normal;
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* ---------- Layout Helpers ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__header h2 {
  color: var(--rose-dark);
}

.section__header p {
  color: var(--gray);
  max-width: 580px;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--rose), var(--sage));
  border: none;
  margin: 1rem auto;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 246, 240, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav__logo .flower {
  font-size: 1.6rem;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav__links a {
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--rose);
  text-decoration: none;
}

.nav__cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  transition: background 0.2s !important;
}

.nav__cta:hover {
  background: var(--rose-dark) !important;
  text-decoration: none !important;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(192, 97, 122, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(107, 143, 113, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(192, 97, 122, 0.12) 0%, transparent 40%),
    var(--cream);
  padding-top: 5rem;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__text h1 {
  color: var(--rose-dark);
  margin-bottom: 1.25rem;
}

.hero__text h1 span {
  color: var(--sage);
}

.hero__text p {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 460px;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  text-decoration: none;
}

.btn--primary {
  background: var(--rose);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--rose-dark);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose);
  margin-left: 1rem;
}

.btn--outline:hover {
  background: var(--rose-light);
  color: var(--rose-dark);
}

/* Floral SVG illustration area */
.hero__art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.floral-art {
  width: 100%;
  max-width: 420px;
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__text h2 {
  color: var(--rose-dark);
  margin-bottom: 0.5rem;
}

.about__text p {
  color: var(--gray);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1.25rem;
  background: var(--rose-light);
  border-radius: 12px;
}

.stat__number {
  font-family: var(--font-body);
  font-size: 2rem;
  color: var(--rose-dark);
  display: block;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.about__image-placeholder {
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--sage-light) 100%);
  border-radius: 20px;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--rose-dark);
  font-family: var(--font-body);
  font-size: 1.1rem;
}

.about__image-placeholder .big-flower {
  font-size: 5rem;
}

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}

.service-card__icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--rose-dark);
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ---------- Subscribe / Form ---------- */
.subscribe {
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--sage-light) 100%);
}

.subscribe__inner {
  max-width: 640px;
  margin: 0 auto;
}

.subscribe__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.subscribe__header h2 {
  color: var(--rose-dark);
}

.subscribe__header p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.form {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.form__group {
  margin-bottom: 1.4rem;
}

.form__group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form__group label .required {
  color: var(--rose);
  margin-left: 2px;
}

.form__group input[type="text"],
.form__group input[type="email"],
.form__group input[type="tel"] {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form__group input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(192, 97, 122, 0.15);
}

.form__group input::placeholder {
  color: #b0b0b0;
}

/* SMS Disclosure Checkbox */
.disclosure-box {
  background: var(--gray-light);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  margin-bottom: 1.4rem;
}

.disclosure-label {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.55;
}

.disclosure-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--rose);
  cursor: pointer;
}

.disclosure-label a {
  color: var(--rose);
  font-weight: 600;
}

.disclosure-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.form__submit {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  background: var(--rose);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: var(--font-sans);
}

.form__submit:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
}

.form__submit:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.form__success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--sage);
}

.form__success .checkmark {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.form__success h3 {
  color: var(--sage);
  margin-bottom: 0.5rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: #ccc;
  padding: 3rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer__brand .logo-text {
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__col ul {
  list-style: none;
}

.footer__col ul li {
  margin-bottom: 0.5rem;
}

.footer__col ul li a {
  color: #aaa;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__col ul li a:hover {
  color: var(--rose-light);
  text-decoration: none;
}

.footer__col address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer__bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: #888;
}

.footer__bottom a {
  color: #aaa;
}

.footer__bottom a:hover {
  color: var(--rose-light);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__inner,
  .about__grid {
    grid-template-columns: 1fr;
  }

  .hero__art {
    display: none;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .nav__links {
    display: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .about__stats {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .form {
    padding: 1.75rem 1.25rem;
  }

  .btn--outline {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .hero__text .btn-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
