@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&display=swap');
:root {
  --black: #0a0a0a;
  --gold: #c4a552;
  --white: #ffffff;
  --gray: #cccccc;
  --red: #e63946;
}

body {
  margin: 0;
  font-family: 'Figtree', sans-serif;
  background-color: var(--black);
  color: var(--white);
}

header {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('hero.jpg') no-repeat center center/cover;
  opacity: 0.4;
  z-index: 1;
}

header img.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  height: 100px;
  z-index: 2;
}

header > div {
  position: relative;
  z-index: 2;
}

header h1 {
  font-size: 4em;
  margin-bottom: 0.2em;
}

header p {
  font-size: 2em;
}

.cta-button {
  background-color: var(--red);
  color: var(--white);
  padding: 1em 2em;
  border: none;
  margin-top: 1em;
  font-size: 1.25em;
  cursor: pointer;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #ff4d5a;
  transform: scale(1.05);
}

.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-card {
  background-color: #1a1a1a;
  border: 1px solid var(--gold);
  padding: 20px;
  width: 250px;
  text-align: center;
  display: block;
  text-decoration: none;
  color: var(--white);
  border-radius: 6px;
}

.service-card .cta-button {
  font-size: 0.9em;
  padding: 0.5em 1em;
  margin-top: 10px;
  border:  1px solid var(--gold);
  background-color: transparent;
  text-decoration: auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  background-color: #1a1a1a;
  color: var(--white);
  border: 1px solid var(--gray);
}

footer {
  text-align: center;
  padding: 30px;
  background-color: #111;
  color: var(--gray);
}