:root{
    --primary-color: #f5f3f2;
    --secondary-color: #6fa89a; 
    --tertiary-color: #d5a67a;
    --text-color: #444343;
}

h1, h2, h3 {
  font-family: 'Playfair Display', 'Libre Baskerville', serif;
  font-weight: 700;
  color: var(--text-color);
}

body, p, span {
  font-family: 'Work Sans', 'Open Sans', sans-serif;
  font-weight: 400;
  color: var(--text-color); 
  background-color: var(--primary-color);
}

button, .btn {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.video-background-container {
  position: relative;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.content-overlay {
  position: relative;
  z-index: 1;
  background-color: rgba(68, 67, 67, 0.6);
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
}
