/* Main container */
.container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
}

/* Hero Section */
.hero {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
  width: calc(100% - 6rem);
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
  background-image: url(../images/BJ-\(GNA-080524\)---RRD-1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 25px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-family: "Oswald";
  font-weight: 400;
  font-size: 5rem;
  margin-bottom: 1.1rem;
  white-space: nowrap;
  line-height: 1.1;
}

.hero-buttons {
  font-family: "Oswald";
  display: flex;
  gap: 2rem;
  justify-content: center;
  width: 100%;
  max-width: fit-content;
  margin: 0 auto;
  align-items: center;
}

.btn {
  font-family: "Oswald";
  flex: 1;
  font-size: 2rem;
  padding: 0.2em 5.3em;
  font-weight: 300;
  border: 0;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  border-radius: 30px;
  align-items: center;
}

.btn.light {
  background-color: rgba(255, 255, 255, 0.85);
  color: black;
}

.btn.light:hover {
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
}

.btn.dark {
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
}

.btn.dark:hover {
  background-color: rgba(255, 255, 255, 0.85);
  color: black;
}

.contact-btn {
  font-family: "Oswald";
  font-size: 1.35rem;
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.85);
  color: black;
  border: none;
  padding: 0.5em 1em;
  cursor: pointer;
  border-radius: 25px;
  z-index: 2;
  transition: 0.2s;
}

.contact-btn:hover {
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
}


@media (max-width: 810px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-overlay {
    border-radius: 10px;
  }

  .hero-image-wrapper {
  position: relative;
  width: calc(100% - 4rem);
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-image: url(../images/BJ-\(GNA-080524\)---RRD-1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;  
  }
  
  .hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .hero-title {
    font-size: 26px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0.2rem;
  }

  .hero-subtitle {
    font-size: 16px;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    width: 298px;
    font-size: 18px;
    padding: 0.3rem 3rem;
    border-radius: 10px;
  }

  .contact-btn {
    display: block;
    font-size: 16px;
    padding: 0.3rem 1.2rem;
    text-align: center;
    border-radius: 10px;
  }
}

@media (max-width: 365px) {
  .hero-title{
    font-size: 20px;
  }

  .hero-buttons .btn {
    width: 100%;
    width: 229px;
    font-size: 16px;
    padding: 0.3rem 3rem;
    border-radius: 10px;
  }

  .contact-btn {
    font-size: 16px;
  }
}

@media (min-width: 811px) and (max-width: 1130px){
  .hero-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-overlay {
    border-radius: 10px;
  }

  .hero-image-wrapper {
  position: relative;
  width: calc(100% - 6rem);
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-image: url(../images/BJ-\(GNA-080524\)---RRD-1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;  
  }
  
  .hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .hero-title {
    font-size: 54px;
    text-align: center;
    margin-bottom: 0.2rem;
  }

  .hero-subtitle {
    font-size: 24px;
    text-align: center;
  }

  .hero-buttons {
    gap: 0.5rem;
  }

  .hero-buttons .btn {
    margin-top: 10px;
    width: 100%;
    font-size: 24px;
    padding: 0.3rem, 3rem;
  }

  .contact-btn {
    display: block;
    margin: 3rem auto 0;
    font-size: 22px;
    padding: 0.3rem 1.2rem;
    text-align: center;
  }
}