:root {
  --color-white: #ffffff;
  --color-black: #000000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

button {
  cursor: pointer;
}
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --brand-logo-url: url('/assets/c4babab8-8b29-4874-84c5-4b4a2fb37da6.png');
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Merriweather', sans-serif;
  --color-primary: #1a1a2e;
  --color-secondary: #16213e;
  --color-primary-text: #111111;
  --color-secondary-text: #ffffff;
  --color-ver1: #211212;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading, inherit);
}
body {
  font-family: var(--font-body, inherit);
  color: var(--color-primary-text, inherit);
}
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a2e;
  background-image: url('');
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero__content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 2rem;
  max-width: 800px;
}
.hero__logo {
  max-width: 140px;
  margin: 0 auto 1.5rem;
  display: block;
}
.hero__heading {
  font-family: 'Playfair Display', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero__subheading {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.hero__cta {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}