/* Reset */
/*
  Define color variables based on the Haali‑Pular NJ logo:
    --primary-color: dark navy blue drawn from the outer circle text.
    --secondary-color: deep red used in the stripes and motto.
    --accent-color: warm gold matching the inner map and text.
    --highlight-color: rich green representing growth and progress.
    --text-color: base text colour.
    --bg-color: off‑white background for a clean look.
*/
:root {
  --primary-color: #0B3D91;
  --secondary-color: #C1272D;
  --accent-color: #B89B45;
  --highlight-color: #0B6848;
  --text-color: #333333;
  --bg-color: #FDFEFE;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background-color: var(--primary-color);
  border-bottom: 3px solid var(--accent-color);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo span {
  font-weight: bold;
  font-size: 1.2rem;
  color: #FFFFFF;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

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

.site-nav a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: bold;
  transition: color 0.3s ease;
}

/* Active nav link style */
.site-nav a.active {
  color: var(--accent-color);
}

/* Hover state for navigation links */
.site-nav a:hover {
  color: var(--accent-color);
}

.site-nav.nav-open {
  display: flex;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  display: block;
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 8px;
}

.hero-overlay h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.hero-overlay p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.btn-primary {
  background-color: var(--highlight-color);
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
}

/* Sections */
.section {
  padding: 60px 0;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.section p,
.section ul {
  font-size: 1rem;
  margin-bottom: 20px;
}

.section ul {
  list-style: disc inside;
}

/* Culture gallery styles */
.culture .gallery {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.culture .gallery img {
  width: calc(50% - 20px);
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

@media (min-width: 769px) {
  .culture .gallery img {
    width: calc(33.333% - 20px);
  }
}

@media (max-width: 480px) {
  .culture .gallery img {
    width: 100%;
  }
}

/* Footer */
.site-footer {
  background-color: var(--primary-color);
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  border-top: 3px solid var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #a1b6d4;
    display: none;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #ddd;
    z-index: 1000;
  }

  .site-nav.nav-open {
    display: flex;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 10px;
    margin: 10px 0;
  }

  .hero-overlay h1 {
    font-size: 1.6rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-overlay {
    padding: 10px;
  }

  .hero-overlay h1 {
    font-size: 1.4rem;
  }

  .hero-overlay p {
    font-size: 0.9rem;
  }
}