/* ==========================================================================
   Shalom House of Plainfield — Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

/* ---------- Design tokens ---------- */
:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 20%;

  --card: 0 0% 100%;
  --card-foreground: 0 0% 20%;

  --primary: 300 100% 18%;
  --primary-foreground: 0 0% 100%;

  --secondary: 300 20% 95%;
  --secondary-foreground: 300 100% 18%;

  --muted: 120 20% 96%;
  --muted-foreground: 0 0% 40%;

  --accent: 110 97% 32%;
  --accent-foreground: 0 0% 100%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;

  --border: 300 15% 88%;
  --input: 300 15% 88%;
  --ring: 300 100% 18%;

  --radius: 0.5rem;

  --banner-bg: 300 100% 18%;
  --panel-bg: 40 30% 96%;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page-container {
  width: 100%;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}
.page-container.narrow  { max-width: 900px; }
.page-container.medium  { max-width: 1000px; }
.page-container.wide    { max-width: 1100px; }

.min-h-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 1.5rem;
  height: 2.5rem;
  border: none;
  transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.15s ease;
  text-decoration: none;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.btn-primary:hover { background-color: hsl(var(--primary) / 0.9); }

.btn-accent {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}
.btn-accent2 {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}
.btn-accent:hover { background-color: hsl(var(--accent) / 0.9); }

.btn-sm { height: 2.25rem; padding: 0 0.75rem; font-size: 0.8rem; }
.btn-lg { height: 2.75rem; padding: 0 2rem; }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.6; pointer-events: none; }
/*body > div > main > div > div > div:nth-child(2) > a:nth-child(3),
body > div > main > div > div > div:nth-child(2) > a:nth-child(5)
{
  
  width:30%;
  
}*/

.btn3 {
    display: flex;

    justify-content: center; /* Centers horizontally */
}

.btn2 {
    padding: 0.5rem 1rem; /* Top/Bottom: 0.5rem, Left/Right: 1rem */
    display: inline-block;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}

.header-top {
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(var(--border));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
.brand-text {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  font-size: 1rem;
  color: hsl(var(--primary));
}
.brand-text .big { font-size: 125%; }
.brand-text .accent-part { color: hsl(var(--accent)); }

@media (min-width: 640px) {
  .header-inner { padding: 0.75rem 2rem; }
  .brand { gap: 0.75rem; }
  .brand img { width: 2.5rem; height: 2.5rem; }
  .brand-text { font-size: 1.25rem; }
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.desktop-nav a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-family: 'Lato', sans-serif;
  color: hsl(var(--foreground) / 0.8);
  border-radius: calc(var(--radius) - 2px);
  transition: color 0.2s ease, background-color 0.2s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: hsl(var(--primary));
  background-color: hsl(var(--secondary) / 0.5);
}

@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.call-link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .call-link.show { display: inline-flex; }
}

.menu-toggle {
  display: inline-flex;
  background: none;
  border: none;
  padding: 0.5rem;
  color: hsl(var(--foreground));
}
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}
.menu-toggle svg { width: 24px; height: 24px; }

.mobile-nav {
  display: none;
  border-top: 1px solid hsl(var(--border));
  padding: 0.75rem 1rem;
}
.mobile-nav.open { display: block; }
@media (min-width: 1024px) {
  .mobile-nav { display: none !important; }
}
.mobile-nav a {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-family: 'Lato', sans-serif;
  color: hsl(var(--foreground) / 0.8);
  border-radius: calc(var(--radius) - 2px);
}
.mobile-nav a:hover {
  color: hsl(var(--primary));
  background-color: hsl(var(--secondary) / 0.5);
}
.mobile-nav .btn { width: 100%; margin-top: 0.5rem; }
.mobile-nav .call-link { display: flex; padding: 0.625rem 0.75rem; }

.verse-banner {
  background-color: hsl(var(--banner-bg));
  padding: 0.5rem 1rem;
  text-align: center;
}
.verse-banner p {
  font-family: 'Lato', sans-serif;
  font-style: italic;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.9);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.4;
}
.verse-banner .attribution {
  margin-left: 0.5rem;
  font-style: normal;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
@media (min-width: 768px) {
  .verse-banner p { font-size: 0.875rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero { min-height: 80vh; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(2px);
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero-content p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.7;
  font-weight: 300;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
@media (min-width: 768px) {
  .hero-content h1 { font-size: 3rem; }
  .hero-content p { font-size: 1.25rem; }
}
@media (min-width: 1024px) {
  .hero-content h1 { font-size: 3.75rem; }
}

/* ---------- Restoration / Story section ---------- */
.restoration {
  padding: 5rem 0;
  background-color: hsl(var(--background));
}
@media (min-width: 768px) {
  .restoration { padding: 7rem 0; }
}
.restoration .container {
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .restoration .container { padding: 0 2rem; }
}
.restoration-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .restoration-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.restoration-photo {
  aspect-ratio: 3 / 4;
  max-height: 520px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.restoration-photo img {
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at center, black 60%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at center, black 60%, transparent 100%);
}
.restoration-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .restoration-text h2 { font-size: 1.875rem; }
}
.restoration-text p {
  color: hsl(var(--foreground) / 0.9);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .restoration-text p { font-size: 1.125rem; }
}

/* ---------- CTA / newsletter section ---------- */
.cta-section {
  padding: 5rem 0;
  background-color: hsl(var(--muted));
  text-align: center;
}
.cta-section .container {
  max-width: 42rem;
  padding: 0 1.5rem;
}
.cta-section .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1.5rem;
  color: hsl(var(--accent));
}
.cta-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cta-section h2 { font-size: 1.875rem; }
}
.cta-section > .container > p {
  color: hsl(var(--foreground) / 0.8);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .cta-form { flex-direction: row; }
}
.cta-form input[type="email"] { flex: 1; }
.cta-success {
  color: hsl(var(--accent));
  font-weight: 600;
  font-size: 1.125rem;
  margin-top: 1.5rem;
}

/* ---------- Form fields ---------- */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  display: block;
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid hsl(var(--input));
  background-color: hsl(var(--background));
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: hsl(var(--foreground));
  height: 2.5rem;
}
textarea { height: auto; min-height: 6rem; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.3);
}
label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.375rem;
}

