@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { color-scheme: dark; }

:root {
  --bg: #141416;
  --bg-soft: #1b1b1e;
  --card: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.16);
  --border-soft: rgba(255,255,255,0.08);
  --white: #ffffff;
  --text-muted: rgba(255,255,255,0.65);
  --text-faint: rgba(255,255,255,0.45);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border-soft);
  padding: 0 2rem;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.2s;
}
nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.5); }

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo .logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links .btn-nav {
  background: var(--white);
  color: var(--bg) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: background 0.2s !important;
}
.nav-links .btn-nav:hover { background: rgba(255,255,255,0.82); }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  padding: 0.3rem 0.6rem;
}
.lang-btn {
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
}
.lang-btn.active { color: var(--white); }
.lang-sep { color: var(--text-faint); font-size: 0.78rem; }

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.social-links a {
  display: flex;
  color: var(--text-muted);
  transition: color 0.2s;
}
.social-links a:hover { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--white);
  color: var(--bg);
  border-color: var(--white);
}
.btn-primary:hover {
  background: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.82);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--bg);
}

/* ── PAGE WRAPPER ── */
main { padding-top: 90px; }

/* ── SECTION BASICS ── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── HERO ── */
.hero {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 65%);
  padding: 5rem 2rem 4rem;
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.75;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-meta {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-meta-item { text-align: center; }
.hero-meta-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.hero-meta-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ── SERVICE TIMES ── */
.service-times { background: var(--bg-soft); text-align: center; }
.service-times .hero-meta { margin-top: 2.5rem; margin-bottom: 0; row-gap: 2rem; }

/* ── INNER PAGE HERO ── */
.page-hero {
  background: var(--bg-soft);
  color: var(--white);
  padding: 4.5rem 2rem 3.5rem;
  text-align: center;
}
.page-hero .section-label { color: var(--text-muted); }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.page-hero p {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── VISIT SECTION ── */
.visit-section { background: var(--bg-soft); }
.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}
.visit-info { }
.visit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--card);
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-soft);
}
.visit-item-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.visit-item-icon svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.visit-item-label { font-size: 0.75rem; color: var(--text-faint); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.visit-item-value { font-size: 0.9rem; color: var(--white); font-weight: 600; }
.visit-welcome {
  margin-top: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
}
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  aspect-ratio: 4/3;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── GIVE SECTION ── */
.give-section { text-align: center; }
.give-embed-wrap {
  max-width: 560px;
  margin: 2.5rem auto 0;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2rem;
  color: var(--white);
}

/* ── MEDIA SECTION ── */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.media-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
}
.media-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.media-card-icon svg { width: 26px; height: 26px; color: var(--white); }
.media-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.media-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.media-card .btn { width: 100%; text-align: center; }

/* ── CONTACT SECTION ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2.5rem;
}
.contact-info p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
}
.contact-item-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item-label { font-size: 0.75rem; color: var(--text-faint); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.contact-item-value { font-size: 0.875rem; color: var(--white); font-weight: 600; }

.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.contact-form-wrap h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 0.95rem; font-size: 0.95rem; }

/* ── FOOTER ── */
footer {
  background: var(--bg);
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-soft);
}
.footer-inner .nav-logo { justify-content: center; }
.footer-inner .nav-logo .logo-img { height: 58px; }
.footer-inner p { font-size: 0.85rem; line-height: 1.7; max-width: 420px; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; margin-top: 0.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.75rem;
}
.footer-social a {
  display: flex;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .visit-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; position: absolute; top: 90px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 1.5rem; gap: 1rem; border-bottom: 1px solid var(--border-soft); box-shadow: 0 8px 24px rgba(0,0,0,0.5); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  section { padding: 3.5rem 1.25rem; }
  .hero { padding: 3rem 1.25rem; }
  .hero-meta { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
