* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Noto Sans, sans-serif;
}

body {
  background: #222222;
  color: #ffffff;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAV */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid #222;
  background: #757575;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
}

.nav a {
  margin-left: 20px;
  color: #000000;
  text-decoration: none;
  transition: 0.3s;
}

.nav a:hover {
  color: #004200;
}

.languages {
  margin-right: 20px;
}

.language-selector {
  position: relative;
  margin-right: 20px;
}

.language-btn {
  background: none;
  border: none;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.language-btn:hover {
  color: #004200;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #333;
  min-width: 100px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #ccc;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background: #444;
  color: #fff;
}

/* HERO */
.hero {
  height: 20vh;
  background: url(background.jpg) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero button {
  margin-top: 20px;
  padding: 12px 28px;
  border: none;
  background: white;
  color: black;
  cursor: pointer;
  border-radius: 30px; /* 👈 this makes it rounded */
  font-size: 1rem;
  transition: 0.3s;
}

.hero button:hover {
  background: #ddd;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 80px 0;
}

.feature {
  background: #151515;
  padding: 30px;
  border-radius: 10px;
  transition: 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

/* SHOWCASE */
.showcase img {
  width: 100%;
  display: block;
}

/* ABOUT */
.about {
  padding: 80px 0;
  text-align: center;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid #222;
  color: #aaa;
}