/*
Copyright © Wild Rose Devs. & Alberta Lynx 2025. All rights reserved.

This software and its source code are proprietary and confidential.
Unauthorized copying, distribution, modification, or use in whole or in part
is strictly prohibited and may result in civil and/or criminal penalties.

No license or rights are granted by implication or otherwise under any
intellectual property rights.

For licensing inquiries, contact: https://wildrosedevs.ca
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=League+Spartan:wght@400;700&display=swap");

:root {
    --ff-body: 'Poppins', sans-serif;
    --ff-heading: 'League Spartan', sans-serif;
}

body {
    font-family: var(--ff-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ff-heading);
}

* {
    box-sizing: border-box;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

body {
    margin: 0;
    background-color: #f6f6f6;
    color: #1a1a1a;
}

/* =========================================================
   NAVIGATION BAR – valid UL/LI markup + dropdown breakout
   ========================================================= */

/* 1) Hide any nav scrollbars & allow overflow */
.navbar,
.nav-actions,
.nav-links {
    overflow: visible !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.navbar::-webkit-scrollbar,
.nav-actions::-webkit-scrollbar,
.nav-links::-webkit-scrollbar {
    display: none;
}

/* 2) Bar layout */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    background: #f6f6f6;
    border-bottom: 2px solid #000;
    gap: 20px;
}

/* 3) Logo
.logo,
.logo-first,
.logo-last,
.logo-subtitle {
    overflow: visible !important;
}

.logo {
    display: flex;
    align-items: baseline;
    white-space: nowrap;
    position: relative;
}

.logo-first {
    font: 2.5rem/1 'Great Vibes', cursive;
    color: #f2c02e;
    margin-right: .05em;
}

.logo-last {
    font: 2.5rem/1 'Great Vibes', cursive;
    color: #1a1a87;
}

.logo-subtitle {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: .1em;
    font: .9rem/1.2 'Playfair Display', serif;
    font-style: italic;
    color: #333;
}
*/

/* 3) Logo image styling */
.logo {
    display: block;
    width: 200px;
    height: auto;
}

.logo-image {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .logo {
        width: 150px;
    }
}

/* 4) Mobile hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

@media(max-width:768px) {
    .nav-toggle {
        display: block;
        margin-left: auto;
    }
}

/* 5) Nav links & buttons */
.nav-actions {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: space-between;
    gap: 40px;
}

.nav-actions.active {
    display: flex;
}

.nav-links {
    display: flex;
    justify-content: space-evenly;
    flex-grow: 1;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li {
    position: relative;
    list-style: none;
}

.nav-links a,
#pressToggle {
    font: 400 16px/1;
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.actions a {
    color: #fff !important;
}

/* 6) Press dropdown styling */
.nav-item.dropdown {
    position: relative;
    overflow: visible;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    padding: 6px 0;
    z-index: 10000;
    overflow: hidden;
    list-style: none;
    margin: 0;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    font: 14px/1;
    color: #222;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #f6f6f6;
    color: #0060df;
}

/* 7) Dropdown visibility */
.dropdown-menu.show {
    display: block !important;
}

/* desktop hover */
@media(min-width:769px) {
    #pressDropdown:hover>.dropdown-menu {
        display: block !important;
    }
}

/* 8) Mobile nav layout */
@media(max-width:768px) {
    .nav-actions {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-top: 10px;
        width: 100%;
    }

    .nav-actions.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .actions {
        width: 100%;
        justify-content: flex-start;
    }
}

.ldbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    padding: 14px 28px;
    border-radius: 10px;
    min-width: 160px;
    min-height: 52px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
}

/* 2) Lawn variant */
.ldbtn--lawn {
    background-color: #7ED957;
    border-color: #7ED957;
    color: whitesmoke;
}

/* 3) Donate variant */
.ldbtn--donate {
    background-color: #1F4CE0;
    border-color: #1F4CE0;
    color: whitesmoke;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-img {
    display: block;
    width: 100%;
    height: 100vh;
}

.hero-title {
    position: absolute;
    bottom: 12%;
    left: 6%;
    margin: 0;
    max-width: 50%;
    font-size: clamp(1.8rem, 5vw, 4rem);
    line-height: 1.3;
    white-space: normal;
    text-align: left;
    color: #7DB0E8;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-title .highlight {
    color: #F2C02E;
}

.election-date {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #FCDCC4;
    border: 2px solid #E26C1F;
    padding: 0.75rem 1.5rem;
    font-size: clamp(0.8rem, 1.4vw, 1.1rem);
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 0 0 2px #E26C1F;
    animation: slideInFromRight 0.8s ease-out forwards;
    z-index: 2;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        right: -18px;
        opacity: 1;
    }
}

