/* ─── RESET & BASE ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --ivory: #faf7f3;
  --blush: #e9c8c3;
  --dusty-rose: #c85d78;
  --mauve: #b86b7a;
  --gold: #c8a04a;
  --champagne: #f5e9d7;
  --taupe: #8c7b75;
  --charcoal: #3a3535;
  --white: #ffffff;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Lato", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

.events__intro {
  font-size: 1.25rem;
  color: var(--charcoal);
  white-space: nowrap;
  margin-bottom: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
  padding-top: 80px;
}

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

a {
  color: var(--dusty-rose);
  text-decoration: none;
}
a:hover {
  color: var(--mauve);
  text-decoration: underline;
}
a:focus {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ─── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--white);
  border-bottom: 2px solid var(--blush);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(58, 53, 53, 0.08);
}

.navbar__logo img {
  height: 60px;
  width: auto;
}

.navbar__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar__links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.navbar__links a:hover {
  color: var(--dusty-rose);
  text-decoration: none;
}

/* Mobile menu toggle */
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  /* Shown on mobile via responsive.css */
}

.navbar__toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--charcoal);
  transition: all 0.3s;
}

/* ─── SECTION BASE ─────────────────────────────────────────── */
section {
  scroll-margin-top: 90px;
}

.section {
  padding: 5rem 2rem;
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dusty-rose);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.section__divider {
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin: 1.25rem 0;
}

.section__divider--center {
  margin: 1.25rem auto;
}

.section__text {
  font-size: 1.05rem;
  color: var(--charcoal);
  max-width: 680px;
  line-height: 1.8;
}

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
}

.btn--primary {
  background-color: var(--dusty-rose);
  color: var(--white);
  border-color: var(--dusty-rose);
}

.btn--primary:hover {
  background-color: var(--mauve);
  border-color: var(--mauve);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 93, 120, 0.3);
}

.btn--outline {
  background-color: transparent;
  color: var(--dusty-rose);
  border-color: var(--dusty-rose);
}

.btn--outline:hover {
  background-color: var(--dusty-rose);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn--gold {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--gold:hover {
  background-color: #b08a3a;
  border-color: #b08a3a;
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

/* ─── HERO / INTRODUCTION ──────────────────────────────────── */
#home {
  background-color: var(--champagne);
  padding: 0;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero__banner {
  width: 100%;
  height: auto;
  display: block;
}

.hero__overlay {
  display: none;
}

.hero__content {
  padding: 3rem 2rem 4rem;
  background-color: var(--champagne);
  text-align: center;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--dusty-rose);
  font-style: italic;
  margin-bottom: 1rem;
}

.hero__mission {
  font-size: 1.1rem;
  color: var(--charcoal);
  max-width: 720px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--dusty-rose);
  color: var(--dusty-rose);
  background-color: var(--white);
}

/* ─── VALUES ───────────────────────────────────────────────── */
.values {
  background-color: var(--ivory);
  padding: 4rem 2rem;
}

.values__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background-color: var(--white);
  border: 1px solid var(--blush);
  border-radius: 16px;
  padding: 2rem 1.25rem;
  text-align: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(200, 93, 120, 0.12);
}

.value-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dusty-rose);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.value-card__desc {
  font-size: 0.9rem;
  color: var(--taupe);
  line-height: 1.6;
}

/* ─── ABOUT ────────────────────────────────────────────────── */
#about {
  background-color: var(--blush);
}

.about__grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 3rem;
  align-items: start;
}

.about__photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(58, 53, 53, 0.15);
}

.about__photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about__team {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.team-member {
  background-color: var(--white);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--gold);
  flex: 1;
  min-width: 200px;
}

.team-member__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dusty-rose);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-member__role {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0.25rem;
}

.team-member__desc {
  font-size: 0.95rem;
  color: var(--taupe);
}

/* ─── EVENTS ───────────────────────────────────────────────── */
#events {
  background-color: var(--champagne);
}

#events .section__inner {
  max-width: 860px;
  margin: 0 auto;
}

#events .section__label,
#events .section__title,
#events .events__intro {
  text-align: center;
}

.events__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.event-card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(58, 53, 53, 0.08);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(200, 93, 120, 0.15);
}

.event-card__header {
  background-color: var(--dusty-rose);
  padding: 1.5rem;
  text-align: center;
}

