/* Global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  /* overflow: hidden; */
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: 100px;
  margin-right: 100px;
}

/* TODO: Start Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* FIXME: Start Top Section */
.hero-section .top {
  /* background: linear-gradient(135deg, #1a3344 0%, #2a4f66 100%); */
  background-image: url("../images/hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding: 80px 0;
}

.hero-section .top .content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero-section .top .content .tagline {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.hero-section .top .content .tagline::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: #fff;
  bottom: 0;
  left: 0;
}

.hero-section .top .content .titles {
  position: relative;
  padding-top: 40px;
}

.hero-section .top .content .titles::before {
  content: "";
  position: absolute;
  width: 75px;
  height: 14px;
  background-color: #c1a57b;
  top: 0;
  left: 0;
}

.hero-section .top .content .titles .hero-title,
.hero-section .top .content .titles .hero-subtitle {
  text-transform: uppercase;
}

.hero-section .top .content .titles .hero-title {
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 15px;
  font-weight: 400;
}

.hero-section .top .content .titles .hero-subtitle {
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 2px;
}
/* End Top Section */

/* FIXME: Start Bottom Section */
.hero-section .bottom {
  background-color: #e8e8e8;
}

.hero-section .bottom .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-section .bottom .contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-section .bottom .contact-info a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1d3646;
  font-size: 16px;
  transition: color 0.3s ease;
}

.hero-section .bottom .contact-info a:hover {
  color: #c1a57b;
}

.hero-section .bottom .contact-info i {
  margin-right: 10px;
  width: 20px;
  font-size: 18px;
}

.hero-section .bottom .logo {
  flex-shrink: 0;
}

.hero-section .bottom .logo img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
}

/* End Bottom Section */

/* End Hero Section */

/* TODO: Responsive */
@media (max-width: 992px) {
  .container {
    margin-left: 50px;
    margin-right: 50px;
  }

  .hero-section .top .content .titles .hero-subtitle {
    font-size: 52px;
  }

  .hero-section .bottom .logo img {
    max-width: 240px;
  }
}

@media (max-width: 768px) {
  .container {
    margin-left: 20px;
    margin-right: 20px;
  }

  .hero-section .top {
    padding: 60px 0;
  }

  .hero-section .top .content .tagline {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .hero-section .top .content .titles .hero-title {
    font-size: 14px;
  }

  .hero-section .top .content .titles .hero-subtitle {
    font-size: 40px;
  }

  .hero-section .bottom {
    padding: 10px 0;
  }

  .hero-section .bottom .logo img {
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .container {
    margin-left: 15px;
    margin-right: 15px;
  }

  .hero-section .top .content .titles .hero-subtitle {
    font-size: 28px;
  }

  .hero-section .top .content .tagline::after {
    width: 100px;
  }

  .hero-section .top .content .titles .hero-title {
    font-size: 13px;
  }

  .hero-section .bottom .content {
    flex-direction: column-reverse;
    gap: 10px;
    align-items: flex-start;
  }

  .hero-section .bottom .logo {
    align-self: flex-start;
  }

  .hero-section .bottom .logo img {
    max-width: 180px;
  }

  .hero-section .bottom .contact-info a {
    font-size: 14px;
  }
}
