/* NPO Yuai Sakura Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Shippori+Mincho:wght@400;500;600;700&display=swap');

/* Color Variables and Base Styling */
:root {
  --color-sakura-light: #fff5f5;
  --color-sakura-pink: #f4c2c2;
  --color-sakura-primary: #e09696;
  --color-sakura-dark: #b86262;
  --color-teal-primary: #4a8f82;
  --color-teal-dark: #2f6158;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  color: #333333;
  background-color: #fcfbfa;
}

.font-serif-jp {
  font-family: 'Shippori Mincho', 'Hiragino Mincho ProN', 'MS Mincho', serif;
}

/* Custom Soft Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Welfare Accent Card style */
.welfare-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(244, 194, 194, 0.3);
  transition: all 0.3s ease;
}

.welfare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(244, 194, 194, 0.15);
  border-color: var(--color-sakura-primary);
}

/* Styled Table for Japanese corporate details */
.corporate-table th {
  background-color: #f7ebeb;
  color: #7a3e3e;
  font-weight: 600;
  text-align: left;
  border-bottom: 2px solid #e09696;
}

.corporate-table td {
  border-bottom: 1px solid #f2dede;
}

/* Input Styles for Accessible Contact Form */
.accessible-input {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 14px;
  width: 100%;
  transition: all 0.3s;
}

.accessible-input:focus {
  outline: none;
  border-color: var(--color-teal-primary);
  box-shadow: 0 0 0 3px rgba(74, 143, 130, 0.2);
}

/* Helper Badge */
.category-badge {
  background-color: #e6f2f0;
  color: var(--color-teal-dark);
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Responsive Map Container */
.map-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
