/* ================================================================
   MCI Austin — Church Website
   Author: Miguel | Version: 1.1 | Date: 2026-05-17
   Palette: Black #111111 · White #FFFFFF · Blue #94c7f7
   ================================================================ */

:root {
  --blue:          #94c7f7;
  --blue-light:    #c8e5fc;
  --blue-dark:     #4a9fd4;
  --dark:          #111111;
  --dark-mid:      #1e1e1e;
  --dark-soft:     #2d2d2d;
  --white:         #FFFFFF;
  --off-white:     #F4F9FF;
  --text-body:     #333333;
  --text-muted:    #666666;
  --border-light:  #D8EAF8;
  --radius:        8px;
  --radius-lg:     16px;
  --shadow:        0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.18);
  --transition:    0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-body);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--dark);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* ================================================================
   BUTTONS
   ================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--blue);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(148,199,247,0.5);
}

.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-purple {
  background: var(--dark);
  color: #fff;
}
.btn-purple:hover {
  background: var(--dark-soft);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

/* ================================================================
   NAVBAR
   ================================================================ */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  background: rgba(17,17,17,0.97);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 48px;
  width: auto;
  background: #fff;
  padding: 4px 8px;
  border-radius: 6px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--blue) !important;
  color: var(--dark) !important;
  padding: 10px 22px !important;
}
.nav-cta:hover {
  background: var(--blue-light) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 4px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.4);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a {
    width: 100%;
    font-size: 1rem;
    padding: 12px 16px;
  }
  .hamburger { display: flex; }
  .nav-cta { margin-top: 16px; }
}

/* ================================================================
   HERO SECTION
   ================================================================ */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/img-hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,17,17,0.88) 0%,
    rgba(17,17,17,0.55) 60%,
    rgba(148,199,247,0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(148,199,247,0.15);
  border: 1px solid rgba(148,199,247,0.4);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--blue);
}

.hero-verse {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  font-style: italic;
  border-left: 3px solid var(--blue);
  padding-left: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-services {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-service-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(148,199,247,0.3);
  border-radius: 12px;
  padding: 12px 20px;
  color: #fff;
  backdrop-filter: blur(8px);
}
.hero-service-chip .day {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}
.hero-service-chip .time {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}
.hero-service-chip .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg {
  width: 20px; height: 20px;
  stroke: currentColor;
  fill: none;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */

.announcement {
  background: var(--blue);
  color: var(--dark);
  text-align: center;
  padding: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.announcement a {
  text-decoration: underline;
  color: var(--dark);
  margin-left: 12px;
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */

#servicios {
  padding: 100px 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--dark), var(--blue));
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.service-icon svg {
  width: 32px; height: 32px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.service-time {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin: 16px 0 8px;
}
.service-day {
  display: inline-block;
  background: var(--blue);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */

#nosotros {
  padding: 100px 0;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  top: 24px;
  left: -24px;
  background: var(--blue);
  color: var(--dark);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.about-content .section-subtitle {
  margin-bottom: 32px;
}

.about-list {
  margin: 32px 0;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.about-list .icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-list .icon svg {
  width: 20px; height: 20px;
  stroke: var(--blue-dark);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-list .text strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.about-list .text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ================================================================
   MISSION & VISION
   ================================================================ */

#mision {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

#mision::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: rgba(148,199,247,0.05);
}

#mision .section-title,
#mision h3 { color: #fff; }
#mision .section-label { color: var(--blue); }
#mision .section-subtitle { color: rgba(255,255,255,0.7); }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
}

@media (max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr; }
}

.mv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(148,199,247,0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.mv-card:hover {
  background: rgba(148,199,247,0.08);
  transform: translateY(-4px);
  border-color: rgba(148,199,247,0.4);
}

.mv-icon {
  width: 60px; height: 60px;
  background: rgba(148,199,247,0.15);
  border: 1px solid rgba(148,199,247,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.mv-icon svg {
  width: 28px; height: 28px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mv-card h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--blue);
}
.mv-card p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.8;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 64px;
}

.value-chip {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(148,199,247,0.2);
  border-radius: var(--radius);
  transition: var(--transition);
}
.value-chip:hover {
  background: rgba(148,199,247,0.12);
  border-color: var(--blue);
}
.value-chip .emoji {
  display: flex; align-items: center; justify-content: center;
  height: 40px; margin-bottom: 10px;
}
.value-chip .emoji svg {
  width: 30px; height: 30px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-chip .name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* ================================================================
   HISTORY SECTION
   ================================================================ */

#historia {
  padding: 100px 0;
  background: var(--off-white);
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .history-grid { grid-template-columns: 1fr; gap: 48px; }
}

.history-image {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.timeline {
  margin-top: 40px;
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px; top: 48px;
  width: 2px;
  height: calc(100% + 8px);
  background: var(--border-light);
}

.timeline-dot {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.75rem;
  z-index: 1;
}

.timeline-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.timeline-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================================================
   EVENTS SECTION
   ================================================================ */

#eventos {
  padding: 100px 0;
}

.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.event-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.event-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--dark);
}
.event-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover .event-image-wrap img {
  transform: scale(1.06);
}

.event-date-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--blue);
  color: var(--dark);
  border-radius: 10px;
  padding: 8px 14px;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}
