/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fdfdfc;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #d4af37;
}

/* Hero section */
.hero {
  background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)),
              url("https://picsum.photos/1600/800?blur=3") center/cover;
  text-align: center;
  padding: 120px 20px;
  color: #222;
}

.hero h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #111;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #444;
}

.hero button {
  background: #d4af37;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

/* News section */
main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 60px;
}

.news-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-text {
  padding: 20px;
}

.news-text h3 {
  color: #222;
  margin-bottom: 10px;
}

.news-text p {
  color: #555;
  font-size: 0.95rem;
}

/* Footer */
footer {
  background: #fff;
  text-align: center;
  padding: 25px;
  color: #888;
  border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
  }

  .hero h2 {
    font-size: 2.2rem;
  }

  main {
    padding: 30px;
  }
}
