/* 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/DS-\(GNA-220824\)---RD-2.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: 1rem;
  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: 0.2rem;
  white-space: nowrap;
}

.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;
}
