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

body {
  background-color: #0a0a0a;
  color: #e0e0e0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 20%;
     object-position: center 20%;
  z-index: 0;
}
.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.4) 40%, rgba(10, 10, 10, 0.9) 80%, #0a0a0a 100%);
  z-index: 1;
}
.hero-section .hero-content {
  position: relative;
  margin-top: 14rem;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.hero-section .hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  letter-spacing: 10px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.hero-section .hero-content h2 {
  font-size: clamp(1rem, 4vw, 1.4rem);
  font-weight: 200;
  font-style: italic;
  color: #c0c0c0;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  opacity: 0.6;
}
.scroll-indicator span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 5px;
}
.scroll-indicator .arrow-down {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
}

.main-content {
  padding: 100px 0;
}
.main-content .container {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 30px;
}
.main-content .container h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 20px;
  border-left: 2px solid #c0c0c0;
  padding-left: 15px;
}
.main-content .container p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(224, 224, 224, 0.8);
  margin-bottom: 50px;
  text-align: justify;
}

.main-footer {
  padding: 60px 20px;
  text-align: center;
  background-color: #050505;
  border-top: 1px solid rgba(192, 192, 192, 0.1);
}
.main-footer p {
  font-size: 0.8rem;
  color: rgba(192, 192, 192, 0.4);
  margin-bottom: 15px;
}
.main-footer .footer-links a {
  color: rgba(192, 192, 192, 0.6);
  text-decoration: none;
  font-size: 0.8rem;
  transition: 0.3s;
}
.main-footer .footer-links a:hover {
  color: #fff;
}/*# sourceMappingURL=style.css.map */