/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* Language Bar */
.lang-bar {
  background: #e1e5ea;
  text-align: right;
  padding: 10px 20px;
}

.lang-bar a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: bold;
}

/* Header */
.main-header {
  background: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo img {
  max-width: 300px;
  height: auto;
}

.search-area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.search-area input {
  padding: 8px;
  font-size: 16px;
  flex: 1;
  min-width: 200px;
}

.search-area button {
  padding: 8px 16px;
  background: #2c3e50;
  color: white;
  border: none;
  cursor: pointer;
}

.search-area button:hover {
  background: #1a242f;
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #2c3e50;
  padding: 10px;
  margin: 0;
}

.main-nav li {
  margin: 5px 10px;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: background 0.2s;
}

.main-nav a:hover {
  background: #1a242f;
  border-radius: 4px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: white;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  color: #555;
}

/* Most Requested */
.most-requested {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
}

.most-requested h2 {
  margin-bottom: 20px;
  font-size: 1.8em;
  color: #2c3e50;
}

.most-requested ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}

.most-requested li {
  margin: 10px 0;
}

.most-requested a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.most-requested a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-area {
    width: 100%;
    margin-top: 10px;
  }

  .search-area input {
    width: 100%;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .main-nav li {
    margin: 8px 0;
  }
}

@media (max-width: 480px) {
  .logo img {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.8em;
  }

  .hero p {
    font-size: 1em;
  }

  .most-requested h2 {
    font-size: 1.5em;
  }
}
