body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #222;
}

/* NAV */
header {
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,0.8);
  color: white;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
}

nav a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
}

.cta-nav {
  background: #e63946;
  padding: 8px 15px;
  border-radius: 5px;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('flyer.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #e63946;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* ABOUT */
.about {
  padding: 100px 40px;
}

.container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-img img {
  width: 350px;
  border-radius: 10px;
}

/* CAMPAIGN */
.campaign {
  padding: 80px 40px;
  text-align: center;
  background: #f9f9f9;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  padding: 25px;
  background: white;
  border-radius: 10px;
  transition: 0.3s;
}

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

/* HIGHLIGHT */
.highlight {
  padding: 80px 40px;
}

.highlight-container {
  display: flex;
  gap: 40px;
}

.highlight img {
  width: 400px;
  border-radius: 10px;
}

/* CONTACT */
.contact {
  padding: 80px 40px;
  text-align: center;
  background: #002f6c;
  color: white;
}

form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
}

button {
  background: #e63946;
  color: white;
  border: none;
  padding: 10px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 15px;
  background: black;
  color: white;
}