.election-date a {
    color: #1a1a1a;
    text-decoration: none;
}

.election-date a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1024px) {
    .hero {
        height: auto;
        padding: 0;
    }

    .hero-img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .election-date {
        right: -18px !important;
        transform: translateY(-50vh) !important;
        animation: none;
        white-space: wrap;
    }
}

@media screen and (max-width: 600px) {
    /*
    .logo .first-name,
    .logo .last-name {
        font-size: 26px;
    }

    .logo .subtitle {
        font-size: 14px;
    }
    */

    .hero-left {
        font-size: 42px;
        padding: 40px 20px;
    }
}

/* AGENDA SECTION -- ARCHIVED
.agenda-section {
    background-color: #fff;
    padding: 2rem;
}

.agenda-content {
    max-width: 1200px;
    margin: 0 auto;
    font-family: Georgia, serif;
    color: #1a1a1a;
}

.agenda-content h2 {
    font-size: 50px;
    color: #7ed957;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.agenda-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}
*/

/* AGENDA SECTION */
.agenda-wrapper {
    background: url("../images/backgrounds/image0.avif") center/cover no-repeat;
    padding: 4rem 1rem;
    overflow: hidden;
}

.agenda-card {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
    border-radius: 16px;
    overflow: hidden;
    padding: 2rem 1rem;
    z-index: 1;
}

.agenda-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/backgrounds/before-agendatile-bg.avif") center/cover no-repeat;
    filter: brightness(40%);
    z-index: 0;
}


.agenda-title,
.agenda-video {
    position: relative;
    z-index: 1;
}

.agenda-title {
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.agenda-title .underline {
    text-decoration: underline;
}

.agenda-video {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.agenda-video iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: none;
}

@media (max-width: 768px) {
    .agenda-card::before {
        background-size: cover;
        background-position: center;
    }

    .agenda-card {
        margin-top: 0;
        padding: 2rem 1rem;
    }
}


/* Video wrapper */
.youtube-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.youtube-iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: none;
}

/* PILLARS SECTION  */
.pillars-section {
    background: url("../images/backgrounds/image1.avif") center/cover no-repeat;
    padding: 4rem 1rem;
}

