/* ===== HERO SECTION ===== */
.garden-intro {
  background: linear-gradient(135deg, #cce0ff, #e6f0ff);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.garden-intro::before {
  content: "";
  background: url('images/garden-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.garden-intro .intro-container {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  background: rgba(255,255,255,0.9);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease;
}

.garden-intro h1 {
  font-size: 2.8rem;
  color: #004080;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.garden-intro p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.cta-btn {
  display: inline-block;
  background: #004080;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #0066cc;
  transform: translateY(-2px);
}

/* ===== GALLERY ===== */
.garden-gallery {
  background: #f5f8fc;
  padding: 4rem 2rem;
  text-align: center;
}

.garden-gallery h2 {
  color: #004080;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.photo {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.photo:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.photo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.photo-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(90deg, #004080, #0066cc);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.cta-strip h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-strip p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .garden-intro h1 { font-size: 2rem; }
  .garden-intro p { font-size: 1rem; }
  .gallery-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .gallery-container { grid-template-columns: 1fr; }
  .garden-intro { padding: 4rem 1rem; }
}
