/* ============================================
   @font-face — SaveurSans
   ============================================ */
@font-face {
  font-family: 'SaveurSans';
  src: url('fonts/SaveurSans-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SaveurSans';
  src: url('fonts/SaveurSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SaveurSans';
  src: url('fonts/SaveurSans-Semi-bold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SaveurSans';
  src: url('fonts/SaveurSans-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   Variables & Reset
   ============================================ */
:root {
  --burgundy: #840424;
  --cream: #EBD3BB;
  --rose: #B66C74;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'SaveurSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container-max: 1100px;
  --header-height: 70px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--burgundy);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.8s ease, color 0.8s ease;
}

body.theme-light {
  background-color: var(--cream);
  color: var(--burgundy);
}

body.theme-dark {
  background-color: var(--burgundy);
  color: var(--cream);
}

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

/* ============================================
   Logo theme switching
   ============================================ */
.logo-dark { display: none; }
.logo-light { display: block; }
body.theme-light .logo-dark { display: block; }
body.theme-light .logo-light { display: none; }

/* ============================================
   Navbar
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  transition: background-color 0.8s ease;
}

.site-header.scrolled {
  background: rgba(132, 4, 36, 0.92);
  backdrop-filter: blur(12px);
}

body.theme-light .site-header.scrolled {
  background: rgba(235, 211, 187, 0.92);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  color: inherit;
  transition: color 0.8s ease;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s, background 0.8s ease;
}

/* Nav CTA buttons */
.nav-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-btn {
  padding: 10px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: background-color 0.3s, color 0.3s, border-color 0.8s;
  cursor: pointer;
  border: none;
}

.nav-btn {
  background: var(--cream);
  color: var(--burgundy);
}

body.theme-light .nav-btn {
  background: var(--burgundy);
  color: var(--cream);
}

.nav-btn:hover {
  opacity: 0.85;
}

.nav-btn--outline {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.nav-btn--outline:hover {
  background: var(--cream);
  color: var(--burgundy);
  border-color: var(--cream);
}

body.theme-light .nav-btn--outline:hover {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
}

/* ============================================
   Side Drawer Menu
   ============================================ */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1999;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 340px;
  max-width: 85vw;
  z-index: 2000;
  background: var(--burgundy);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.menu-drawer.open {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  transition: opacity 0.3s;
}

.menu-close:hover {
  opacity: 0.6;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.menu-nav a {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  transition: opacity 0.3s;
}

.menu-nav a:hover {
  opacity: 0.6;
}

.menu-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cream);
  transition: width 0.3s ease;
}

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

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards 0.3s;
}

.hero-logo {
  max-width: 420px;
  height: auto;
  margin: 0 auto;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1s;
}

.hero-scroll span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.6;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: currentColor;
  opacity: 0.4;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Section Images
   ============================================ */
.section-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 4px;
}

.voucher-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}

/* ============================================
   Generic Sections
   ============================================ */
.section {
  padding: 100px 24px;
  background: transparent;
}

.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Side-by-side row layout */
.section-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-row--reverse {
  direction: rtl;
}

.section-row--reverse > * {
  direction: ltr;
}

.section-text {
  text-align: left;
}

.section-visual {
  text-align: left;
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
  transition: color 0.8s ease;
}

.section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--rose);
  transition: color 0.8s ease;
}

.section-intro {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

body.theme-light .section p {
  color: #8a4a52;
}

.section p a {
  text-decoration: underline;
}

.section p a:hover {
  opacity: 0.7;
}

/* Section details (hours etc.) */
.section-details {
  display: flex;
  gap: 40px;
  margin: 32px 0 40px;
  flex-wrap: wrap;
}

.detail-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-block strong {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.detail-block span {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Section buttons */
.section-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.section-buttons--left {
  justify-content: flex-start;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.8s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--cream);
  color: var(--burgundy);
  transition: background-color 0.8s ease, color 0.8s ease;
}

body.theme-light .btn-primary {
  background: var(--burgundy);
  color: var(--cream);
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-outline {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--burgundy);
  border-color: var(--cream);
}

body.theme-light .btn-outline:hover {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
}

/* ============================================
   Contact Section Specifics
   ============================================ */
.contact-info {
  margin-bottom: 24px;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-social {
  display: flex;
  gap: 16px;
}

.contact-social a {
  color: inherit;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.contact-social a:hover {
  opacity: 1;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.8s ease;
}

.map-placeholder span {
  color: inherit;
  opacity: 0.4;
  font-size: 1rem;
}

/* ============================================
   Menu Grid
   ============================================ */
.menu-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.menu-card {
  text-align: center;
}

.menu-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.menu-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.menu-card .btn {
  width: 100%;
}

/* ============================================
   Voucher Grid
   ============================================ */
.voucher-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
}

.voucher-header p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 12px 0 28px;
}

.voucher-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
}

.voucher-grid--visible {
  animation: voucherSlideIn 0.5s ease forwards;
}

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

.voucher-card {
  text-align: center;
  padding: 24px;
  border: 1px solid currentColor;
  border-radius: 4px;
  opacity: 0.85;
  transition: opacity 0.3s, border-color 0.8s ease;
}

.voucher-card:hover {
  opacity: 1;
}

.voucher-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 16px 0 8px;
}

.voucher-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.voucher-card .btn {
  width: 100%;
}

.voucher-card .voucher-img {
  margin-bottom: 0;
}

