/* ==========================================================================
   Aura Events — Design System
   Palette: Maroon/Burgundy (primary), Gold/Ochre (secondary), Cream (bg)
   Type: Playfair Display (headings), Dancing Script (script accents),
         Montserrat (body)
   ========================================================================== */

:root {
  /* Colors — sampled directly from Flyer_final.png */
  --maroon: #8a0e2b;
  --maroon-dark: #650a1f;
  --maroon-light: #a01b34;
  --gold: #d27e0f;
  --gold-light: #e2ab63;
  --gold-dark: #a8650c;
  --cream: #fdf6ee;
  --cream-alt: #fbefe1;
  --charcoal: #362327;
  --white: #ffffff;

  /* Type */
  --font-heading: "Playfair Display", serif;
  --font-script: "Dancing Script", cursive;
  --font-body: "Montserrat", sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius: 16px;
  --shadow-soft: 0 10px 30px rgba(123, 30, 59, 0.08);
  --shadow-lift: 0 16px 34px rgba(123, 30, 59, 0.18);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

section {
  scroll-margin-top: 84px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Reusable elements
   ========================================================================== */

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-heading {
  font-family: var(--font-heading);
  color: var(--maroon);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 14px 0 0;
}

.divider::before,
.divider::after {
  content: "";
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.divider__dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  transform: rotate(45deg);
}

.section-intro {
  text-align: center;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  border: 2px solid var(--gold);
  padding: 16px 38px;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(201, 151, 31, 0.4);
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 246, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gold-light);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo__img {
  height: 58px;
  width: 58px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--maroon);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--maroon);
  transition: var(--transition);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 160px 24px 90px;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, var(--cream-alt) 0%, var(--cream) 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__corner {
  position: absolute;
  top: 56px;
  width: 150px;
  height: 150px;
  z-index: 0;
  pointer-events: none;
}

.hero__corner--left {
  left: 0;
}

.hero__corner--right {
  right: 0;
  transform: scaleX(-1);
}

.hero__corner-stem {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.55;
}

.hero__corner-leaf {
  fill: var(--gold);
  opacity: 0.45;
}

.hero__corner-bud {
  fill: var(--maroon-light);
  opacity: 0.5;
}

.hero__corner-bud--small {
  fill: var(--gold);
  opacity: 0.5;
}

.hero__ornament {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto 4px;
  display: block;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  color: var(--maroon);
  letter-spacing: 10px;
  font-weight: 700;
  line-height: 1;
}

.hero__sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-body);
  color: var(--gold-dark);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  letter-spacing: 10px;
  font-weight: 600;
  margin-top: 10px;
}

.hero__sub::before,
.hero__sub::after {
  content: "";
  width: 46px;
  height: 2px;
  background: var(--gold);
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--maroon-light);
  font-size: 0.8rem;
}

.hero__divider span {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}

.hero__tagline {
  font-family: var(--font-script);
  color: var(--maroon-light);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-top: 26px;
}

.hero p {
  max-width: 620px;
  margin: 26px auto 0;
  color: var(--charcoal);
  font-size: 1.05rem;
}

.hero__dream {
  font-family: var(--font-script);
  color: var(--maroon);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  margin-top: 32px;
  line-height: 1.4;
}

.hero__dream .heart {
  color: var(--maroon-light);
}

.hero .btn-primary {
  margin-top: 40px;
}

.hero__content > * {
  animation: heroFadeUp 0.8s ease-out both;
}

.hero__content > *:nth-child(1) { animation-delay: 0s; }
.hero__content > *:nth-child(2) { animation-delay: 0.1s; }
.hero__content > *:nth-child(3) { animation-delay: 0.2s; }
.hero__content > *:nth-child(4) { animation-delay: 0.3s; }
.hero__content > *:nth-child(5) { animation-delay: 0.4s; }
.hero__content > *:nth-child(6) { animation-delay: 0.5s; }
.hero__content > *:nth-child(7) { animation-delay: 0.6s; }
.hero__content > *:nth-child(8) { animation-delay: 0.7s; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__content > * {
    animation: none;
  }
}

