/* ==========================================================================
   Monmouth CSSE AI Workshops - Department Format
   Matching Official Monmouth University CSSE Department Styling
   ========================================================================== */

/* CSS Variables - Monmouth Official */
:root {
    --monmouth-blue: #002855;
    --monmouth-light-blue: #0d64b2;
    --monmouth-orange: #E57200;
    --monmouth-text: #1c1d1f;
    --monmouth-gray: #5B6770;
    --monmouth-light-gray: #f7f7f7;
    --max-width: 1400px;
    --spacing-unit: 20px;
    --spacing-large: 36px;
    --left-menu-width: 240px;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--monmouth-text);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--monmouth-blue);
}

h1 {
    font-size: 3.75rem;
}

h2 {
    font-size: 2.625rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.625rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25em;
}

a {
    color: var(--monmouth-light-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--monmouth-orange);
    text-decoration: underline;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--monmouth-gray);
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */

.wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

@media (min-width: 768px) {
    .wrapper {
        padding: 0 var(--spacing-large);
    }
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    background: var(--monmouth-blue);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mu-logo {
    height: 40px;
    width: auto;
}

@media (min-width: 1024px) {
    .mu-logo {
        height: 50px;
    }
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: none;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.nav-menu a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.mobile-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.breadcrumbs {
    background: var(--monmouth-light-gray);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--monmouth-gray);
}

.breadcrumbs a {
    color: var(--monmouth-light-blue);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Hero Section with Slideshow
   ========================================================================== */

.wp-block-mu-hero {
    position: relative;
    min-height: 500px;
    background: var(--monmouth-blue);
    color: #fff;
    overflow: hidden;
}

@media (min-width: 768px) {
    .wp-block-mu-hero {
        min-height: 600px;
    }
}

@media (min-width: 1024px) {
    .wp-block-mu-hero {
        min-height: 700px;
    }
}

/* Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Gradient overlay — directional mask like CSSE page */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(0, 40, 85, 0.35) 0%, rgba(0, 40, 85, 0.75) 100%),
        linear-gradient(90deg, rgba(0, 40, 85, 0.8) 0%, transparent 60%);
}

/* Slide indicators */
.hero-slide-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 0.5rem;
}

.slide-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slide-indicator.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

.slide-indicator:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.5);
}

/* Hero content */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem var(--spacing-unit);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: inherit;
}

@media (min-width: 1024px) {
    .hero-content-wrapper {
        padding: 4rem var(--spacing-large);
    }
}

.hero-inner {
    max-width: 700px;
}

@media (min-width: 1024px) {
    .hero-inner {
        margin-left: 60px;
    }
}

.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

@media (min-width: 768px) {
    .hero-logo {
        width: 160px;
    }
}

/* Brackets decorative element (matches CSSE page) */
.brackets {
    display: none;
}

