:root {
  --sakura-pink: #ffdae0;
  --sakura-dark: #ff8fab;
  --shiny-gold: #fffdf0;
  --text-color: #5a4a42;
}

/* Base */
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--text-color);
  background-color: #fffafb;
  overflow-x: hidden;
}

h2, h3 {
  color: #d63384;
}

/* Sakura Animation */
.sakura-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99;
}

.petal {
  position: absolute;
  background-color: var(--sakura-pink);
  border-radius: 150% 0 150% 0;
  opacity: 0.7;
  animation: fall linear infinite;
  box-shadow: 0 0 5px white;
}

@keyframes fall {
  0% { transform: translateY(-10vh) translateX(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.8; }
  100% { transform: translateY(100vh) translateX(120px) rotate(360deg); opacity: 0; }
}

/* Header */
header {
  background: white;
  padding: 1rem 5%;
  box-shadow: 0 2px 10px rgba(255, 183, 197, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

/* ✅ LOGO FIX */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 70px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.3rem;
  font-weight: bold;
  color: #d63384;
}

.logo-sub {
  font-size: 0.9rem;
}

/* Buttons */
.nav-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.lang-btn {
  background: var(--sakura-dark);
  border: none;
  color: white;
  padding: 6px 14px;
  border-radius: 15px;
  cursor: pointer;
}

/* ✅ HERO (UPDATED BANNER) */
.hero {
  position: relative;
  height: 50vh;

  background-image: url("assets/bannerpic.png");
  background-size: 100%;
  background-position: center 45%;
  background-repeat: no-repeat;
  
  transform: scale(1.0);           /* ✅ subtle zoom-out */
  transform-origin: center;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Text ABOVE overlay */
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
}

/* Layout Containers */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
}

/* Content Boxes */
.explanation-box,
.activity-grid,
.business-pillars ol {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid var(--sakura-pink);
  box-shadow: 0 5px 15px rgba(255, 183, 197, 0.1);
}

/* Services */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;
  background: var(--shiny-gold);
}

.service-card {
  background: white;
  width: 300px;
  padding: 2rem;
  margin: 1rem;
  border-radius: 25px;
  text-align: center;
  border: 2px solid var(--sakura-pink);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 183, 197, 0.3);
}

.icon-sakura {
  font-size: 3rem;
  color: #ff69b4;
  margin-bottom: 1rem;
}

/* Activity Grid */
.activity-grid ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.activity-grid li {
  font-size: 0.95rem;
}

/* Contact */
.contact-section {
  padding: 4rem 5%;
  background: white;
  text-align: center;
}

#contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #d63384;
}

.form-group input,
.form-group textarea {
  padding: 0.8rem;
  border: 2px solid var(--sakura-pink);
  border-radius: 10px;
  outline: none;
}

/* Button */
.submit-btn {
  background: linear-gradient(45deg, #ff69b4, #ff8fab);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

/* Success Message */
#form-status.success {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  background: #e6fffa;
  color: #2c7a7b;
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #fdf0f3;
}

/* ✅ Mobile Fix */
@media (max-width: 768px) {
  .logo-main {
    font-size: 1rem;
  }

  .hero {
    height: 60vh;
  }

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

/* ✅ Teikan Banner */
.teikan-hero {
  position: relative;
  height: 35vh;

  background-image: url("assets/teikanbanner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Overlay (for readability) */
.teikan-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

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

.teikan-hero h1 {
  font-size: 2rem;
}

.teikan-hero {
  height: 50vh;
  width: 100%;
  overflow: hidden;
  display: block;
}

/* ✅ KEY CHANGE */
.teikan-banner-img {
  width: 100%;   /* slightly bigger than container */
  height: 100%;
  transform: scale(1.0);  /* ✅ zoom out */
  transform-origin: center;
}

/* Concept Section */
.concept {
  padding: 4rem 5%;
  background-color: white;
}

.concept h2 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.concept-intro h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.concept-intro p {
  line-height: 1.8;
  font-size: 1.1rem;
}

.shiny-promises-img {
  text-align: center;
  margin: 3rem 0;
}

.shiny-promises-img img {
  max-width: 750px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(255, 183, 197, 0.3);
  margin: 0 auto;
}

.concept-outro {
  text-align: center;
  background: #fffafb;
  padding: 2rem;
  border-radius: 20px;
  border: 1px dashed var(--sakura-dark);
}

.concept-outro h3 {
  margin-bottom: 1rem;
}

.concept-outro p {
  line-height: 1.8;
}

/* Contribute Section */
.contribute-teaser {
  padding: 4rem 5%;
  background: white;
}

.contribute-box {
  border-top: 8px solid var(--sakura-dark);
  border-bottom: 8px solid var(--sakura-dark);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  background: radial-gradient(circle, #fffafb 0%, white 100%);
}

.contribute-box h2 {
  font-size: 2.5rem;
  color: var(--sakura-dark);
  margin-bottom: 1.5rem;
}

.contribute-box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.contribute-btn {
  display: inline-block;
  background: var(--sakura-dark);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s;
}

.contribute-btn:hover {
  background: #d63384;
}

/* Donation Details */
.donation-details-section {
  padding: 5rem 5%;
  background: var(--shiny-gold);
}

.donation-details-section .section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.donation-message {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  line-height: 2;
  font-size: 1.1rem;
  color: var(--text-color);
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(255, 183, 197, 0.15);
  border-left: 5px solid var(--sakura-dark);
}

.donation-message p {
  margin-bottom: 1.5rem;
}

.donation-bank-info {
  text-align: center;
}

.donation-bank-info h2 {
  font-size: 2rem;
  color: var(--sakura-dark);
  margin-bottom: 1rem;
}

.bank-details-box {
  background: white;
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  border: 2px dashed var(--sakura-dark);
  border-radius: 10px;
  text-align: left;
  line-height: 1.8;
}

.bank-details-box p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}