/* ---------- Footer ---------- */
.site-footer {
  color: hsl(var(--primary-foreground));
  background-color: hsl(var(--banner-bg));
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) {
  .footer-inner { padding: 2rem; }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.footer-brand img { width: 2.5rem; height: 2.5rem; object-fit: contain; }
.footer-brand h3 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.25rem;
  font-weight: 600;
}
.footer-brand h3 .big { font-size: 125%; }
.footer-col p {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .footer-contact { align-items: center; text-align: center; }
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-contact-item svg { flex-shrink: 0; width: 18px; height: 18px; color: rgba(255,255,255,0.7); }
.footer-contact-item span, .footer-contact-item a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .footer-social { justify-content: center; }
}
.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.footer-social a:hover { background-color: rgba(255,255,255,0.2); }
.footer-social svg { width: 20px; height: 20px; }
.footer-callout {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer-callout { align-items: center; text-align: center; }
}
.footer-callout p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
}
.footer-bottom {
  padding: 1rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

/* ---------- Generic page header/section styles ---------- */
.page-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  border-bottom: 2px solid hsl(var(--border));
  padding-bottom: 1.25rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .page-title { font-size: 3rem; }
}
.page-subtitle {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin: 0.5rem 0 1.25rem;
}
@media (min-width: 768px) {
  .page-subtitle { font-size: 1.875rem; }
}
.body-text {
  color: hsl(var(--foreground) / 0.8);
  line-height: 1.7;
}
.body-text + .body-text { margin-top: 1rem; }

.panel {
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.08);
  background-color: hsl(var(--panel-bg));
  margin-bottom: 2.5rem;
}
.panel-block { margin-bottom: 2rem; text-align: left; }
.panel-block h3 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin: 2rem 0 0.5rem;
}
@media (min-width: 768px) {
  .panel-block h3 { font-size: 1.125rem; }
}

.about-cta {
  padding: 2.5rem 0;
  text-align: center;
  margin-top: 4rem;
}
.about-cta p { color: hsl(var(--foreground) / 0.8); margin-bottom: 0.5rem; }

/* ---------- Our Care page ---------- */
.carousel {
  width: 100%;
  max-width: 1000px;
  margin: 1.5rem auto 0;
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.carousel-frame {
  aspect-ratio: 16 / 9;
  background-color: hsl(var(--muted));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.carousel-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.carousel-frame img.active { opacity: 1; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0 3rem;
}
.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: hsl(var(--muted-foreground) / 0.3);
  transition: background-color 0.2s ease;
  padding: 0;
}
.carousel-dots button.active { background-color: hsl(var(--primary)); }

.care-intro {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto 4rem;
}
.care-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
}
.care-card {
  flex: 1;
  min-width: 300px;
  padding: 2.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08);
  background-color: hsl(var(--panel-bg));
  transition: transform 0.2s ease;
}
.care-card:hover { transform: translateY(-4px); }
.care-card h2 {
  font-size: 2rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
  text-align: center;
  font-style:italic;
}
.care-card:hover { transform: translateY(-4px); }
.care-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .care-card h3 { font-size: 1.25rem; }
}
.care-card ul { display: flex; flex-direction: column; gap: 1rem; color: hsl(var(--foreground) / 0.8); }
.care-card li { display: flex; align-items: flex-start; gap: 0.5rem; }
.care-card li svg { color: hsl(var(--accent)); flex-shrink: 0; margin-top: 0.2rem; width: 16px; height: 16px; }