@media (min-width: 1024px) {
    .brackets {
        display: block;
        position: absolute;
        left: var(--spacing-large);
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 200px;
        border: 3px solid var(--monmouth-orange);
        border-right: none;
    }

    .brackets::before,
    .brackets::after {
        content: '';
        position: absolute;
        width: 15px;
        height: 3px;
        background: var(--monmouth-orange);
    }

    .brackets::before {
        top: -3px;
        left: -3px;
    }

    .brackets::after {
        bottom: -3px;
        left: -3px;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-text {
    font-size: 1.15rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-text {
        font-size: 1.3rem;
    }
}

/* Hero CTA buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--monmouth-orange);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.btn-hero-primary:hover {
    background: #c96200;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(229, 114, 0, 0.4);
    text-decoration: none;
    color: #fff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    text-decoration: none;
    color: #fff;
}

/* ==========================================================================
   Happenings Section (CSSE-style image cards)
   ========================================================================== */

.happenings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .happenings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .happenings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.happening-card {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.happening-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.happening-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.happening-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.happening-card:hover .happening-image img {
    transform: scale(1.05);
}

.happening-card h3 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.2rem;
    color: var(--monmouth-blue);
    margin: 1rem 1.25rem 0.5rem;
    line-height: 1.3;
}

.happening-card p {
    font-size: 0.9rem;
    color: var(--monmouth-gray);
    margin: 0 1.25rem 1.25rem;
    line-height: 1.5;
}

/* ==========================================================================
   Content Layout
   ========================================================================== */

.content-holder {
    padding: 3rem 0;
}

.content-and-navigator {
    display: flex;
    gap: 3rem;
}

/* ==========================================================================
   Sidebar Navigation
   ========================================================================== */

.navigator {
    display: none;
    flex-shrink: 0;
    width: var(--left-menu-width);
}

@media (min-width: 1024px) {
    .navigator {
        display: block;
    }
}

.supernav ul {
    list-style: none;
    background: var(--monmouth-light-gray);
    border-radius: 8px;
    padding: 1rem 0;
}

.supernav li {
    margin: 0;
}

.supernav li.divider {
    height: 1px;
    background: #ddd;
    margin: 0.75rem 1rem;
}

.supernav a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--monmouth-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
}

.supernav a:hover {
    background: #fff;
    color: var(--monmouth-orange);
    text-decoration: none;
}

/* ==========================================================================
   Main Content
   ========================================================================== */

.content {
    flex: 1;
    min-width: 0;
}

.content-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.content-section:last-child {
    border-bottom: none;
}

/* ==========================================================================
   Column Layouts
   ========================================================================== */

.wp-block-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wp-block-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wp-block-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wp-block-column {
    padding: 1.5rem;
    background: var(--monmouth-light-gray);
    border-radius: 8px;
}

.wp-block-column i {
    color: var(--monmouth-orange);
    margin-right: 0.5rem;
}

/* ==========================================================================
   Research Areas
   ========================================================================== */

.research-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .research-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .research-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.research-item {
    padding: 2rem;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.research-item:hover {
    border-color: var(--monmouth-orange);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.research-icon {
    width: 60px;
    height: 60px;
    background: var(--monmouth-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.research-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.tag-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag-list li {
    padding: 0.4rem 0.875rem;
    background: rgba(13, 100, 178, 0.1);
    color: var(--monmouth-light-blue);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
}

/* ==========================================================================
   Project Cards
   ========================================================================== */

.project-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .project-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.project-card {
    position: relative;
    padding: 2rem;
    background: var(--monmouth-light-gray);
    border-left: 4px solid var(--monmouth-light-blue);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.875rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    background: var(--monmouth-light-blue);
    color: #fff;
}

.project-status.active {
    background: var(--monmouth-orange);
}

.project-status.completed {
    background: #28a745;
}

.project-card h3 {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--monmouth-gray);
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.project-meta i {
    color: var(--monmouth-light-blue);
}

/* ==========================================================================
   Event Cards
   ========================================================================== */

.event-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.event-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.event-card.featured {
    border-color: var(--monmouth-orange);
    background: linear-gradient(135deg, rgba(229, 114, 0, 0.03) 0%, rgba(0, 76, 151, 0.03) 100%);
}

.event-date {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--monmouth-blue);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

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

.event-content {
    flex: 1;
}

.event-category {
    display: inline-block;
    padding: 0.3rem 0.875rem;
    background: rgba(13, 100, 178, 0.1);
    color: var(--monmouth-light-blue);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.event-card h4 {
    margin-bottom: 0.75rem;
}

/* Workshop Series Cards */
.series-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 2rem;
}

.series-card i {
    font-size: 1.5rem;
    color: var(--monmouth-orange);
}

/* ==========================================================================
   Team Grid
   ========================================================================== */

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--monmouth-light-gray);
    border-radius: 8px;
}

.team-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--monmouth-orange);
    display: block;
}

/* Specific adjustment for Lynda's photo to show full face and head */
img[src="images/lynda-levy.JPG"] {
    object-position: center 30%;
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--monmouth-blue);
}

