
.navbar {
  background: rgba(0, 0, 0, 0.01) !important; /* semi-transparent */
  backdrop-filter: blur(8px);
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at center, #353333 0%, #000 80%);
  color: white; /* optional, ensures text is visible */
  padding-top: 140px;
}

.img-box {
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.hero2 {
  position: relative;
  height: 60vh;
  background: url(../images/cyprus-flag.jpg) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white; /* so text stays readable */
  overflow: hidden;
}

.hero2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* darkness overlay */
  backdrop-filter: blur(4px);      /* blur effect */
  z-index: 1;
}

.hero2 * {
  position: relative;
  z-index: 2; /* bring text above the overlay */
}

.hero3 {
  position: relative;
  height: 85vh;
  background: url(../images/koumasweb.jpg) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white; /* so text stays readable */
  overflow: hidden;
}

.hero3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* darkness overlay */
  backdrop-filter: blur(4px);      /* blur effect */
  z-index: 1;
}

.hero3 * {
  position: relative;
  z-index: 2; /* bring text above the overlay */
}
