/* experimental/users/acmcarther/for-grandma/frontend/src/style.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #FBF8F3;
  --card-bg: #FFFFFF;
  --text: #2D2A26;
  --text-muted: #6B6560;
  --border: #E5DDD0;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
}
body {
  background: var(--bg);
  color: var(--text);
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: 20px;
  line-height: 1.6;
}
.app {
  min-height: 100vh;
}
.simple-view {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}
.simple-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.simple-header h1 {
  font-size: 2.8rem;
  color: #2D2A26;
  margin-bottom: 0.75rem;
}
.simple-intro {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.facility-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border-top: 6px solid;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.facility-header {
  padding: 1.5rem 1.75rem 0;
}
.facility-gallery-section {
  padding: 0 1.75rem 1.75rem;
}
.gallery-label {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  font-style: italic;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.photo-grid-item {
  position: relative;
  border: none;
  padding: 0;
  cursor: pointer;
  background: #E8E0D0;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  transition: transform 0.15s, box-shadow 0.15s;
}
.photo-grid-item:hover,
.photo-grid-item:focus-visible {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  outline: none;
  z-index: 1;
}
.photo-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-grid-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  color: white;
  font-size: 0.8rem;
  padding: 0.75rem 0.5rem 0.4rem;
  text-align: center;
}
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(90vw, 900px);
  max-height: 90vh;
}
.lightbox-img {
  max-width: 100%;
  max-height: calc(90vh - 80px);
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.lightbox-caption {
  color: #EEE;
  font-size: 1.1rem;
  margin-top: 0.75rem;
  text-align: center;
}
.lightbox-counter {
  color: #AAA;
  font-size: 0.9rem;
  margin-top: 0.4rem;
}
.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 1.75rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  line-height: 1;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}
.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: white;
  font-size: 3rem;
  width: 60px;
  height: 80px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  line-height: 1;
}
.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lightbox-prev {
  left: 1rem;
}
.lightbox-next {
  right: 1rem;
}
.facility-body {
  padding: 0 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.facility-name {
  font-size: 2rem;
  font-weight: bold;
}
.facility-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: -0.5rem;
}
.highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0 1.75rem;
}
.highlight-item {
  font-size: 1.1rem;
  line-height: 1.5;
}
.facility-contact {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 1.75rem;
}
.facility-address {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.phone-link {
  display: inline-block;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  transition: opacity 0.15s;
}
.phone-link:hover {
  opacity: 0.85;
}
.simple-footer {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.family-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  padding: 0.5rem;
}
.family-link:hover {
  color: var(--text);
}
.family-view {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.family-header {
  margin-bottom: 2.5rem;
}
.family-header h1 {
  font-size: 2.2rem;
  margin: 0.75rem 0 0.5rem;
}
.family-header p {
  color: var(--text-muted);
  font-size: 1rem;
}
.back-button {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.4rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  color: var(--text-muted);
}
.back-button:hover {
  background: var(--border);
  color: var(--text);
}
.comparison-table-wrap {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 2rem;
}
.comparison-table-wrap h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.comparison-table th,
.comparison-table td {
  padding: 0.65rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  font-size: 1.1rem;
  padding-bottom: 0.75rem;
}
.comparison-table td:first-child {
  color: var(--text-muted);
  width: 20%;
  font-size: 0.9rem;
}
.comparison-note {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.family-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
}
.family-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border-left: 6px solid;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.family-card-header {
  padding: 1.5rem 1.75rem;
  color: white;
}
.family-card-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}
.family-card-header p {
  font-size: 0.95rem;
  opacity: 0.9;
}
.family-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.family-section h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.family-section ul {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.family-section li {
  font-size: 0.95rem;
  line-height: 1.5;
}
.family-section.caution {
  background: #FFF8EC;
  border-radius: 8px;
  padding: 1rem 1.25rem;
}
.family-section.caution h3 {
  color: #8A6500;
}
.family-section.caution p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.detail-table td {
  padding: 0.5rem 0.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.detail-table td:first-child {
  color: var(--text-muted);
  width: 35%;
  padding-right: 1rem;
}
.detail-table a {
  color: inherit;
}
@media (max-width: 700px) {
  body {
    font-size: 18px;
  }
  .simple-header h1 {
    font-size: 2rem;
  }
  .facility-name {
    font-size: 1.6rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .family-cards-grid {
    grid-template-columns: 1fr;
  }
  .comparison-table td:first-child {
    width: 30%;
  }
}
/*# sourceMappingURL=bundle.css.map */
