@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');
/* ---------- Global Base Styles ---------- */
* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #222;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* ---------- Header & Navigation ---------- */
  
  /* Base header: solid by default */
  .site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: background 0.4s, box-shadow 0.4s;
  }
  
  /* Home-only transparent mode */
  .home .site-header.transparent {
    background: transparent;
    box-shadow: none;
  }
  .home .site-header.solid {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }
  
  /* Navigation structure */
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
  }
  
  .logo img {
    height: 42px;
    transition: filter 0.4s;
    margin-left: 0;
    margin-top: 0;
  }
  .home .logo img {
    filter: brightness(0) invert(1);
  }
  .home .site-header.solid .logo img {
    filter: none;
  }
  
  /* Navigation links */
  .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
  }
  
  .main-nav a {
    text-decoration: none;
    color: #111827;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
  }
  
  .home .main-nav a {
    color: white;
  }
  .home .site-header.solid .main-nav a {
    color: #111827;
  }
  
  .main-nav a:hover {
    color: #0ea5e9;
  }
  
  /* Dropdown menus */
  .has-dropdown {
    position: relative;
  }
  .has-dropdown .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-top: none;
    min-width: 220px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown {
    display: block;
  }
  .dropdown a {
    display: block;
    color: #111827;
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }
  .dropdown a:hover {
    background: #f1f5f9;
  }
  
  /* Mobile nav toggle */
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #111827;
    margin-top:-10px;
  }
  .home .nav-toggle {
    color: white;
  }
  .home .site-header.solid .nav-toggle {
    color: #111827;
  }
  
  @media (max-width: 768px) {
    .nav-toggle {
      display: block;
    }
    .main-nav {
      display: none;
      width: 100%;
    }
    .main-nav ul {
      flex-direction: column;
    }
    .main-nav.show {
      display: block;
    }
  }
  
  /* ---------- Hero (Homepage Only) ---------- */
  .hero {
    background: url('la-skyline.jpg') center/cover no-repeat fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
  }
  
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 1rem;
    animation: fadeIn 2s ease forwards;
    opacity: 0;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
