body{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.navbarContainer {
    position: absolute;
    top: 25px;
    left: 27px;
    z-index: 2;
    color: white;
}

#translate {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 999px;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(5px);
    transition: background 0.2s;
}

#translate:hover {
    background: rgba(255,255,255,0.15);
}

#translate ion-icon {
    font-size: 20px;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero__content {
  z-index: 1;
  text-align: center;
  color: white;
}

.hero__content h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: #f9ffd7;;
  margin: 0 0 0.5rem;
  letter-spacing: 2px;
}

.hero__content p {
  font-size: clamp(1rem, 3vw, 1.4rem);
  margin: 3rem 0 2rem;
  opacity: 0.85;
}

.hero__btn {
  display: inline-block;
  padding: 0.6rem 2.5rem;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
}

.hero__btn:hover {
  background: white;
  color: black;
}

/* ── Bottom two columns ── */
.middle {
  display: grid;
  height: 45vh;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0px 20px 40px 10px rgba(0, 0, 0, 0.7),
              0px -20px 40px 10px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 1;
}

@media (max-width: 700px) {
  .middle {
    grid-template-columns: 1fr;
  }
}

/* ── About ── */
.about {
  background-color: #1a1a1a;
  color: white;
  padding: 3rem 2.5rem;
  display: flex;              /* ← add these */
  flex-direction: column;
}

.about h2 {
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 600;
  margin: 0 0 1rem;
}

.about p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.5rem;
}


/* ── Contact ── */
.contact {
  background-color: #f9ffd7;
  color: #222;
  padding: 3rem 2.5rem;
}

.contact h2 {
  font-size: 1.6rem;
  color: black;
  font-weight: 600;
  font-style: italic;
  margin: 0 0 1rem;
}

.contact p {
  line-height: 1.7;
  margin: 0 0 1rem;
}

.bottom {
  display: grid;
  height: 40vh;
  grid-template-columns: 1fr 1fr 1fr;
}

.bottom__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}