.event-card__date {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}

.event-card__day {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  margin-top: 0.25rem;
}

.event-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--dusty-rose);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-align: center;
}

.event-card__subtitle {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
}

.event-card__info {
  list-style: none;
  margin-bottom: 1.25rem;
}

.event-card__info li {
  font-size: 0.9rem;
  color: var(--taupe);
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.event-card__info li span.icon {
  flex-shrink: 0;
}

.event-card__desc {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.event-card__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.event-card__coming-soon {
  background-color: var(--blush);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--dusty-rose);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

/* ─── NEWSLETTER ───────────────────────────────────────────── */
#newsletter {
  background-color: var(--dusty-rose);
  text-align: center;
}

#newsletter .section__label {
  color: rgba(255, 255, 255, 0.8);
}
#newsletter .section__title {
  color: var(--white);
}
#newsletter .section__divider {
  background-color: var(--gold);
}

.newsletter__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.newsletter__name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--champagne);
  font-style: italic;
  margin-bottom: 0.5rem;
}

/* ─── FOOTER ───────────────────────────────────────────────── */
.footer {
  background-color: var(--charcoal);
  color: var(--blush);
  text-align: center;
  padding: 2.5rem 2rem;
}

.footer__logo {
  height: 100px;
  width: auto;
  max-width: 280px;
  margin: 0 auto 1.25rem;
  opacity: 1;
  background-color: var(--white);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  display: block;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--blush);
  font-style: italic;
  margin-bottom: 1rem;
}

.footer__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.footer__badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer__badge:not(:last-child)::after {
  content: " ♥ ";
  color: var(--dusty-rose);
  margin-left: 0.5rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--taupe);
  margin-top: 0.5rem;
}

.footer__credit {
  font-size: 0.75rem;
  color: var(--taupe);
  margin-top: 0.35rem;
}

.footer__credit a {
  color: var(--gold);
}
.footer__credit a:hover {
  color: var(--blush);
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */

/* html {
  scroll-behavior: auto;
} */

/* ─── ADDITIONAL UTILITY CLASSES ───────────────────────────── */
.section__title--center {
  text-align: center;
}
.section__title--white {
  color: var(--white);
}
.section__label--light {
  color: rgba(255, 255, 255, 0.8);
}
.section__divider--gold {
  background-color: var(--gold);
}
.section__text--spaced {
  margin-bottom: 1.5rem;
}
.section__text--spaced-lg {
  margin-bottom: 2rem;
}
.section--rose {
  background-color: var(--dusty-rose);
  text-align: center;
}
.section__inner--center {
  text-align: center;
}

.hero__quote-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--dusty-rose);
  margin-bottom: 0.5rem;
}

.hero__quote-close {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
  font-weight: 600;
}

.event-card__header--mauve {
  background-color: var(--mauve);
}
.event-card__header--gold {
  background-color: var(--gold);
}
.event-card__header--dark {
  background-color: var(--charcoal);
}

/* ─── EVENT FLYER ──────────────────────────────────────────── */
.event-flyer {
  margin-bottom: 1.25rem;
}

.event-flyer__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-flyer__thumb {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  border: 2px solid var(--blush);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.event-flyer__thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 93, 120, 0.2);
}

.event-flyer__img {
  width: 100%;
  height: auto;
  display: block;
}

.event-flyer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(200, 93, 120, 0.75);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.event-flyer__thumb:hover .event-flyer__overlay {
  opacity: 1;
}

.event-flyer__download {
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ─── ABOUT PHOTO WITH FLOATING BADGES ─────────────────────── */
.about__photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(58, 53, 53, 0.15);
  margin-top: 1.5rem;
}

.about__photo-img {
  width: 100%;
  height: auto;
  display: block;
}

.about__badges {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  background: linear-gradient(
    to top,
    rgba(58, 53, 53, 0.85) 0%,
    rgba(58, 53, 53, 0) 100%
  );
}

.about__badge {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--gold);
  backdrop-filter: blur(4px);
}

.about__badge-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--dusty-rose);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.about__badge-role {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0.2rem;
}

.about__badge-desc {
  font-size: 0.75rem;
  color: var(--taupe);
  line-height: 1.4;
}

/* ─── MOBILE NAV MENU ──────────────────────────────────────── */
.navbar__mobile {
  display: none;
  list-style: none;
}