.pillars-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pillars-title {
    text-align: center;
    font-family: 'League Spartan', sans-serif;
    font-size: 5rem;
    color: white;
    font-weight: bold;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.pillars-items {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
}

.pillar-item:nth-child(even) {
    flex-direction: row-reverse;
}

.pillar-text {
    flex: 1;
    padding: 0 2rem;
}

.pillar-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.pillar-number-img {
    width: 250px;
    height: auto;
    display: block;
}

.pillar-description {
    font-size: 1rem;
    line-height: 1.6;
    color: whitesmoke;
}

.pillar-number-wrapper {
    flex-shrink: 0;
}

.pillar-item+.pillar-item {
    border-top: 4px solid #7ED957;
    padding-top: 3rem;
    margin-top: 3rem;
}

.pillars-button {
    display: block;
    margin: 2rem 0 0;
    text-align: center;
    padding: 1rem 1.75rem;
    background-color: #7ED957;
    border: 2px solid #7ED957;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.pillars-button:hover {
    background-color: #6cc745;
}

/* ==== MOBILE FALLBACK ==== */
@media (max-width: 768px) {
    .pillar-item {
        flex-direction: column !important;
        align-items: flex-start;
    }

    .pillar-text {
        padding: 1rem 0 0;
    }

    .pillar-number-img {
        width: 200px;
        margin: 0 auto;
    }
}

/* TALK SECTION -- ARCHIVED
.talk-section {
    background-color: #f2f2f2;
    padding: 2rem;
    font-family: Georgia, serif;
}

.talk-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.video-wrapper {
    width: 680px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.yt-video {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 18px;
    display: block;
}

.talk-right {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 560px;
}

.talk-title {
    font-size: 48px;
    font-weight: 900;
    color: #006241;
    margin-bottom: 28px;
    line-height: 1.25;
}

.talk-description {
    font-size: 22px;
    line-height: 1.8;
    color: #333;
    font-weight: 400;
}

.talk-more-title {
    font-size: 34px;
    font-weight: bold;
    border-bottom: 3px solid #1a1a1a;
    padding-bottom: 12px;
    margin-bottom: 36px;
    font-family: Georgia, serif;
}

.talk-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    margin-bottom: 60px;
}

.yt-video-card {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.view-more-button {
    display: block;
    margin: 0 auto;
    background-color: #fdd9b5;
    color: #000;
    padding: 16px 36px;
    border: 2px solid #e26c1f;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.2s ease;
}

.view-more-button:hover {
    background-color: #fbc899;
}

/* NEWS SECTION -- ARCHIVED
.news-section {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    font-family: Georgia, serif;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.02);
    border-top: none;
    border-bottom: none;
}

.news-title {
    text-align: center;
    font-size: 42px;
    color: #007241;
    font-weight: bold;
    margin-bottom: 50px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
}

.news-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: none;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.news-heading a,
.news-date a {
    color: #2d8a4c;
    font-weight: bold;
    text-decoration: none;
}

.news-heading a:hover,
.news-date a:hover {
    text-decoration: underline;
}

.news-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    border: none;
    margin-bottom: 20px;
    display: block;
}

.news-heading {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 10px 0 6px;
}

.news-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 12px;
}

.news-text {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.news-text a {
    color: #2d8a4c;
    text-decoration: none;
    font-weight: bold;
}

.news-button-wrapper {
    text-align: center;
}

.news-button {
    background-color: #fff;
    color: #2d8a4c;
    border: 2px solid #2d8a4c;
    font-weight: bold;
    font-size: 18px;
    padding: 12px 28px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.news-button:hover {
    background-color: #e6f4ea;
    cursor: pointer;
}

@media screen and (max-width: 900px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* MEET GERRY */
.meet-gerry-section {
    background: url('/images/backgrounds/image0.avif') center/cover no-repeat;
    padding: 4rem 1rem;
    color: #fff;
}

.meet-gerry-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.meet-gerry-section .section-title {
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    color: #fff;
    text-align: center;
    margin: 0 auto 2rem;
}

.meet-gerry-section .separator {
    width: 100%;
    max-width: 1000px;
    height: 4px;
    background-color: #7ED957;
    margin: 2rem auto;
}

.meet-gerry-section .gerry-card {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 1rem;
}

.meet-gerry-section .gerry-card img {
    width: 100%;
    max-width: 600px;
    height: min-content;
    object-fit: contain;
    border-radius: 8px;
}

.meet-gerry-section .gerry-text p {
    color: whitesmoke;
    line-height: 1.6;
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .meet-gerry-section .gerry-card {
        flex-direction: column;
        text-align: center;
    }

    .meet-gerry-section .gerry-card img {
        width: 80%;
        margin: 0 auto 1rem;
    }
}

.no-events {
    font-style: italic;
    color: whitesmoke;
    padding: 1.5rem;
    text-align: center;
}

/* FOOTER SECTION */
.site-footer {
    background-color: #f6f6f6;
    padding: 60px 20px 20px;
    border-top: 2px solid #ccc;
    font-family: 'Poppins', sans-serif;
}

/* Row 1: CTA buttons */
.footer-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

/* Row 2: three-column grid */
.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    justify-content: space-between;
    align-items: start;
    column-gap: 30px;
    padding: 0 20px 40px;
}

/* LEFT column: nav */
.footer-nav {
    grid-column: 1;
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    column-count: 2;
    column-gap: 30px;
}

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-list a {
    color: #1a1a1a;
    text-decoration: none;
}

/* CENTER column: tagline + signature */
.footer-center {
    grid-column: 2;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-tagline {
    margin: 0 0 16px;
    text-align: center;
    font-family: 'League Spartan', sans-serif;
    font-style: italic;
    font-size: 24px;
    line-height: 1.4;
}

.footer-signature-img {
    display: block;
    width: 125px;
    height: auto;
}

/* RIGHT column: social + contact */
.footer-right {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-social-logos {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-social-logos a {
    color: #1a1a1a;
}

.footer-social-logos a i {
    font-size: 28px;
}

.footer-right p {
    margin: 4px 0;
}

.footer-right p a {
    color: #1a1a1a;
    text-decoration: none;
}

.footer-right p a:hover {
    text-decoration: underline;
    color: #7DB0E8;
}

/* Row 3: copyright */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
    color: #7DB0E8;
}

@media (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 20px 40px;
    }

    .footer-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-nav {
        width: 100%;
        margin-bottom: 24px;
        text-align: center;
    }

    .footer-nav-list {
        column-count: 1;
        column-gap: 0;
    }

    .footer-center {
        margin-bottom: 24px;
    }

    .footer-actions {
        flex-direction: column;
        gap: 12px;
    }

    .footer-right {
        align-items: center;
        margin-bottom: 24px;
    }
}