
/* -------------------------------------------
   🌿 Global Theme Variables
   ------------------------------------------- */
:root {
  --bg-dark: #111111;
  --bg-light: #FDFBF5; /* Warm, creamy off-white */
  --primary-red: #8B0000; /* Deep, dark red */
  --accent-gold: #D4AF37; /* Elegant gold tone */
  --text-dark: #333333;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Poppins', sans-serif;
}

/* -------------------------------------------
   🌸 Global Styles
   ------------------------------------------- */
body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
}

/* Dotted line used in menu items */
.menu-dots {
  flex-grow: 1;
  border-bottom: 2px dotted #ccc;
  margin: 0 0.5rem;
  position: relative;
  bottom: 4px;
}

/* Glow effect for the booking form container */
.booking-form-glow {
    transition: all 0.3s ease;
}
.booking-form-glow:hover {
    box-shadow: 0 0 20px #D9230F, 0 0 40px #D9230F;
    transform: translateY(-2px);
}

