:root {
  --wine: #5b2c2c;
  --gold: #cba35c;
  --cream: #fdf8f5;
  --text: #3b2f2f;
}

/* -------------------------
   CONTACT PAGE STYLING
-------------------------- */
body {
  background: var(--cream);
}

/* Hero Section */
.jumbotron {
  background: linear-gradient(rgba(45, 20, 20, 0.6), rgba(20, 10, 10, 0.6)), url('/images/hero_2.jpg') center/cover;
  color: #fff;
  padding: 8rem 0;
  margin-bottom: 0;
  position: relative;
}
.jumbotron span {
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}
.jumbotron h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  letter-spacing: 1px;
  text-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

/* Info Cards */
.card {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 6px 25px rgba(0,0,0,0.05);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(91,44,44,0.15);
}
.card-body i {
  color: var(--gold);
}
.card-body h5 {
  font-family: 'Playfair Display', serif;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.card-body p {
  color: var(--text);
  font-size: 0.95rem;
}

/* Contact Form */
.card-body form label {
  color: var(--wine);
  font-weight: 600;
  font-size: 0.95rem;
}
.form-control {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  transition: all 0.3s ease;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(203,163,92,0.3);
}

/* Form Card */
.card.shadow-sm {
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
  background: #fff;
}

/* Button */
.btn-danger {
  background: linear-gradient(145deg, var(--gold), #a07c4f);
  border: none;
  color: var(--cream);
  border-radius: 50px;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(203,163,92,0.25);
  transition: all 0.3s ease;
}
.btn-danger:hover {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 8px 20px rgba(91,44,44,0.25);
  transform: translateY(-2px);
}

/* AOS Animations */
[data-aos] {
  transition: all 0.8s ease !important;
}

/* Responsive */
@media (max-width: 767.98px) {
  .jumbotron {
    padding: 5rem 0;
  }
  .jumbotron h1 {
    font-size: 2.5rem;
  }
}
