/* ===========================
   Home Page Styles
   =========================== */

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 180px;
  overflow: hidden;
  background: linear-gradient(160deg, #e8f0e3 0%, #f5ede0 40%, #faf7f0 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(122, 173, 90, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 154, 108, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-leaves { position: absolute; inset: 0; }

.leaf {
  position: absolute;
  font-size: 40px;
  opacity: 0.35;
  animation: floatLeaf 6s ease-in-out infinite;
}

.leaf-1 { top: 10%; left: 5%;  animation-delay: 0s;    font-size: 50px; }
.leaf-2 { top: 20%; right: 8%; animation-delay: 1.5s;  font-size: 36px; }
.leaf-3 { bottom: 25%; left: 10%; animation-delay: 3s; font-size: 44px; }
.leaf-4 { bottom: 15%; right: 6%; animation-delay: 4.5s; font-size: 32px; }

@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(8deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  background: var(--green-deep);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeDown 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.3;
  margin-bottom: 24px;
  animation: fadeDown 0.8s 0.1s ease both;
}

.hero-title-sub {
  display: block;
  font-family: var(--font-en);
  font-style: italic;
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 400;
  color: var(--earth-mid);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.hero-text {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 40px;
  animation: fadeDown 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown 0.8s 0.3s ease both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Info bar */
.hero-info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 24px;
  z-index: 2;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 36px;
}

.info-item .info-icon { font-size: 24px; }

.info-item div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.info-item strong {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

.info-divider {
  width: 1px;
  height: 40px;
  background: var(--green-pale);
}

/* Features */
.features-section { background: white; }

.features-header { text-align: center; margin-bottom: 56px; }
.features-header .divider { margin: 20px auto 0; }

.feature-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid rgba(122, 173, 90, 0.15);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-light);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  font-size: 44px;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
}

/* Season */
.season-section {
  background: var(--green-pale);
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.season-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.season-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.season-emoji {
  background: linear-gradient(135deg, var(--earth-pale), var(--green-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  font-size: 72px;
}

.season-info { padding: 24px; }

.season-tag {
  display: inline-block;
  background: var(--earth-pale);
  color: var(--earth-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.season-info h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.season-info p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* Events */
.events-section { background: white; }
.events-header { margin-bottom: 48px; }

.events-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 32px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--green-mid);
  transition: var(--transition);
  cursor: pointer;
}

.event-item:hover {
  background: var(--green-pale);
  border-color: var(--green-deep);
  transform: translateX(6px);
}

.event-month {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 72px;
  background: var(--green-deep);
  border-radius: var(--radius-sm);
  color: white;
  flex-shrink: 0;
}

.month-num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.month-label {
  font-size: 12px;
  opacity: 0.8;
}

.event-content { flex: 1; }

.event-content h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.event-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

.event-arrow {
  font-size: 20px;
  color: var(--green-mid);
  transition: transform 0.2s;
}

.event-item:hover .event-arrow { transform: translateX(4px); }

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-emoji {
  font-size: 56px;
  margin-bottom: 24px;
  animation: floatLeaf 4s ease-in-out infinite;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 2;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: white;
  color: var(--green-deep);
}

.cta-section .btn-primary:hover {
  background: var(--earth-pale);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 100px 20px 160px; min-height: 100svh; }
  .hero-info-bar { flex-direction: column; gap: 12px; padding: 20px; }
  .info-divider { width: 80px; height: 1px; }
  .info-item { padding: 0; }
  .season-grid { grid-template-columns: 1fr; }
  .event-item { padding: 20px; gap: 16px; }
}