.team-role {
    color: var(--monmouth-orange);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-contact {
    font-size: 0.9rem;
    color: var(--monmouth-gray);
}

.team-contact a {
    color: var(--monmouth-blue);
    text-decoration: none;
}

.team-contact a:hover {
    text-decoration: underline;
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--monmouth-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo i {
    font-size: 3rem;
    color: #fff;
}

/* Committee Chairs — same card style as exec team, with icon placeholder */
.team-photo-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #004C97 0%, #002855 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--monmouth-orange);
}

.team-photo-placeholder i {
    font-size: 3rem;
    color: white;
}

@media (min-width: 768px) {
    .team-grid-chairs {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .team-grid-chairs {
        grid-template-columns: repeat(5, 1fr);
    }
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--monmouth-orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Contact Info
   ========================================================================== */

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-block {
    padding: 2rem;
    background: var(--monmouth-light-gray);
    border-radius: 8px;
}

.contact-block h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-block i {
    color: var(--monmouth-orange);
}

.contact-block a {
    color: var(--monmouth-light-blue);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-primary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--monmouth-orange);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #c96200;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: #fff;
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--monmouth-light-blue);
    border: 2px solid var(--monmouth-light-blue);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--monmouth-light-blue);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-large {
    font-size: 1.05rem;
    padding: 0.9rem 2.25rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* ==========================================================================
   Info Grid (About section)
   ========================================================================== */

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info-box {
    padding: 2rem;
    background: var(--monmouth-light-gray);
    border-radius: 10px;
    border-top: 4px solid var(--monmouth-light-blue);
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

/* ==========================================================================
   Activity Grid
   ========================================================================== */

.activity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .activity-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.activity-box {
    padding: 2rem;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.activity-box:hover {
    border-color: var(--monmouth-light-blue);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.activity-box.featured {
    border-color: var(--monmouth-orange);
    background: linear-gradient(135deg, rgba(229, 114, 0, 0.04) 0%, rgba(0, 76, 151, 0.04) 100%);
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .activity-box.featured {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.activity-icon {
    width: 56px;
    height: 56px;
    background: var(--monmouth-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.activity-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.activity-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.activity-box p {
    font-size: 0.95rem;
    color: var(--monmouth-gray);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Benefits Grid (Join section)
   ========================================================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: var(--monmouth-light-gray);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--monmouth-text);
}

.benefit-item i {
    color: var(--monmouth-orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ==========================================================================
   Contact Box
   ========================================================================== */

.contact-box {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--monmouth-light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--monmouth-orange);
}

.contact-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-box h3 i {
    color: var(--monmouth-orange);
    margin-right: 0.3rem;
}

/* ==========================================================================
   Give / Crowdfunding Section
   ========================================================================== */

.give-banner-link {
    display: block;
    margin: 1.5rem 0;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 40, 85, 0.2);
}

.give-banner-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 40, 85, 0.35);
}

.give-banner-img {
    display: block;
    width: 100%;
    height: auto;
}

/* Fundraising Progress Bar */

.fundraise-progress-container {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    position: relative;
}

.fundraise-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.fundraise-stat {
    display: flex;
    flex-direction: column;
}

.fundraise-stat-amount {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--monmouth-blue);
    line-height: 1.2;
}

.fundraise-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--monmouth-gray);
    margin-top: 0.15rem;
}

.fundraise-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fundraise-bar {
    flex: 1;
    height: 20px;
    background: var(--monmouth-light-gray);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.fundraise-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--monmouth-orange), #ff9800);
    border-radius: 50px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 0;
}

.fundraise-bar-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 100%
    );
    animation: barShimmer 2s infinite;
}

@keyframes barShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.fundraise-percent {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--monmouth-orange);
    min-width: 40px;
    text-align: right;
}

.fundraise-admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    padding: 0.4rem 0.85rem;
    background: none;
    border: 1px dashed var(--monmouth-gray);
    border-radius: 6px;
    color: var(--monmouth-gray);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.fundraise-admin-btn:hover {
    border-color: var(--monmouth-light-blue);
    color: var(--monmouth-light-blue);
}

/* Fundraise Admin Modal */

.fundraise-admin-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 40, 85, 0.6);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.fundraise-admin-overlay.active {
    display: flex;
}

.fundraise-admin-box {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.fundraise-admin-box h3 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.2rem;
    color: var(--monmouth-blue);
    margin-bottom: 0.5rem;
}