.hero-title {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
  }
  .hero p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  .hero .cta {
    background: #0ea5e9;
    color: white;
    padding: 0.9rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
  }
  .hero .cta:hover {
    background: #0284c7;
  }
  
  /* ---------- General Layout ---------- */
  main {
    padding-top: 90px;
  }
  
  .info-section {
    padding: 4rem 1rem;
    background: #fff;
  }
  .info-section h2 {
    font-size: 2rem;
    margin-top: 0;
    text-align: center;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .card {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1rem;
    background: white;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  
  .card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transform: translateY(-3px);
    filter: brightness(0.97);
  }
  
  .card h3 { margin-top: 0; }
  .card p { color: #475569; }
  
  /* ---------- Footer ---------- */
  .site-footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
  }
  .footer-grid h3 {
    margin-top: 0;
    font-size: 1.1rem;
  }
  .footer-grid ul {
    list-style: none;
    padding: 0;
  }
  .footer-grid a {
    color: #334155;
    text-decoration: none;
  }
  .footer-grid a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.9rem;
    color: #64748b;
    padding-bottom: 1rem;
    text-align: center;
  }
  
  /* ---------- Non-Home Page Adjustments ---------- */
  body:not(.home) .site-header {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }
  
  body:not(.home) main,
  body:not(.home) .page-banner {
    margin-top: 90px; /* equal to header height */
  }
  
  /* ---------- About Page Styling ---------- */
  .about {
    --navy: #0b2a4a;
    --navy-ink: #09223c;
    --text: #0f172a;
    --muted: #475569;
    --accent: #0ea5e9;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
  
  /* Full-width navy banner */
  .about .page-banner {
    background: linear-gradient(180deg, var(--navy), var(--navy-ink));
    color: #fff;
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .about .page-banner h1 {
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.2px;
    font-size: clamp(2rem, 3.2vw + 1rem, 3.5rem);
    line-height: 1.1;
  }
  .about .page-banner .subtitle {
    margin-top: 0.5rem;
    opacity: 0.9;
    font-size: clamp(1rem, 0.8vw + 0.7rem, 1.25rem);
  }
  
  /* About page typography */
  .about .prose {
    color: var(--text);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 70ch;
    padding: 2.25rem 0 3rem;
  }
  .about .prose h2 {
    font-size: clamp(1.5rem, 1.2vw + 1rem, 2rem);
    line-height: 1.25;
    margin: 2rem 0 0.75rem;
    font-weight: 800;
    color: var(--text);
  }
  .about .prose h3 {
    font-size: clamp(1.125rem, 0.7vw + 0.9rem, 1.35rem);
    line-height: 1.35;
    margin: 1.5rem 0 0.5rem;
    font-weight: 700;
    color: var(--text);
  }
  .about .prose p {
    margin: 0.75rem 0 1rem;
    color: #1f2937;
  }
  .about .prose ul,
  .about .prose ol {
    padding-left: 1.25rem;
  }
  .about .prose li {
    margin: 0.4rem 0;
    color: var(--muted);
  }
  .about .prose a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(14,165,233,0.35);
  }
  .about .prose a:hover {
    border-color: var(--accent);
  }
  
  /* ==============================
   CONTACT PAGE — CENTERED LAYOUT
   ============================== */

.contact-centered {
  max-width: 650px;
  margin: 0 auto;
  padding: 0rem 1.5rem;
  text-align: center;
}

.contact-centered h2 {
  font-size: 2.4rem;
  margin-bottom: .5rem;
}

.contact-centered .contact-subtitle {
  font-size: 1.15rem;
  color: #475569;
  margin-bottom: 1rem;
}

/* Direct email line */
.direct-email {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.direct-email a {
  color: #0ea5e9;
  text-decoration: none;
  font-weight: 600;
}

.direct-email a:hover {
  text-decoration: underline;
}

/* Success message */
.success-message {
  background: #ecfdf5;
  color: #047857;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  font-weight: 600;
  border: 1px solid #a7f3d0;
}

/* Centered form */
.contact-form {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 5rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  color: #334155;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  margin-top: .4rem;
  padding: .8rem;
  border-radius: .5rem;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14,165,233,0.25);
}

.contact-form .cta {
  padding: .75rem 1.4rem;
  border-radius: 8px;
  background: #0ea5e9;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  width: fit-content;
}

.contact-form .cta:hover {
  background: #0284c7;
}

/* PAGE BANNER (same as About page) */
.contact .page-banner {
  background: linear-gradient(180deg, #0b2a4a, #09223c);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact .page-banner .banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact .page-banner h1 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: clamp(2rem, 3.2vw + 1rem, 3.5rem);
  line-height: 1.1;
}

.contact .page-banner .subtitle {
  margin-top: 0.5rem;
  opacity: 0.9;
  font-size: clamp(1rem, 0.8vw + 0.7rem, 1.25rem);
}

.calendar .page-banner .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 1in;   /* same left margin as content wrapper */
  padding-right: 2rem;
}


/* ==============================
   GLOBAL MOBILE RESPONSIVENESS
   ============================== */
@media (max-width: 768px) {

  /* NAVIGATION */
  .nav-container {
    padding: 0.5rem 0;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    background: #fff;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
  }

  .main-nav.show {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .main-nav a {
    padding: 0.75rem 1rem;
    display: block;
  }

  /* HERO TITLE & TEXT */
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    padding: 0 1rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  /* BANNER SIZE */
  .page-banner h1 {
    font-size: 1.8rem;
  }

  .page-banner .subtitle {
    font-size: 1rem;
  }

  /* GENERAL SECTION PADDING */
  .info-section {
    padding: 2.5rem 1rem;
  }

  /* CONTACT FORM */
  .contact-form {
    padding: 1.5rem 1rem;
  }

  /* GRID CARDS */
  .grid {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .page-banner h1 {
    font-size: 1.5rem;
  }

  .page-banner .subtitle {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 1.2rem 0.8rem;
  }
}

/* ===============================
   FULL-SCREEN MOBILE MENU (STYLE C)
   =============================== */

body.menu-open {
  overflow: hidden; /* prevent background scrolling */
}

/* Overlay container */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  display: none;
  z-index: 2000;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

/* show overlay */
.mobile-menu-overlay.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Close button */
.mobile-menu-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #0b2a4a;
}

/* Menu links */
.mobile-menu-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu-overlay a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 2px;
  text-decoration: none;
  color: #0b2a4a;
  font-weight: 700;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay a:hover {
  opacity: 0.6;
}

/* MOBILE LOGO FIX */
@media (max-width: 600px) {
  .logo img {
    height: 28px !important;
  }
  .nav-container {
    padding: 0.4rem 0 !important;
  }
}

/* Hide desktop nav on mobile */
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
}