/* ---------- Ways to Give ---------- */
.give-intro {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto 4rem;
  font-size: 1.125rem;
  color: hsl(var(--foreground) / 0.8);
  line-height: 1.7;
}
.give-intro p + p { margin-top: 1rem; }
.give-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .give-grid { grid-template-columns: 1fr 1fr; }
}
.give-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.give-card:hover { transform: translateY(-4px); }
.give-card .icon-wrap { display: flex; justify-content: center; margin-bottom: 1rem; }
.give-card .icon-wrap svg { width: 32px; height: 32px; color: hsl(var(--primary)); }
.give-card.accent .icon-wrap svg { color: hsl(var(--accent)); }
.give-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .give-card h3 { font-size: 1.25rem; }
}
.give-card p {
  flex-grow: 1;
  color: hsl(var(--foreground) / 0.7);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.give-more {
  background-color: hsl(var(--panel-bg));
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  padding: 2.5rem;
  text-align: center;
  max-width: 50rem;
  margin: 3rem auto 0;
}
.give-more h3 { font-size: 1.5rem; font-weight: 700; color: #5C005C; margin-bottom: 1rem; }
.give-more p { color: hsl(var(--foreground) / 0.8); line-height: 1.7; }
.give-legal {
  text-align: center;
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid hsl(var(--border));
}
.give-legal p:first-child { font-weight: 600; color: hsl(var(--foreground)); margin-bottom: 0.5rem; }
.give-legal p:last-child { color: hsl(var(--muted-foreground)); font-style: italic; font-size: 0.875rem; }

/* ---------- Community page ---------- */
.community-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
.community-content { max-width: 1000px; padding: 2.5rem; text-align: center; }
.community-content h1 { font-size: 2.25rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 1.5rem; }
@media (min-width: 768px) {
  .community-content h1 { font-size: 3rem; }
}
.community-content img {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.community-content a.img-link { display: inline-block; transition: opacity 0.2s ease; }
.community-content a.img-link:hover { opacity: 0.9; }
.community-content .tagline {
  color: hsl(var(--muted-foreground));
  font-style: italic;
  margin-top: 1.5rem;
  font-size: 1.125rem;
}

/* ---------- FAQ page (accordion) ---------- */
.faq-header { text-align: center; margin-bottom: 4rem; }
.faq-header h1 { font-size: 2.25rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 1rem; }
@media (min-width: 768px) {
  .faq-header h1 { font-size: 3rem; }
}
.faq-header p { color: hsl(var(--muted-foreground)); font-style: italic; }

.accordion { display: flex; flex-direction: column; gap: 0.5rem; }
.accordion-item { border-bottom: 2px solid hsl(var(--border)); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  padding: 1.25rem 0;
}
.accordion-trigger .chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}
.accordion-trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.accordion-content-inner {
  padding-bottom: 1.5rem;
  max-width: 700px;
  color: hsl(var(--foreground));
  font-size: 1rem;
  line-height: 1.7;
}
.accordion-content-inner .call-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.lodging-panel {
  margin-top: 4rem;
  padding: 2.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08);
  background-color: hsl(var(--panel-bg));
}
.lodging-panel > h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
  border-bottom: 1px solid hsl(var(--border));
  padding-bottom: 0.75rem;
  text-align: center;
}
.lodging-panel > p { color: hsl(var(--foreground)); margin-bottom: 2rem; }
.hotel-list { display: flex; flex-direction: column; gap: 1.5rem; }
.hotel-card {
  background-color: hsl(var(--background) / 0.6);
  padding: 1.5rem;
  border-radius: var(--radius);
}
.hotel-card strong { display: block; font-size: 1.125rem; color: hsl(var(--foreground)); margin-bottom: 0.25rem; }
.hotel-card p { color: hsl(var(--foreground) / 0.8); font-size: 0.875rem; margin-bottom: 0.25rem; }
.hotel-card a { color: hsl(var(--primary)); text-decoration: underline; font-size: 0.875rem; }
.hotel-card .note { color: hsl(var(--muted-foreground)); font-size: 0.75rem; margin-top: 0.5rem; font-style: italic; }

/* ---------- Contact page ---------- */
.contact-header { text-align: center; margin-bottom: 3rem; }
.contact-header h1 { font-size: 2.25rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 0.75rem; }
@media (min-width: 768px) {
  .contact-header h1 { font-size: 3rem; }
}
.contact-header p { color: hsl(var(--muted-foreground)); font-style: italic; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-col { display: flex; flex-direction: column; }
.contact-col h2 { font-size: 1.5rem; font-weight: 700; color: hsl(var(--primary)); margin-bottom: 1rem; text-align: center; }
@media (min-width: 768px) {
  .contact-col h2 { font-size: 1.875rem; }
}
.contact-col > p { color: hsl(var(--foreground) / 0.8); margin-bottom: 1.5rem; }
@media (min-width: 768px) {
  .contact-col > p { text-align: center; }
}
.contact-call { margin-bottom: 1.5rem; }
@media (min-width: 768px) {
  .contact-call { text-align: center; }
}
.map-frame {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 250px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-top: 1rem;
}
.map-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.contact-form {
  padding: 1.5rem;
  border-radius: var(--radius);
  background-color: hsl(var(--panel-bg));
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ---------- 404 page ---------- */
.notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(var(--muted));
  text-align: center;
}
.notfound h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
.notfound p { font-size: 1.25rem; color: hsl(var(--muted-foreground)); margin-bottom: 1rem; }
.notfound a { color: hsl(var(--primary)); text-decoration: underline; }