.fundraise-admin-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fundraise-admin-fields label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fundraise-admin-fields label span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--monmouth-gray);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.fundraise-admin-fields input {
    padding: 0.5rem 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    color: var(--monmouth-text);
    transition: border-color 0.2s;
}

.fundraise-admin-fields input:focus {
    outline: none;
    border-color: var(--monmouth-blue);
}

@media (max-width: 767px) {
    .fundraise-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 0.5rem;
    }

    .fundraise-stat-amount {
        font-size: 1.3rem;
    }
}

.give-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.give-goal-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--monmouth-light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--monmouth-orange);
}

.give-goal-icon {
    font-size: 1.5rem;
    color: var(--monmouth-orange);
    flex-shrink: 0;
}

.give-goal-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--monmouth-gray);
}

.give-goal-amount {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--monmouth-blue);
    font-family: 'Crimson Text', Georgia, serif;
}

.give-why {
    margin-top: 2rem;
    padding: 2rem;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
}

.give-why h3 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.4rem;
    color: var(--monmouth-blue);
    margin-bottom: 0.75rem;
}

.give-why > p {
    color: var(--monmouth-gray);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.give-impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.give-impact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--monmouth-light-gray);
    border-radius: 8px;
    font-size: 0.92rem;
    color: #333;
    line-height: 1.4;
}

.give-impact-item i {
    color: var(--monmouth-orange);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .give-details {
        grid-template-columns: 1fr;
    }

    .give-impact-grid {
        grid-template-columns: 1fr;
    }

    .give-why {
        padding: 1.25rem;
    }
}

/* ==========================================================================
   Giving Day Countdown Widget
   ========================================================================== */

.giving-day-widget {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, #001a3a 0%, #002855 100%);
    border-radius: 16px;
    padding: 2rem;
    color: #fff;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 40, 85, 0.3);
    position: relative;
    overflow: hidden;
}

.giving-day-widget::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(229, 114, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(13, 100, 178, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.giving-day-widget.live {
    background: linear-gradient(135deg, #1a3a00 0%, #2e7d32 100%);
    box-shadow: 0 6px 24px rgba(46, 125, 50, 0.35);
}

.giving-day-header {
    position: relative;
    margin-bottom: 1.5rem;
}

.giving-day-badge {
    display: inline-block;
    background: rgba(229, 114, 0, 0.2);
    border: 1px solid rgba(229, 114, 0, 0.4);
    color: var(--monmouth-orange);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.giving-day-header h3 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #fff;
}

.giving-day-header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    max-width: 500px;
    margin-inline: auto;
}

.giving-day-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    position: relative;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    min-width: 72px;
    backdrop-filter: blur(4px);
}

.countdown-number {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.countdown-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    padding-bottom: 1rem;
}

.giving-day-status {
    margin-bottom: 1.25rem;
    position: relative;
}

.status-upcoming {
    color: var(--monmouth-orange);
    font-weight: 600;
    font-size: 0.9rem;
}

.status-upcoming i {
    margin-right: 0.4rem;
}

.status-live {
    color: #69f0ae;
    font-weight: 700;
    font-size: 1rem;
    animation: livePulse 1.5s infinite;
}

.status-live i {
    font-size: 0.6rem;
    vertical-align: middle;
    margin-right: 0.4rem;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.status-ended {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.giving-day-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.giving-day-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.5rem 0.85rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
}

.giving-day-detail-item i {
    color: var(--monmouth-orange);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.giving-day-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--monmouth-orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.giving-day-cta:hover {
    background: #c96200;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(229, 114, 0, 0.4);
    text-decoration: none;
}

@media (max-width: 767px) {
    .giving-day-widget {
        padding: 1.5rem 1rem;
    }

    .giving-day-countdown {
        gap: 0.3rem;
    }

    .countdown-unit {
        min-width: 56px;
        padding: 0.6rem 0.5rem;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .giving-day-details {
        flex-direction: column;
        align-items: center;
    }

    .giving-day-header h3 {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--monmouth-blue);
    color: #fff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--monmouth-orange);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--monmouth-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 1023px) {
    .content-and-navigator {
        flex-direction: column;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        width: 100%;
        height: 60px;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
}
