/* ============================================
   Owen Sound — The Scenic City
   Color Scheme: Teal & Slate
   Typography: Merriweather + Source Sans Pro
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
    --primary: #00796b;
    --primary-dark: #004d40;
    --primary-light: #4db6ac;
    --accent: #ff8f00;
    --accent-light: #ffc046;
    --dark: #263238;
    --dark-mid: #37474f;
    --light-bg: #e0f2f1;
    --text: #37474f;
    --text-light: #607d8b;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --border: #b2dfdb;
    --shadow: rgba(38, 50, 56, 0.15);
    --shadow-heavy: rgba(38, 50, 56, 0.25);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Source Sans Pro', 'Segoe UI', Arial, sans-serif;
    --max-width: 1200px;
    --header-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

ul, ol {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 0.75em;
}

h1 { font-size: 2.75rem; font-weight: 900; }
h2 { font-size: 2.1rem; font-weight: 700; }
h3 { font-size: 1.6rem; font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }
h5 { font-size: 1.1rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

p {
    margin-bottom: 1.2em;
    font-size: 1.05rem;
}

.section-title {
    text-align: center;
    margin-bottom: 0.5em;
    color: var(--primary-dark);
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 2.5em;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0.5em auto 0;
    border-radius: 2px;
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section.alt-bg {
    background: var(--light-bg);
}

.section.dark-bg {
    background: var(--dark);
    color: var(--white);
}

.section.dark-bg h2,
.section.dark-bg h3 {
    color: var(--white);
}

.section.dark-bg .section-title::after {
    background: var(--accent);
}

/* --- Header & Navigation --- */
.site-header {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    box-shadow: 0 2px 12px var(--shadow);
    transition: background var(--transition), box-shadow var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.site-logo a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-logo .logo-accent {
    color: var(--accent);
}

.site-logo a:hover {
    color: var(--primary);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-mid);
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    background: var(--primary);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    content: ' \25BE';
    font-size: 0.7em;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 8px 24px var(--shadow-heavy);
    border-radius: var(--radius);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-dark);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark);
    margin: 5px 0;
    border-radius: 2px;
    transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 77, 64, 0.55) 0%, rgba(38, 50, 56, 0.7) 100%);
}

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

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 0.3em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero .tagline {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 1.5em;
    opacity: 0.95;
}

.hero .btn {
    font-size: 1.1rem;
    padding: 16px 36px;
}

/* Interior Hero (Page Banner) */
.page-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: var(--header-height);
    overflow: hidden;
}

.page-hero .hero-bg::after {
    background: linear-gradient(to bottom, rgba(0, 77, 64, 0.5) 0%, rgba(38, 50, 56, 0.65) 100%);
}

.page-hero h1 {
    font-size: 2.8rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.page-hero .tagline {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--light-bg);
    padding: 14px 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-light);
    margin: 0 8px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 30px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    letter-spacing: 0.3px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 121, 107, 0.35);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: #e65100;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 143, 0, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* --- Cards --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px var(--shadow-heavy);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 28px;
}

.card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5em;
}

.card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1em;
}

.card-body .btn {
    font-size: 0.9rem;
    padding: 10px 22px;
}

/* Feature Card (icon-based) */
.feature-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--shadow-heavy);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5em;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Info Card */
.info-card {
    background: var(--white);
    border-left: 4px solid var(--primary);
    padding: 24px 28px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px var(--shadow);
}

.info-card h4 {
    color: var(--primary-dark);
    margin-bottom: 0.3em;
}

.info-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* --- Split Content (Image + Text) --- */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-content.reverse {
    direction: rtl;
}

.split-content.reverse > * {
    direction: ltr;
}

.split-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
}

.split-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.split-text h2 {
    color: var(--primary-dark);
}

.split-text h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin-top: 0.4em;
    border-radius: 2px;
}

/* --- Highlight Bar --- */
.highlight-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.highlight-bar h2 {
    color: var(--white);
    margin-bottom: 0.3em;
}

