*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --deep-blue: #0f2a50;
  --blueberry: #2b4d8a;
  --berry-purple: #3a6db5;
  --light-purple: #7baed4;
  --leaf-green: #5a8a3c;
  --cream: #f5f0eb;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  color: #333;
  line-height: 1.7;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 42, 80, 0.95);
  backdrop-filter: blur(8px);
  padding: 0;
  height: 64px;
}

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

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 100%;
  width: auto;
  padding: 4px 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
  line-height: 1.15;
}

.logo-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--white);
}

.logo-subtitle {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.75rem;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.header nav a {
  color: var(--cream);
  text-decoration: none;
  margin-left: 32px;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.header nav a:hover {
  color: var(--light-purple);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('images/NJBGA.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 42, 80, 0.65);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 750px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--cream);
  margin-bottom: 36px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--leaf-green);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  background: #4a7a2e;
  transform: translateY(-2px);
}

/* About */
.about {
  padding: 100px 0;
  background: var(--cream);
}

.about h2 {
  font-size: 2rem;
  color: var(--deep-blue);
  margin-bottom: 40px;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #444;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-card {
  background: var(--white);
  border-left: 4px solid var(--blueberry);
  padding: 28px 32px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.highlight-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--blueberry);
  line-height: 1;
}

.highlight-label {
  font-size: 0.95rem;
  color: #666;
  margin-top: 6px;
}

/* Gallery */
.gallery {
  background: var(--deep-blue);
  padding: 4px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* Contact */
.contact {
  padding: 80px 0;
  background: var(--deep-blue);
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.contact p {
  color: var(--light-purple);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-email {
  display: inline-block;
  color: var(--white);
  font-size: 1.25rem;
  text-decoration: none;
  border-bottom: 2px solid var(--leaf-green);
  padding-bottom: 4px;
  transition: border-color 0.2s;
}

.contact-email:hover {
  border-color: var(--light-purple);
}

/* Footer */
.footer {
  background: var(--deep-blue);
  color: var(--cream);
  text-align: center;
  padding: 32px 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-highlights {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .highlight-card {
    flex: 1;
    min-width: 140px;
  }

  .header nav a {
    margin-left: 20px;
    font-size: 0.85rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img {
    height: 200px;
  }
}
