:root {
  --gold-color: #d4af37;
  --dark-wood: #4B3621;
  --vintage-beige: #F5EEDC;
  --card-bg: #FAF7F0;
  --text-brown: #3E2723;
}

.image-highlight-wrapper {
  position: relative;
  padding: 2rem;
  display: inline-block;
  margin-bottom: 2rem;
}

.image-highlight-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(255, 255, 255, 0) 75%);
  z-index: -1;
  border-radius: 50%;
}

.img-hero-highlight {
  box-shadow: 0 15px 45px rgba(0,0,0,0.2);
  border: 10px solid white;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.img-hero-highlight:hover {
  transform: scale(1.02);
}

body {
  background-color: var(--vintage-beige);
  color: var(--text-brown);
}

.navbar {
  background-color: var(--vintage-beige) !important;
}

.vintage-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.vintage-card:hover {
  transform: translateY(-5px);
}

.serif-display {
  font-family: 'Playfair Display', serif;
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.ornament {
  height: 2px;
  width: 60px;
  background: var(--gold-color);
  margin: 2rem auto;
  position: relative;
}

.ornament::before, .ornament::after {
  content: '♦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-color);
  font-size: 10px;
}

.ornament::before {
  left: -15px;
}

.ornament::after {
  right: -15px;
}

