/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: #fff;
  background: #000;
}

/* Container */
.header__container,
.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

/* Logo */
.logo {
  line-height: 1;
}

.logo__top {
  display: flex;
  gap: 6px;
}

.logo__text {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
}

.logo__accent {
  color: #ff7a00;
  font-weight: 500;
  font-size: 18px;
}

/* Nav */
.nav__list {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav__link {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  opacity: 0.85;
  transition: 0.3s;
}

.nav__link:hover {
  opacity: 1;
}

/* Button */
.button {
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  padding: 12px 26px;
  transition: 0.3s;
}

.button--primary {
  background: #fff;
  color: #000;
}

.button--primary:hover {
  background: #e6e6e6;
}

.button--secondary {
  background: #fff;
  color: #000;
  padding: 14px 34px;
  font-size: 15px;
}

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
}

.header__burger span {
  width: 22px;
  height: 2px;
  background: #fff;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  background: url('./assets/img/bg-first.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* Overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

/* Content */
.hero__container {
  position: relative;
  max-width: 800px;
}

/* Title */
.hero__title {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero__title-highlight {
  display: block;
}

/* Description */
.hero__description {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* Button */
.hero__button {
  font-weight: 500;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {

  .nav {
    display: none;
  }

  .header__button {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .hero__title {
    font-size: 44px;
  }

  .hero__description {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 600px) {

  .hero__title {
    font-size: 32px;
  }

  .hero__description {
    font-size: 14px;
  }

  .hero__container {
    max-width: 100%;
  }

  .button--secondary {
    width: 100%;
    text-align: center;
  }
}