/* style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #1a1a1a;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

header h1 {
  font-size: 2.2rem;
  font-weight: 600;
}

nav {
  background-color: #111;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffcc00;
}

.hero {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-text {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
  color: #fff;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1.2rem;
}

.content {
  max-width: 850px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111;
}

.content p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.content a {
  color: #0066cc;
  text-decoration: underline;
}

footer {
  text-align: center;
  background-color: #1a1a1a;
  color: #fff;
  padding: 1.5rem 1rem;
  margin-top: 3rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  nav {
    flex-direction: column;
    gap: 1rem;
  }
}

.full-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 2rem 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
