/* ==========================================================================
   RRPAC Website Styles - Matching Original Design
   ========================================================================== */

/* CSS Variables */
:root {
    --primary-color: #1e3a5f;
    --primary-dark: #152a45;
    --secondary-color: #c9a227;
    --gold: #c9a227;
    --text-color: #333;
    --text-light: #666;
    --text-muted: #8b7355;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --dark-bg: #1e3a5f;
    --border-color: #e0e0e0;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', Arial, sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
}

.header.scrolled {
    position: fixed;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.header.scrolled .logo img {
    filter: invert(18%) sepia(45%) saturate(748%) hue-rotate(175deg) brightness(30%) contrast(95%);
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-list a {
    font-weight: 500;
    font-size: 15px;
    color: var(--white);
    padding: 10px 0;
    position: relative;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header.scrolled .nav-list a {
    color: var(--primary-color);
    text-shadow: none;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

.header.scrolled .mobile-menu-toggle span {
    background-color: var(--primary-color);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('../Images/rrpacutah.com_images_2026-02-24T06-01-22/Utah_State_Capitol_Salt_Lake_City_7631480380-scaled-1.jpg');
    background-size: cover;
    background-position: center center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 35%, rgba(0, 0, 0, 0.2) 65%, rgba(0, 0, 0, 0.1) 100%);
}

.hero > .container {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-content {
    max-width: 700px;
    color: var(--white);
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 600px;
}

/* Gold Button */
.btn-gold {
    display: inline-block;
    padding: 16px 35px;
    font-size: 0.95rem;
    font-weight: 600;
    background-color: var(--gold);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-gold:hover {
    background-color: #b8922a;
    transform: translateY(-2px);
}

/* ==========================================================================
   Feature Bar
   ========================================================================== */

.feature-bar {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.95);
    margin-top: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 25px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    max-width: 50px;
    max-height: 50px;
    opacity: 0.85;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
}

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

.btn-light:hover {
    background-color: transparent;
    color: var(--white);
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-header.light h2 {
    color: var(--white);
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 auto;
}

/* ==========================================================================
   About Section
   ========================================================================== */

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

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

/* ==========================================================================
   Values Section
   ========================================================================== */

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

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

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    max-width: 60px;
    max-height: 60px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

/* ==========================================================================
   Founding Forty Section
   ========================================================================== */

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

.founding-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.founding-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.founding-content .btn {
    margin-top: 20px;
}

/* ==========================================================================
   Leadership Section
   ========================================================================== */

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

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.leader-card {
    text-align: center;
}

.leader-image {
    width: 260px;
    height: 260px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.leader-title {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ==========================================================================
   Speakers Section
   ========================================================================== */

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

.speakers-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.speaker-card {
    text-align: center;
}

.speaker-image {
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 6px;
}

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

/* ==========================================================================
   Get Involved Section
   ========================================================================== */

.get-involved-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.membership-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.membership-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.membership-card.featured {
    background-color: var(--white);
    color: var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.membership-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.membership-card.featured .price {
    color: var(--gold);
}

.membership-features {
    text-align: left;
    margin-bottom: 30px;
}

.membership-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.membership-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

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

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

.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .feature-item:nth-child(2),
    .feature-item:last-child {
        border-right: none;
    }

    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .speaker-image {
        width: 180px;
        height: 180px;
    }

    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .leader-image {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .header.scrolled .main-nav {
        background-color: var(--white);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .nav-list li {
        border-bottom: 1px solid var(--border-color);
    }

    .header.scrolled .nav-list li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-list a {
        display: block;
        padding: 15px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

    .feature-item {
        border-right: none;
        justify-content: center;
    }

    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

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

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

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .membership-card {
        padding: 40px 25px;
    }

    .price {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   About Page
   ========================================================================== */

.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-image: url('../Images/rrpacutah.com_images_2026-02-24T06-01-22/Utah_State_Capitol_Salt_Lake_City_7631480380-scaled-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0 80px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.2) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-content {
    color: var(--white);
    max-width: 700px;
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    font-style: italic;
}

.about-intro {
    padding: 90px 0 60px;
}

.about-intro-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.exec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px 30px;
}

.exec-grid .leader-image {
    width: 170px;
    height: 170px;
}

.exec-grid .leader-card h3 {
    font-size: 1.15rem;
}

.exec-grid .leader-card .leader-title {
    font-size: 0.95rem;
}

.leader-card.name-only {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--light-bg);
    border-left: 4px solid var(--gold);
    border-radius: 6px;
    padding: 30px 20px;
    min-height: 170px;
    text-align: center;
}

.leader-card.name-only h3 {
    margin-bottom: 8px;
}

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

.members-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.members-grid li {
    padding: 14px 18px;
    background: var(--white);
    border-left: 3px solid var(--gold);
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.98rem;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

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

.story-card {
    background: var(--white);
    padding: 40px 32px;
    border-top: 4px solid var(--gold);
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.story-card h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.story-card p {
    color: var(--text-light);
    line-height: 1.75;
}

.join-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.join-cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.join-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.join-cta p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.92;
    margin-bottom: 35px;
}

@media (max-width: 1024px) {
    .exec-grid { grid-template-columns: repeat(3, 1fr); }
    .members-grid { grid-template-columns: repeat(3, 1fr); }
    .story-grid { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .page-hero-content h1 { font-size: 2.5rem; }
    .page-hero-content p { font-size: 1.05rem; }
    .exec-grid { grid-template-columns: repeat(2, 1fr); gap: 35px 20px; }
    .exec-grid .leader-image { width: 140px; height: 140px; }
    .members-grid { grid-template-columns: repeat(2, 1fr); }
    .join-cta h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .exec-grid { grid-template-columns: 1fr; }
    .members-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Get Involved Page
   ========================================================================== */

.involved-section {
    padding: 90px 0;
}

.involved-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-header.left {
    text-align: left;
}

.section-header.left .section-divider {
    margin-left: 0;
}

.involved-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.benefits-list li {
    position: relative;
    padding: 10px 0 10px 32px;
    color: var(--text-color);
    font-size: 1.02rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.18);
}

.involved-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.involved-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.speakers-cta {
    text-align: center;
    margin-top: 50px;
}

.join-pac-section {
    background-image: url('../Images/rrpacutah.com_images_2026-02-24T06-01-22/Utah_State_Capitol_Salt_Lake_City_7631480380-scaled-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
    color: var(--white);
}

.join-pac-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(30, 58, 95, 0.85), rgba(21, 42, 69, 0.9));
}

.join-pac-section .container {
    position: relative;
    z-index: 1;
}

.join-pac-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.join-pac-inner p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
}

@media (max-width: 1024px) {
    .involved-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .involved-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .join-pac-section {
        background-attachment: scroll;
    }
}

/* ==========================================================================
   Articles
   ========================================================================== */

.articles-section {
    padding: 90px 0;
    background: var(--light-bg);
}

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

.article-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--light-bg);
}

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

.article-card:hover .article-image img {
    transform: scale(1.04);
}

.article-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-meta {
    display: flex;
    gap: 14px;
    align-items: center;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.article-date {
    color: var(--text-light);
}

.article-category {
    color: var(--gold);
    font-weight: 600;
    padding: 4px 10px;
    border: 1px solid var(--gold);
    border-radius: 3px;
    font-size: 0.72rem;
}

.article-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 14px;
}

.article-title a {
    color: var(--primary-color);
    transition: var(--transition);
}

.article-title a:hover {
    color: var(--gold);
}

.article-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 22px;
    flex: 1;
}

.article-read-more {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.article-read-more:hover {
    color: var(--primary-color);
}

.articles-empty-note {
    margin-top: 60px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

.articles-empty-note code {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.88rem;
    color: var(--primary-color);
}

/* Single article post */

.article-post {
    padding: 140px 0 100px;
}

.article-post .container {
    max-width: 820px;
}

.article-back {
    display: inline-block;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 30px;
    transition: var(--transition);
}

.article-back:hover {
    color: var(--gold);
}

.article-header {
    margin-bottom: 40px;
}

.article-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.15;
    color: var(--primary-color);
    margin: 18px 0 18px;
}

.article-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 22px;
}

.article-byline {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.article-hero-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 50px;
    aspect-ratio: 16 / 9;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-color);
    margin-bottom: 24px;
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    color: var(--primary-color);
    margin: 45px 0 18px;
}

.article-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 8px 0 8px 28px;
    margin: 35px 0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.5;
}

.article-content ul,
.article-content ol {
    margin: 0 0 28px 24px;
    padding-left: 8px;
}

.article-content li {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 8px;
}

.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

@media (max-width: 1024px) {
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .articles-grid { grid-template-columns: 1fr; }
    .article-header h1 { font-size: 2.2rem; }
    .article-content blockquote { font-size: 1.2rem; }
}

/* ==========================================================================
   Events Page
   ========================================================================== */

.events-section {
    padding: 90px 0;
}

.event-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.event-card.featured {
    border-top: 5px solid var(--gold);
}

.event-flyer {
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.event-flyer img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.event-details {
    padding: 45px 45px 45px 35px;
}

.event-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 3px;
    margin-bottom: 18px;
}

.event-details h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-color);
    line-height: 1.15;
    margin-bottom: 8px;
}

.event-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
    font-style: italic;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
    margin-bottom: 28px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.event-info-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.event-info-icon {
    font-size: 1.3rem;
    line-height: 1.3;
    flex-shrink: 0;
}

.event-info-row > div {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.event-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.event-info-value {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
}

.event-description p {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 14px;
}

.event-description p:last-child {
    margin-bottom: 0;
}

.event-actions {
    margin-top: 30px;
}

.events-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.events-cta-inner {
    max-width: 750px;
    margin: 0 auto;
}

.events-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    margin-bottom: 18px;
}

.events-cta p {
    font-size: 1.08rem;
    line-height: 1.75;
    opacity: 0.92;
    margin-bottom: 32px;
}

@media (max-width: 900px) {
    .event-card {
        grid-template-columns: 1fr;
    }
    .event-flyer {
        padding: 30px 30px 0;
    }
    .event-details {
        padding: 35px 30px;
    }
    .event-details h2 {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   Home Page — Event Highlight
   ========================================================================== */

.event-highlight {
    padding: 90px 0;
    background: var(--light-bg);
}

.event-highlight-inner {
    display: grid;
    grid-template-columns: minmax(260px, 380px) 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    border-top: 5px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 1100px;
    margin: 0 auto;
}

.event-highlight-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    display: block;
}

.event-highlight-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 3px;
    margin-bottom: 16px;
}

.event-highlight-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-color);
    line-height: 1.15;
    margin-bottom: 6px;
}

.event-highlight-subtitle {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 22px;
    font-size: 1.05rem;
}

.event-highlight-meta {
    list-style: none;
    padding: 18px 0;
    margin: 0 0 22px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.event-highlight-meta li {
    padding: 6px 0;
    color: var(--text-color);
    font-size: 0.98rem;
}

.event-highlight-meta strong {
    color: var(--primary-color);
    margin-right: 8px;
}

.event-highlight-text > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 26px;
}

.event-highlight-actions {
    display: flex;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
}

.event-highlight-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.event-highlight-link:hover {
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .event-highlight-inner {
        grid-template-columns: 1fr;
        padding: 35px 28px;
        gap: 35px;
    }
    .event-highlight-image {
        max-width: 320px;
        margin: 0 auto;
    }
    .event-highlight-text h2 {
        font-size: 1.8rem;
    }
}

/* Netlify forms honeypot — visually hide but keep accessible to bots */
.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Thanks page */
.thanks-section {
    padding: 80px 0 100px;
}

.thanks-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.thanks-inner p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 18px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.thanks-home-link {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-left: 8px;
}

.thanks-home-link:hover {
    color: var(--gold);
}