/* ==========================================================================
   Services
   ========================================================================== */

.services {
  padding: 40px 24px 90px;
}

.ribbon {
  display: inline-flex;
  align-items: center;
  background: var(--maroon);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 12px 46px;
  clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%);
}

.services__grid {
  max-width: var(--max-width);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 40px 24px;
  background: var(--white);
}

.service-card {
  text-align: center;
  padding: 18px 10px;
  border-radius: 12px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--cream-alt);
  box-shadow: 0 10px 24px rgba(201, 151, 31, 0.25);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--cream-alt);
  color: var(--maroon);
  font-size: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--maroon);
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* ==========================================================================
   Why Choose Us + Specialities
   ========================================================================== */

.about-specialities {
  padding: 20px 24px 90px;
}

.two-col {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.info-card {
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  background: var(--white);
  padding: 36px 32px;
}

.info-card .section-heading {
  text-align: center;
}

.info-card .divider {
  margin-bottom: 28px;
}

.why-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.why-item:last-child {
  margin-bottom: 0;
}

.why-item__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.1rem;
}

.why-item h4 {
  font-family: var(--font-heading);
  color: var(--maroon);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.92rem;
  color: var(--charcoal);
}

.specialities-card .section-heading {
  color: var(--maroon);
  text-align: center;
  margin-bottom: 6px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 26px;
}

.event-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--maroon);
  color: var(--white);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 4px;
}

/* ==========================================================================
   Value ribbon
   ========================================================================== */

.value-ribbon {
  padding: 60px 24px;
  text-align: center;
}

.value-ribbon__tagline {
  font-family: var(--font-script);
  color: var(--maroon);
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.value-ribbon__tagline::before,
.value-ribbon__tagline::after {
  content: "";
  width: 70px;
  height: 2px;
  background: var(--gold);
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  color: var(--maroon-dark);
  text-transform: uppercase;
}

.pillars span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pillars .heart {
  color: var(--gold);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  padding: 20px 24px 100px;
}

.contact__wrap {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  background: var(--white);
  padding: 44px;
  box-shadow: var(--shadow-soft);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--maroon-dark);
  letter-spacing: 0.4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1.5px solid var(--gold-light);
  border-radius: 8px;
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(123, 30, 59, 0.12);
}

.contact__wrap .btn-primary {
  width: 100%;
  border: 2px solid var(--gold);
  margin-top: 6px;
}

.form-success {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--cream-alt);
  border: 1px solid var(--gold);
  color: var(--maroon-dark);
  font-weight: 600;
  text-align: center;
}

.form-success.visible {
  display: block;
}

.form-error {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 8px;
  background: #fdeceb;
  border: 1px solid #d9736a;
  color: #8a2e26;
  font-weight: 600;
  text-align: center;
}

.form-error a {
  text-decoration: underline;
}

.form-error.visible {
  display: block;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
  color: var(--white);
  padding: 40px 24px 30px;
  text-align: center;
}

.footer__contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.footer__contacts a:hover {
  color: var(--gold-light);
}

.footer__contacts i {
  color: var(--gold-light);
}

.footer__contacts .sep {
  color: var(--gold-light);
  opacity: 0.6;
}

.footer__rule {
  width: 120px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.6;
  margin: 22px auto;
}

.footer__tagline {
  font-family: var(--font-heading);
  letter-spacing: 2px;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 700;
  text-transform: uppercase;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 240px;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -6px 0 24px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding: 130px 20px 70px;
  }

  .hero h1 {
    letter-spacing: 6px;
  }

  .hero__corner {
    width: 90px;
    height: 90px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact__wrap {
    padding: 30px 22px;
  }
}

@media (max-width: 480px) {
  .hero__corner {
    display: none;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 16px;
    gap: 18px;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .value-ribbon__tagline::before,
  .value-ribbon__tagline::after {
    width: 30px;
  }

  .footer__contacts {
    flex-direction: column;
    gap: 10px;
  }

  .footer__contacts .sep {
    display: none;
  }
}
