/* Reset and fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #111;
  background-color: #fff;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
header {
  background: #000;
  color: #fff;
  padding: 1.2rem 0;
}
header .logo {
  font-size: 1.5rem;
  font-weight: 700;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #f1c40f;
}

/* Hero */
.hero {
  background: url('hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ddd;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  margin-right: 1rem;
  transition: all 0.3s ease;
}
.btn.primary {
  background: #f1c40f;
  color: #000;
}
.btn.primary:hover {
  background: #d4ac0d;
}
.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}
.btn.secondary:hover {
  background: #fff;
  color: #000;
}

/* Featured Section */
.featured {
  padding: 4rem 1rem;
  background: #f9f9f9;
}
.featured .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.featured-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}
.featured-text {
  flex: 1;
}
.featured-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.featured-text p {
  margin-bottom: 1.5rem;
  color: #333;
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.socials a {
  color: #f1c40f;
  margin: 0 0.5rem;
  text-decoration: none;
  font-weight: 600;
}
.socials a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .featured .container {
    flex-direction: column;
    text-align: center;
  }
  .hero h2 {
    font-size: 2rem;
  }
}
