/* Sunday Blooms — Wedding Florist, East London */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --sage: #8BA888;
  --sage-dark: #5A7A56;
  --sage-pale: #EFF5ED;
  --blush: #F2D5D0;
  --blush-dark: #D4A5A0;
  --cream: #FDFAF7;
  --charcoal: #2D2D2D;
  --grey: #6D6D6D;
  --ivory: #F9F6F1;
  --gold: #B8944F;
  --white: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.75;
  font-weight: 300;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  color: var(--sage-dark);
}

h1 { font-size: 2.8rem; line-height: 1.15; margin-bottom: 0.5em; }
h2 { font-size: 2rem; margin-bottom: 0.5em; }
h3 { font-size: 1.35rem; margin-bottom: 0.3em; }

a { color: var(--sage-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

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

/* Navigation */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid rgba(139,168,136,0.2);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sage-dark);
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  text-decoration: none;
}

.brand svg { width: 28px; height: 28px; flex-shrink: 0; }

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

.nav-links a {
  color: var(--grey);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--sage-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--sage-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,45,45,0.15), rgba(45,45,45,0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 700px;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.4rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.hero-content p {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-top: 0.5em;
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.85rem 2.2rem;
  background: var(--sage);
  color: var(--white);
  border-radius: 2px;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background 0.2s;
}

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

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--sage);
  color: var(--sage-dark);
}

.btn-outline:hover { background: var(--sage); color: var(--white); }

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Section styling */
.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-intro p { font-size: 1.05rem; color: var(--grey); }

.bg-sage { background: var(--sage-pale); }
.bg-ivory { background: var(--ivory); }

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

.portfolio-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  transition: opacity 0.3s;
}

.portfolio-grid img:hover { opacity: 0.88; }

/* Service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(139,168,136,0.2);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.service-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.06); }

.service-card img { width: 100%; height: 240px; object-fit: cover; display: block; }

.service-card-body { padding: 1.8rem; }
.service-card-body h3 { margin-bottom: 0.5rem; }
.service-card-body p { font-size: 0.92rem; color: var(--grey); }

.price-from {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gold);
  text-transform: uppercase;
}

/* Page header */
.page-header {
  background: var(--sage-pale);
  padding: 4.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(139,168,136,0.2);
}

.page-header h1 { margin-bottom: 0.3em; }
.page-header p { font-size: 1.05rem; color: var(--grey); max-width: 580px; margin: 0 auto; }

/* Content body */
.content-body { max-width: 800px; margin: 0 auto; padding: 3rem 2rem; }
.content-body p { margin-bottom: 1.5em; font-size: 1.02rem; }
.content-body h2 { margin-top: 2.5rem; }
.content-body h3 { margin-top: 1.5rem; }
.content-body img { width: 100%; border-radius: 2px; margin: 1.5rem 0; display: block; }
.content-body ul, .content-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.content-body li { margin-bottom: 0.5rem; }

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.two-col img { width: 100%; border-radius: 2px; display: block; }

/* Testimonial */
.testimonial {
  border-left: 3px solid var(--sage);
  padding: 2rem 2.5rem;
  margin: 3rem 0;
  background: var(--sage-pale);
  border-radius: 0 2px 2px 0;
}

.testimonial p {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--sage-dark);
  margin-bottom: 0.6rem;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--grey);
}

/* Season table */
.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.season-card {
  background: var(--white);
  border: 1px solid rgba(139,168,136,0.2);
  border-radius: 2px;
  padding: 1.8rem;
  border-top: 3px solid var(--sage);
}

.season-card h3 { color: var(--sage-dark); margin-bottom: 0.5rem; }
.season-card p { font-size: 0.9rem; color: var(--grey); }
.season-card ul { list-style: none; margin-top: 0.8rem; }
.season-card li {
  font-size: 0.88rem;
  color: var(--charcoal);
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-col h4 {
  font-family: 'DM Serif Display', serif;
  color: var(--sage);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.footer-col a:hover { color: var(--sage); }
.footer-col p { font-size: 0.85rem; }

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 2rem 1.2rem;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(139,168,136,0.2);
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: block; }
  .hero { height: 60vh; min-height: 380px; }
  .hero-content h1 { font-size: 2.4rem; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .container { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .site-nav { padding: 0 1.2rem; }
  .season-grid { grid-template-columns: 1fr; }
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
