/* ===== BASE ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #f9fff9;
  color: #2f7e32;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #2f7e32;
  text-decoration: none;
  transition: 0.3s;
}
.news-preview {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Noto Sans JP', sans-serif;
}

.news-preview h2 {
  font-size: 26px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e5d5f5;
  padding-bottom: 10px;
  color: #7a4da7;
}

.news-item {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  gap: 20px;
}

.news-item time {
  min-width: 100px;
  font-size: 14px;
  color: #999;
}

.news-content {
  flex: 1;
}

.news-content h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: #333;
}

.news-content p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

a:hover {
  color: #1d4f21;
}

/* ===== HEADER ===== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  border-bottom: 2px solid #d6ecd6;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-logo img.logo-img {
  height: 50px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.site-logo img:hover {
  transform: scale(1.05);
}

.site-navigation ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.site-navigation a {
  font-weight: 700;
  font-size: 0.95rem;
}

/* ===== HERO ===== */
.hero {
  flex: 1;
  text-align: center;
  padding: 4rem 2rem 3rem;
  background: linear-gradient(to bottom, #fafffa, #ffffff);
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2f7e32;
  text-shadow: 1px 1px 4px rgba(47,126,50,0.3);
}
.hero p {
  font-size: 1.25rem;
  color: #4a744a;
  margin-bottom: 2.5rem;
}

/* ===== VÍDEO ===== */
.video-container {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
}
.video-container iframe {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(47, 126, 50, 0.25);
  width: 90%;
  max-width: 640px;
  height: 360px;
  transition: transform 0.3s ease;
}
.video-container iframe:hover {
  transform: scale(1.03);
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: #f0fdf0;
  padding: 1.8rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #2f7e32;
  border-top: 2px solid #d6ecd6;
  margin-top: 2rem;
}

.social-icons {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icons a {
  font-weight: 700;
  font-size: 1rem;
}

/* ===== MENU MOBILE ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: #2f7e32;
  color: white;
  padding: 3rem 1.5rem 3rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: 'Noto Sans JP', sans-serif;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  color: white;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 0.5rem;
}

.mobile-menu a span.jp {
  font-size: 14px;
  font-weight: 300;
  margin-left: 1rem;
  white-space: nowrap;
  opacity: 0.9;
}

.menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 32px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== HAMBURGUER VISIBLE ONLY ON MOBILE ===== */
.menu-toggle {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  color: #2f7e32;
  cursor: pointer;
}

@media (max-width: 768px) {
  .site-navigation {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .video-container iframe {
    height: 200px;
  }

  .site-footer {
    font-size: 10px;
    padding: 1.5rem 1rem;
  }
}