/* ============================================
   Modal & Forms
   ============================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 3001;
  width: 560px;
  max-width: 92vw;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--cream);
  color: var(--burgundy);
  padding: 48px 40px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modal h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--burgundy);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--burgundy);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: opacity 0.3s;
}

.modal-close:hover {
  opacity: 0.5;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--burgundy);
  font-family: var(--font-body);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--burgundy);
  background: #fff;
  border: 1px solid var(--rose);
  border-radius: 3px;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
}

.form-group textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--rose) !important;
  margin-bottom: 20px;
}

.form-note a {
  color: var(--burgundy);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  background: var(--burgundy);
  color: var(--cream);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: transparent;
  padding: 80px 24px 30px;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
}

.footer-logo {
  height: 40px;
  width: auto;
}

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

.footer-location,
.footer-contact {
  text-align: left;
}

.footer-location h2,
.footer-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 24px;
  transition: color 0.8s ease;
}

.footer-location .contact-info {
  margin-bottom: 20px;
}

.footer-location .contact-info p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 6px;
  color: var(--rose);
  transition: color 0.8s ease;
}

body.theme-light .footer-location .contact-info p {
  color: #8a4a52;
}

.footer-location .contact-info a {
  text-decoration: underline;
}

.footer-location .contact-info a:hover {
  opacity: 0.7;
}

.footer-contact .contact-info {
  margin-bottom: 20px;
}

.footer-contact .contact-info p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 4px;
  color: var(--rose);
  transition: color 0.8s ease;
}

body.theme-light .footer-contact .contact-info p {
  color: #8a4a52;
}

.footer-contact .contact-info a {
  text-decoration: underline;
}

.footer-contact .contact-info a:hover {
  opacity: 0.7;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.footer-hours strong {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-hours span {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-location .contact-social {
  margin-bottom: 20px;
}

.footer-directions-btn {
  display: inline-block;
}

/* Footer contact form */
.footer-contact .form-group label {
  color: inherit;
  transition: color 0.8s ease;
}

.footer-contact .form-group input,
.footer-contact .form-group textarea {
  background: rgba(255, 255, 255, 0.15);
  border-color: currentColor;
  color: inherit;
  transition: background 0.8s ease, border-color 0.3s, color 0.8s ease;
}

body.theme-light .footer-contact .form-group input,
body.theme-light .footer-contact .form-group textarea {
  background: #fff;
  color: var(--burgundy);
  border-color: var(--rose);
}

.footer-contact .form-group input:focus,
.footer-contact .form-group textarea:focus {
  border-color: currentColor;
  opacity: 1;
}

.footer-contact .form-group input::placeholder,
.footer-contact .form-group textarea::placeholder {
  color: inherit;
  opacity: 0.4;
}

.footer-contact .form-submit {
  width: 100%;
  margin-top: 8px;
  background: var(--cream);
  color: var(--burgundy);
}

body.theme-light .footer-contact .form-submit {
  background: var(--burgundy);
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(128, 128, 128, 0.2);
  padding-top: 20px;
}

.footer-legal {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-legal a,
.footer-legal span,
.footer-year {
  font-size: 0.75rem;
  color: inherit;
  opacity: 0.5;
}

.footer-legal a:hover {
  opacity: 1;
}

/* ============================================
   Scroll Reveal
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .nav-btn {
    padding: 8px 16px;
    font-size: 0.7rem;
  }

  .section {
    padding: 70px 20px;
  }

  .section-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-row--reverse {
    direction: ltr;
  }

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

  .section-buttons--left {
    justify-content: center;
  }

  .section-details {
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .detail-block {
    text-align: center;
  }

  .contact-social {
    justify-content: center;
  }

  .hero-logo {
    max-width: 300px;
  }

  .hero-scroll {
    bottom: 24px;
  }

  .scroll-line {
    height: 36px;
  }

  .menu-drawer {
    width: 280px;
    padding: 50px 28px;
  }

  .menu-nav a {
    font-size: clamp(0.9rem, 4vw, 1.2rem);
  }

  .section-img {
    min-height: 260px;
  }

  .voucher-img {
    height: 140px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .menu-card-img {
    height: 240px;
  }

  .voucher-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-location,
  .footer-contact {
    text-align: center;
  }

  .footer-location .contact-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

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

  .form-row .form-group {
    margin-bottom: 16px;
  }

  .modal {
    padding: 36px 24px;
  }

  .section-details {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .nav-ctas {
    gap: 8px;
  }

  .nav-btn {
    padding: 7px 12px;
    font-size: 0.65rem;
  }

  .section-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-logo {
    max-width: 260px;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================================
   Toast Notification
   ============================================ */
.toast-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.toast-overlay.active {
  opacity: 1;
  visibility: visible;
}

.toast-box {
  background: var(--cream);
  color: var(--burgundy);
  border-radius: 8px;
  padding: 40px 36px 32px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
  position: relative;
}

.toast-overlay.active .toast-box {
  transform: translateY(0) scale(1);
}

.toast-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  line-height: 1;
}

.toast-box h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.toast-box p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #5a2a30;
}

.toast-close {
  background: var(--burgundy);
  color: var(--cream);
  border: none;
  padding: 10px 36px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toast-close:hover {
  background: #6a031a;
}

/* ============================================
   Form Validation
   ============================================ */
.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid {
  border-color: #c0392b;
}

.form-error {
  color: #c0392b;
  font-size: 0.78rem;
  margin-top: 4px;
  display: none;
}

.theme-dark .form-error {
  color: #f5a6a6;
}

.modal .form-error {
  color: #c0392b;
}

.form-group .invalid ~ .form-error--required {
  display: block;
}

.form-group .invalid-email ~ .form-error--email {
  display: block;
}

.form-group .invalid-email ~ .form-error--required {
  display: none;
}
