/* ===== GLOBAL STYLES ===== */
body {
  background-color: #fffaf3; /* soft cream */
  font-family: 'Poppins', sans-serif;
  color: #333333; /* dark gray */
  margin: 0;
  padding: 0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

/* ===== HEADINGS ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

h1 { color: #CA3624; font-weight: 700; }
h2 { color: #00839A; font-weight: 400; }
h3, h4, h5, h6 { color: #CA3624; font-weight: 300; }

/* ===== HEADER ===== */
.site-header {
  text-align: center;
  padding: 2.5rem 1rem 1.5rem;
  background: #fffaf3;
  position: relative;
  z-index: 1000;
}

.logo-container img.site-logo {
  max-width: 200px;
  height: auto;
  display: inline-block;
  margin-bottom: 1rem;
}

/* ===== NAVIGATION ===== */
.site-nav {
  margin-top: 1rem;
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.site-nav li {
  display: inline-block;
  margin: 0 1.5rem;
}

.site-nav a {
  color: #555555;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #CA3624;
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: #CA3624;
}

.site-nav a:hover::after {
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #C7B542;
  text-align: center;
  padding: 0 1.5rem;
}

.hero--noimage { height: 30vh; }

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fffaf3;
  padding: 0 1rem;
  max-width: 900px;
}

.hero h1 {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
  opacity: 0.85;
  margin: 0 auto;
  max-width: 700px;
}

/* ===== CONTENT ===== */
.main-content {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.page-content { font-size: 1.125rem; }

p { margin-bottom: 1.25rem; }

/* ===== FOOTER ===== */
.site-footer {
  background-color: #fffaf3;
  text-align: center;
  padding: 3rem 1rem;
  color: #555555;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

.site-footer a {
  color: #CA3624;
  font-weight: 600;
  margin: 0 0.5rem;
  position: relative;
}

.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #CA3624;
  transition: width 0.3s ease;
}

.site-footer a:hover {
  color: #00839A;
}

.site-footer a:hover::after {
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { height: 40vh; padding: 0 1rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1.2rem; }
  
  .site-nav li { display: block; margin: 0.75rem 0; }
  .site-nav a::after { left: 50%; transform: translateX(-50%); }

  .main-content { margin: 2rem auto; padding: 0 1rem; }
}

/* ===== FADE-IN EFFECT ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

