:root {
  --bg-dark: #1F1F1F;
  --bg-dark-2: #2F2F2F;
  --bg-grey: #444444;
  --accent: #B92D38;
  --white: #FFFFFF;
  --radius: 26px;
  --font: "Unbounded", sans-serif;
}

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

html, body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--white);
  min-width: 1920px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 500;
  font-size: 24px;
  line-height: 122%;
  letter-spacing: 0.05em;
  color: var(--white);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn--primary {
  background: var(--accent);
}

.btn--outline {
  background: transparent;
  border: 6px solid var(--accent);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  width: 1920px;
  height: 1080px;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/bg-hero.png");
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  top: 120px;
  left: 0;
  width: 1920px;
  height: 960px;
  background: var(--bg-dark);
  opacity: 0.8;
}

/* ---------- Header ---------- */

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  z-index: 2;
}

.header__logo {
  position: absolute;
  top: 32px;
  left: 240px;
  display: block;
  width: 336px;
  height: 56px;
}

.header__logo img {
  width: 100%;
  height: 100%;
}

.nav {
  position: absolute;
  top: 51px;
  left: 1067px;
  display: flex;
  align-items: center;
  gap: 55px;
}

.nav__link {
  font-family: var(--font);
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: var(--accent);
}

.nav__link--active {
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Hero content ---------- */

.hero__content {
  position: absolute;
  top: 307px;
  left: 234px;
  width: 836px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 89px;
}

.hero__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

.hero__lead {
  font-family: var(--font);
  font-weight: 500;
  font-size: 24px;
  line-height: 122%;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-top: -53px;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 36px;
}

.hero__product {
  position: absolute;
  z-index: 1;
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.2);
}

.hero__product--main {
  top: 318px;
  left: 1192px;
  width: 543px;
  height: 985px;
  object-fit: cover;
}

.hero__product--bottle {
  top: 728px;
  left: 1563px;
  width: 214px;
  height: 547px;
  object-fit: cover;
}

/* ---------- About ---------- */

.about {
  width: 1920px;
  background: var(--bg-dark);
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.about__head {
  display: flex;
  align-items: center;
  gap: 146px;
}

.about__badge {
  width: 708px;
  padding: 30px 43px;
  background: var(--accent);
  border: 1px solid #000;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  text-align: left;
}

.about__desc {
  width: 586px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 24px;
  line-height: 122%;
  letter-spacing: 0.05em;
  color: var(--white);
}

.about__intro {
  font-family: var(--font);
  font-weight: 500;
  font-size: 24px;
  line-height: 122%;
  letter-spacing: 0.05em;
  color: var(--white);
}

.features {
  display: flex;
  align-items: flex-start;
  gap: 169px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  width: 233px;
}

.feature__circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--bg-grey);
  flex-shrink: 0;
}

.feature__text {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 122%;
  letter-spacing: 0.05em;
  color: var(--white);
  text-align: center;
}

.about__quote {
  width: 1920px;
  padding: 28px 288px 32px;
  background: var(--bg-grey);
  font-family: var(--font);
  font-weight: 500;
  font-size: 20px;
  line-height: 122%;
  letter-spacing: 0.05em;
  color: var(--white);
  text-align: center;
}
