@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f9fafb;
  color: #1f2937;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 36px;
}

.brand span {
  font-size: 13px;
  color: #6b7280;
}

/* NAV */
.top-nav {
  display: flex;
  gap: 16px;
}

.top-nav a {
  font-weight: 700;
  text-decoration: none;
  color: #374151;
}

/* BURGER */
.burger {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}

.mobile-nav a {
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  text-decoration: none;
  font-weight: 700;
  color: #374151;
}

.mobile-nav.open {
  display: flex;
}

/* HERO */
.hero {
  position: relative;
  height: 280px;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* SECTIONS */
.section {
  padding: 32px 0;
}

.event-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 10px 16px;
  background: #f59e0b;
  color: #000;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #e5e7eb;
  color: #374151;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

/* FOOTER */
.footer {
  border-top: 1px solid #e5e7eb;
  padding: 20px 0;
  font-size: 14px;
  color: #6b7280;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-blessing {
  margin-top: 12px;
  text-align: center;
  font-weight: 600;
  color: #374151;
}

/* MOBILE */
@media (max-width: 768px) {
  .top-nav { display: none; }
  .burger { display: block; }
}

/* DESKTOP */
@media (min-width: 768px) {
  .event-card {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
