:root {
  --terracotta: #C96B4B;
  --deep-rust: #8B3A2E;
  --sage-green: #A8B89A;
  --olive-sage: #7A8660;
  --cream: #FAF5EE;
  --beige: #E6D7C3;
  --text: #3B302A;
}

/* GLOBAL */
body {
  margin: 0;
  background-color: var(--cream);
  color: var(--text);

  /* BODY FONT */
  font-family: 'Montserrat', sans-serif;
}

/* HEADINGS FONT */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: var(--cream);
  position: sticky;
  top: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.logo-text {
  font-size: 28px;
  font-weight: 600;
  color: var(--deep-rust);
}

.header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--deep-rust);
  font-weight: 500;
}

.header nav a:hover {
  color: var(--terracotta);
}

/* HERO */
.hero {
  height: 80vh;
  background-color: var(--beige);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 64px;
  color: var(--deep-rust);
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  max-width: 650px;
  margin: 0 auto 25px;
}

/* BUTTON */
.btn {
  background-color: var(--terracotta);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}

.btn:hover {
  background-color: var(--deep-rust);
}

/* IMAGE SECTION */
.image-section {
  text-align: center;
  padding: 40px 20px;
}

.image-section img {
  width: 90%;
  max-width: 900px;
  border-radius: 12px;
}

/* SECTIONS */
.section {
  padding: 70px 20px;
  text-align: center;
}

.section h2 {
  font-size: 42px;
  color: var(--deep-rust);
}

.light {
  background-color: var(--beige);
}

/* CARDS */
.card-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  background-color: white;
  width: 280px;
  padding: 25px;
  border-radius: 12px;
  border-top: 5px solid var(--sage-green);
}

.card h3 {
  color: var(--olive-sage);
}

/* FOOTER */
.footer {
  background-color: var(--deep-rust);
  color: white;
  text-align: center;
  padding: 25px;
}
