/* Updated Community Palette */
:root {
    --primary: #1b4332; /* Forest Green */
    --primary-hover: #2d6a4f;
    --accent-warm: #8b5e34; /* Earthy Sandstone / Brick */
    --accent-teal: #2c6e49; /* Spruce Teal */
    --bg-main: #f4f6f0; /* Soft Natural Light Gray */
    --bg-card: #ffffff;
    --text-main: #1c2520; /* Deep Slate/Dark Olive */
    --text-muted: #52675c;
    --border: #d8e0d8;
    --radius: 12px;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 20px rgba(0, 0, 0, 0.1);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}
/* ADA pdf tagging */

a[href$=".pdf"]::after {
    content: "(pdf)";
    font-size: 0.2rem;
    /*font-weight: bold;*/
    color: bisque;
    vertical-align: super;
    margin-left: 4px;
}

/* Header Navigation */
header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
nav a:hover {
    color: var(--primary);
}
.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
}
.btn-nav:hover {
    background: var(--primary-hover);
}

/* Hero Section with Entrance Photo */
.hero-container {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-text h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}
.badge {
    display: inline-block;
    background: #e8f3ec;
    color: var(--primary);
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .hero-actions {
        justify-content: center;
    }
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-primary {
    background: var(--primary);
    color: white;
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}
.btn-secondary {
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: #eef2ee;
}

/* Gate Image Card */
.hero-image-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 4px solid var(--bg-card);
}
.hero-image-card img {
    width: 100%;
    height: 100%;
    max-height: 380px;
    object-fit: cover;
    display: block;
}
.hero-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: white;
    padding: 1.25rem 1rem 0.75rem;
    font-size: 0.875rem;
    text-align: center;
}

/* Layout Containers */
.container {
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}
.section-title {
    margin: 2.5rem 0 1.25rem;
    font-size: 1.4rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Bento Cards */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}
.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}
.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.card-link {
    color: var(--accent-teal);
    font-weight: 600;
    text-decoration: none;
}
.card-link:hover {
    text-decoration: underline;
}

/* Zoom Meeting Box */
.meeting-details {
    background: #f0f7f2;
    border: 1px solid #c2e2cc;
    border-radius: 8px;
    padding: 0.85rem;
    margin-top: 0.75rem;
    font-size: 0.9rem;
}
.meeting-details code {
    background: #d7edd9;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    margin-top: 4rem;
    padding: 3rem 1.5rem 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}
.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.search-form {
  max-width: 500px;
  margin: 20px auto;
}

.search-group {
  display: flex;
  gap: 8px;
}

.search-group input[type="text"] {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 0.95rem;
  outline: none;
}

.search-group input[type="text"]:focus {
  border-color: #1b365d;
  box-shadow: 0 0 4px rgba(27, 54, 93, 0.3);
}

.search-group button {
  background-color: #1b365d;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.search-group button:hover {
  background-color: #12243e;
}