.event-date-badge .day { font-size: 1.5rem; }
.event-date-badge .month { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }

.event-category {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(17,17,17,0.85);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.event-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.event-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.event-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.event-meta span {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-meta span svg {
  width: 14px; height: 14px;
  stroke: var(--blue-dark);
  fill: none; flex-shrink: 0;
}
.event-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.event-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  transition: var(--transition);
}
.event-link:hover { color: var(--blue-dark); gap: 10px; }

.no-events {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: var(--text-muted);
}
.no-events svg {
  width: 64px; height: 64px;
  stroke: var(--border-light);
  fill: none;
  margin: 0 auto 16px;
}

/* ================================================================
   GALLERY TEASER
   ================================================================ */

#galeria {
  padding: 100px 0;
  background: var(--dark);
}

#galeria .section-title,
#galeria h2 { color: #fff; }
#galeria .section-label { color: var(--blue); }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:first-child {
  grid-row: 1 / span 2;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.5);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

.gallery-footer {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-row: auto; }
}

/* ================================================================
   LOCATION SECTION
   ================================================================ */

#ubicacion {
  padding: 100px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
}

.location-info h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.location-info > p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-list {
  margin-bottom: 40px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-list li:last-child { border-bottom: none; }

.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 18px; height: 18px;
  stroke: var(--blue-dark);
  fill: none;
}

.contact-text strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.contact-text span, .contact-text a {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.contact-text a:hover { color: var(--dark); }

.social-row {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--dark);
}
.social-btn:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--blue);
  transform: translateY(-3px);
}
.social-btn svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
}

/* ================================================================
   FOOTER
   ================================================================ */

footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand img { height: 48px; margin-bottom: 16px; background: #fff; padding: 4px 8px; border-radius: 6px; }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 16px;
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--blue);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-contact a { color: var(--blue); }
.footer-contact a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--blue); }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */

.page-hero {
  min-height: 380px;
  background: var(--dark);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(148,199,247,0.04);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--blue); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ================================================================
   EVENTS PAGE
   ================================================================ */

.events-page {
  padding: 80px 0;
}

.events-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--border-light);
  background: #fff;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--blue);
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */

.contact-page {
  padding: 80px 0;
}

.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text-body);
  background: #fff;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue-dark);
  box-shadow: 0 0 0 3px rgba(148,199,247,0.25);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-success {
  display: none;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 16px;
  font-weight: 600;
}

/* ================================================================
   LIGHTBOX (gallery)
   ================================================================ */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: var(--transition);
}
.lightbox-close:hover { opacity: 1; transform: scale(1.1); }

/* ================================================================
   UTILITIES
   ================================================================ */

.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .hero-services { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .location-grid, .about-grid { grid-template-columns: 1fr; }
  .about-image-accent, .about-badge { display: none; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px;
  }
  .gallery-item:first-child { grid-row: auto; grid-column: 1 / -1; }
  .contact-form-wrap { padding: 28px 20px; }
  .events-header { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   LANGUAGE SWITCHER
   ================================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 4px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.scrolled .lang-switcher {
  border-left-color: var(--border-light);
}
.lang-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  padding: 2px 0;
  text-transform: uppercase;
}
.scrolled .lang-btn {
  color: var(--text-muted);
}
.lang-btn:hover {
  color: var(--blue);
}
.lang-btn.active {
  color: var(--blue);
}
.lang-sep {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  user-select: none;
}
.scrolled .lang-sep {
  color: var(--text-muted);
}
