:root {
  --fire-red: #6F1308;
  --fire-gold: #CDA428;
  --fire-glow: #FFD447;
  --bg-dark: #1a0f08;
  --text-light: #f9f6f1;
  --card-bg: #2c1a09;
}

/* General Reset & Base */
body {
  font-family: 'Cinzel', serif; /* Klassiek middeleeuws gevoel */
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Buttons */
.btn-fire {
 background: url('/path/to/flame-texture.jpg') no-repeat center center / cover;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 40px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(205, 164, 40, 0.5);
  transition: all 0.3s ease-in-out;
}

.btn-fire:hover {
  background: var(--fire-gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 212, 71, 0.6);
}

.btn.special-link {
    color: #fff !important;         /* Witte tekst */
    font-size: 1.15rem;             /* Gelijk aan de form */
    font-weight: 600;
    text-align: center;
    margin-right:110px;
    margin-left: 0px;
}

/* Hero Banner */
.hero-banner {
  background: radial-gradient(ellipse at center, #2b1a0d 0%, #100803 100%);
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--fire-glow);
  text-shadow: 0 0 15px rgba(255, 212, 71, 0.7);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: var(--fire-gold);
  text-shadow: 0 0 8px rgba(205, 164, 40, 0.4);
}

/* Cards / Sections */
.card-body {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(255, 212, 71, 0.1);
  color: var(--text-light);
  transition: transform 0.3s ease;
}

.card-body:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(205, 164, 40, 0.2);
}

/* Titles & Headings */
h1, h2, h3, h4 {
  color: var(--fire-glow);
  text-shadow: 1px 1px 3px rgba(255, 212, 71, 0.2);
}

/* Form Styles */
.booking-form {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 0 25px rgba(255, 212, 71, 0.1);
}

.form-control {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 1px solid var(--fire-gold);
}

.form-control:focus {
  border-color: var(--fire-glow);
  box-shadow: 0 0 5px rgba(255, 212, 71, 0.3);
}

.form-group .text-muted {
    color: var(--text-light) !important;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(205, 164, 40, 0.2);
}

/* Social Icons */
.social-icon {
  background: var(--card-bg);
  color: var(--fire-gold);
  border: 2px solid var(--fire-gold);
  border-radius: 50%;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.social-icon:hover {
  background: var(--fire-gold);
  color: var(--bg-dark);
  transform: scale(1.1);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .booking-form {
    padding: 1rem;
  }
}
