@charset "UTF-8";

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  background-color: #e8f0d8;
  color: #2d3748;
  min-height: 100vh;
}

/* ── Navigation ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #f8f8f5;
  border-bottom: 3px solid #6B46C1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li a {
  display: block;
  padding: 16px 28px;
  color: #6B46C1;
  text-decoration: none;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background-color 0.2s, color 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #fff;
  background-color: #6B46C1;
}

/* ── Typography ── */
h1 {
  font-family: 'Tangerine', cursive;
  font-size: 5rem;
  color: #2d5016;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.15);
  margin: 0;
  line-height: 1.1;
}

h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  color: #4a7c59;
  letter-spacing: 0.02em;
  margin: 0 0 0.5em;
}

h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: #2d5016;
  margin: 0 0 0.4em;
}

p {
  margin: 0 0 1em;
}

a {
  color: #6B46C1;
  text-decoration: none;
}
a:hover {
  color: #8B5CF6;
  text-decoration: underline;
}

/* ── Layout ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c59 55%, #5a3a9a 100%);
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/Flowerlogo-320.png') center/contain no-repeat;
  opacity: 0.06;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 8rem;
  color: #fff;
  text-shadow: 0 0 40px rgba(255,255,255,0.4), 2px 4px 20px rgba(0,0,0,0.5);
  margin-bottom: 16px;
}

.hero .subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: #d4edbc;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  margin: 0;
  letter-spacing: 0.06em;
  font-style: italic;
  font-weight: 400;
}

/* ── Page header (inner pages) ── */
.page-header {
  text-align: center;
  padding: 48px 24px 28px;
}

.page-header h1 {
  font-size: 5.5rem;
}

/* ── Cards ── */
.card {
  background: rgba(255,255,255,0.88);
  border-radius: 14px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 32px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

/* ── About layout ── */
.about-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-row img {
  width: 260px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.about-row .about-text {
  flex: 1;
}

.about-row p {
  font-size: 1.1rem;
  line-height: 1.85;
}

/* ── Photo gallery ── */
.photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 8px;
}

.photo-grid img {
  width: 300px;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.photo-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.photo-grid img.enlarged {
  transform: scale(1.9);
  z-index: 10;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* ── Instagram / contact ── */
.section-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d5016;
  text-align: center;
  margin: 0 0 16px;
}

.instagram-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

/* ── Donate ── */
.donate-venmo-img {
  max-width: 340px;
  margin: 0 auto 28px;
  border-radius: 12px;
  border: 4px solid #6B46C1;
  display: block;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-purple {
  background: #6B46C1;
  color: #fff;
  box-shadow: 0 4px 14px rgba(107,70,193,0.35);
}

.btn-purple:hover {
  background: #5a36b0;
  color: #fff;
  box-shadow: 0 6px 20px rgba(107,70,193,0.45);
}

.btn-blue {
  background: #0070ba;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,112,186,0.35);
}

.btn-blue:hover {
  background: #005c99;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,112,186,0.45);
}

/* ── Footer ── */
footer {
  background-color: #2d5016;
  color: #c8e6b0;
  text-align: center;
  padding: 28px 24px;
  font-size: 15px;
  font-family: 'Playfair Display', Georgia, serif;
}

footer a {
  color: #a8d48a;
}

footer p {
  margin: 0;
}

.footer-location {
  font-style: italic;
  font-size: 13px;
  margin-bottom: 6px !important;
  opacity: 0.85;
}

/* ── Animations ── */
.hidden {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.3s ease, transform 1.3s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

.left-scroll {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1.3s ease, transform 1.3s ease;
}

.showleft {
  opacity: 1;
  transform: translateX(0);
}

/* ── Privacy page ── */
.prose {
  font-size: 1rem;
  line-height: 1.85;
  color: #2d3748;
}

.prose h2 {
  font-size: 1.4rem;
  margin-top: 1.6em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-row,
  .about-row.reverse {
    flex-direction: column;
  }

  .about-row img {
    width: 100%;
    height: 260px;
  }
}

@media (max-width: 768px) {
  nav ul li a {
    padding: 12px 16px;
    font-size: 15px;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero .subtitle {
    font-size: 1.15rem;
  }

  .photo-grid img {
    width: 90%;
    height: auto;
    min-height: 200px;
  }

  .card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  nav ul li a {
    padding: 10px 12px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .page-header h1 {
    font-size: 4rem;
  }
}
