:root {
  --text-light: #ffffff;
  --text-dark: #2f3a2f;
  --accent: #735632;
}

* {
  box-sizing: border-box;
  margin: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
}

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

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.5));
  z-index: -1;
}

.hero-content {
  padding: 20px;
  max-width: 800px;
  margin-bottom: 120px;
}

.brand {
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 30px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.button:hover {
  opacity: 0.85;
}

/* SECTION */
section {
  padding: 80px 20px;
  text-align: center;
  background: #f7f5ef;
}

.container {
  max-width: 800px;
  margin: auto;
}

.divider {
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: 20px auto;
}

.products li {
  list-style: none;
  margin: 10px 0;
  font-size: 1.2rem;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

footer {
  padding: 40px;
  text-align: center;
  font-size: 0.9rem;
  background: #eeeae2;
}

#logo {
  max-width: 27%;
}

.flex {
  display: flex;
}

.gap-30 {
  gap: 30px;
}

#tyler {
  padding: 20px;
  width: 300px;
  height: auto;
  text-align: center;
}