/* RESET */
* {
  margin: 0; padding: 0; box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: white;
  color: #333;
}

.hidden {
  display: none !important;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

/* HEADER */
.site-header {
  width: 100%;
  background: linear-gradient(to bottom, #eacb8f 0%, #d3a85b 100%);
  padding: 2rem 0;
}

.site-header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
}

.header-logo {
  height: 120px;
  width: auto;
}

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

.header-title {
  font-family: 'Roboto Condensed', sans-serif;
  color: #3a2a0c;
  font-size: 2.2rem;
}

.header-tagline {
  color: #3a2a0c;
  font-size: 1rem;
}

/* NAVBAR */
.header-subfooter {
  background: #C09448;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  gap: 28px;
  border-bottom: 2px solid rgba(0,0,0,0.15);
}

.nav-btn {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
}

.nav-btn::after {
  content: "";
  height: 2px;
  width: 0;
  background: white;
  position: absolute;
  bottom: -3px;
  left: 0;
  transition: 0.25s;
}

.nav-btn:hover::after { width: 100%; }

/* HERO */
.hero-fullwidth { margin-top: 30px; }

.hero-photo {
  width: 100%;
  height: 380px;
  background-size: cover;
  padding: 2rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

.hero-text-top h4 {
  font-size: 1.4rem;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 3px 6px rgba(0,0,0,0.6);
}

.hero-text-footer {
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-text-footer .h1 {
  font-size: 2.1rem;
}

.hero-text-footer .h2 {
  font-size: 1.25rem;
}

.hero-text-footer .h3 { font-size: 1rem; }



/* WHO WE ARE */
.who-we-are { 
  margin-top: 30px;
  margin-bottom: 30px;
}

.who-bg {
  height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden; /* Prevent overflow */
}

.who-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.70);
  color: white;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.who-overlay h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 2.1rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.who-overlay p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-size: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.who-overlay p:last-child {
  margin-bottom: 0;
}

.who-overlay a {
  color: #f0d59b;
  text-decoration: none;
  font-weight: 600;
}

.who-overlay a:hover {
  color: #fff;
  text-decoration: underline;
}



/* PHOTO GRID */
.photo-grid {
  margin-top: 30px;
  margin-bottom: 30px;
}

.grid-row {
  display: flex;
  gap: 1.5rem;
}

.grid-item {
  flex: 1;
}

.rectangle {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
}

/* Stack on mobile */
@media (max-width: 768px) {
  .grid-row { flex-direction: column; }
}



/* EVENT SECTIONS (outer background now white) */
.event-section {
  background: #ffffff;
  padding: 3rem 0;
}

/* Golden gradient card - make it match photo grid exactly */
.event-section .container.event-wrapper {
  width: min(1100px, 90%);      /* Match .container in photo grid */
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(to bottom, #f0d59b 0%, #fff7e6 60%, #ffffff 100%);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section-title {
  margin-bottom: 1.5rem;
  font-family: 'Roboto Condensed', sans-serif;
  color: #3a2a0c;
}

/* Weekly card - keep max-width for the beige inner card */
.weekly-card {
  max-width: 800px;
  margin: 0 auto;
}

/* SPECIAL EVENT CARDS - keep max-width for the beige inner cards */
.event-card.special {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  background: rgba(255,247,230,0.97);
  padding: 1.75rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  text-align: center;
}

.event-card.special h3 {
  margin-bottom: 0.75rem;
  color: #3a2a0c;
  font-family: 'Roboto Condensed';
}

/* Center paragraphs cleanly */
.event-card.special p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}




/* DATE PILL FIX — matches your HTML exactly */

.event-date {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  background: #c0392b;
  color: white;
  border-radius: 999px;
  padding: 5px 12px;
  margin: 0 auto; 
  width: fit-content;
  font-size: 0.9rem;
}

/* Pills inside the container */
.event-date .pill,
.event-date .pill-date,
.event-date .pill-time {
  background: none;
  color: inherit;
  padding: 0;
  margin: 0;
  font-weight: 600;
  white-space: nowrap;
}

.pill-date::after {
  content: " ·";
}

/* Mobile stacking ONLY when needed */
@media (max-width: 480px) {
  .event-date {
    flex-wrap: wrap;
    justify-content: center;
  }
  .pill-date::after {
    content: "";
  }
}



/* BACK TO TOP */
.back-to-top-wrap { text-align: center; margin-top: 2.5rem; }

.back-to-top {
  background: #C09448;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.back-to-top:hover { background: #AA7F38; }


/* CONTACT MODAL */
.contact-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.contact-modal-content {
  background: white;
  padding: 1.75rem;
  width: min(480px, 90%);
  border-radius: 10px;
  position: relative;
}

.contact-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  border: 1px solid #ccc;
}

.char-counter {
  text-align: right;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.75rem;
}

#contactSubmit {
  width: 100%;
  padding: 0.7rem;
  background: #C09448;
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 6px;
}

/* Contact Form Status Message */
.contact-status {
  	margin: 0 0 1rem 0;       /* space BELOW message */
  	font-size: 0.95rem;
  	min-height: 1.25rem;      /* keeps layout stable */
  	text-align: center;       /* center the text */
  	color: red;               /* default for errors */
  	display: block;
}


#contactSubmit:hover { 
	margin-top: 0.75rem;       /* space ABOVE the button */
	background: #AA7F38; 
}


/* Thank You Screen */
.thank-you-screen {
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
}

/* Title */
.thank-you-screen h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0.75rem 0 0.75rem;
}

/* Body text */
.thank-you-screen p {
  font-size: 1rem;
  color: #333;
  margin-top: 0;
}

/* Icon wrapper */
.thank-you-icon-wrap {
  margin-bottom: 1rem;
}

/* Circular green background */
.thank-you-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #28a745; /* clean modern green */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
}

/* White checkmark */
.checkmark {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

/* Smooth hide */
.hidden {
  display: none !important;
}




/* FOOTER */
.site-footer {
  background: linear-gradient(to top,#d8b26e 0%,#f0d59b 60%);
  padding: 2rem 0;
  text-align: center;
  color: #3a2a0c;
  border-top: 2px solid #c59a56;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 25px;
}

.social-links img {
  max-height: 60px;
}

.footer-pill {
  background: #C09448;
  color: white;
  border: none;
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.footer-pill:hover { background: #AA7F38; }

.footer-copy {
  font-size: 0.9rem;
}

.footer-copy span {
  font-size: 0.85rem;
}


/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* Optional: Add offset for fixed header if needed */
section {
  scroll-margin-top: 20px;
}

