/* GENERAL STYLES */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: #333;
  background: #f5f5f5;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
header {
  background: #0a1a5a;
  color: #fff;
  padding: 15px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 60px;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* HERO */
.hero {
  background: url('images/festival.png') center/cover no-repeat;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  text-align: center;
  border-radius: 10px;
}

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

.hero p {
  font-size: 1.3rem;
  margin-top: 10px;
}

/* CONTENT */
.content {
  padding: 60px 20px;
  background: white;
}

.alt-bg {
  background: #eef2f7;
}

.content h2 {
  color: #0a1a5a;
  margin-bottom: 20px;
}

.project-img {
  width: 100%;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* FOOTER */
footer {
  background: #0a1a5a;
  color: white;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

.twitter-icon {
  height: 20px;
  vertical-align: middle;
  margin-right: 5px;
}

/* SMALL SCREENS */
@media (max-width: 640px) {
  .hero { height: 55vh; }
  .hero h1 { font-size: 2rem; }
  nav a { margin-left: 12px; }
}