.highlight-bar p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 1.5em;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 30px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-top: 4px;
}

/* --- Content Page --- */
.content-page {
    padding: 60px 0;
}

.content-page h2 {
    color: var(--primary-dark);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.content-page h2:first-child {
    margin-top: 0;
}

.content-page h3 {
    color: var(--primary);
    margin-top: 1.3em;
}

.content-page ul,
.content-page ol {
    list-style: disc;
    padding-left: 1.8em;
    margin-bottom: 1.2em;
}

.content-page ol {
    list-style: decimal;
}

.content-page li {
    margin-bottom: 0.5em;
    font-size: 1.02rem;
}

.content-page blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    margin: 1.5em 0;
    background: var(--light-bg);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--dark-mid);
}

.content-two-col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.sidebar {
    padding-top: 10px;
}

.sidebar-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-card h4 {
    color: var(--primary-dark);
    margin-bottom: 0.6em;
    font-family: var(--font-heading);
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
}

.sidebar-card li {
    margin-bottom: 0.4em;
}

.sidebar-card li a {
    font-weight: 600;
    font-size: 0.95rem;
}

/* --- Events List --- */
.event-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.event-date {
    min-width: 80px;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    padding: 12px;
    align-self: flex-start;
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.event-date .day {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.event-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3em;
    color: var(--primary-dark);
}

.event-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* --- Directory Listing --- */
.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.directory-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}

.directory-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px var(--shadow);
}

.directory-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.3em;
    font-size: 1.1rem;
}

.directory-item .category-tag {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.directory-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Directory Category Filter */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--border);
    border-radius: 30px;
    background: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* --- Contact / Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.3rem;
}

.contact-info-item h4 {
    margin-bottom: 0.2em;
    font-size: 1rem;
}

.contact-info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* --- Map placeholder --- */
.map-container {
    width: 100%;
    height: 350px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    border: 2px dashed var(--border);
}

/* --- Footer --- */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5em;
}

.footer-about .logo-accent {
    color: var(--accent);
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 1.2em;
}

.footer-col ul li {
    margin-bottom: 0.5em;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.accent-text { color: var(--accent); }
.primary-text { color: var(--primary); }

.img-rounded {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.img-shadow {
    box-shadow: 0 8px 30px var(--shadow);
}

.badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-accent {
    background: var(--accent);
}

/* Table */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow);
}

.styled-table thead th {
    background: var(--primary-dark);
    color: var(--white);
    padding: 14px 18px;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
}

.styled-table tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.styled-table tbody tr:nth-child(even) {
    background: var(--light-bg);
}

.styled-table tbody tr:hover {
    background: #b2dfdb;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 24px;
    border-radius: var(--radius-lg);
    margin: 40px 0;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 0.3em;
}

.cta-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 1.5em;
}

/* --- Image Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .card-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .split-content {
        gap: 40px;
    }
    .content-two-col {
        grid-template-columns: 1fr;
    }
    .sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }

    .hero h1 { font-size: 2.4rem; }
    .page-hero h1 { font-size: 2rem; }

    .section { padding: 50px 0; }

    /* Mobile Nav */
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--white);
        box-shadow: -4px 0 20px var(--shadow-heavy);
        padding: 100px 24px 40px;
        transition: right var(--transition);
        overflow-y: auto;
        z-index: 999;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 2px;
    }

    .main-nav a {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-dropdown > a::after {
        content: ' +';
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 16px;
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .split-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .split-content.reverse {
        direction: ltr;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .card-grid-3,
    .card-grid-4 {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-row {
        gap: 30px;
    }

    .event-item {
        flex-direction: column;
        gap: 16px;
    }

    .filter-bar {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero { min-height: 70vh; }
    .hero h1 { font-size: 1.9rem; }
    .container { padding: 0 16px; }
    .card-body { padding: 20px; }
}
