/* Base styles for all screen sizes */

@font-face {
    font-family: 'DM Sans';
    src: url('./dmsans.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Archivo';
    src: url('./archivo.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Black Ops One';
    src: url('./blackops.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('./jost.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

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

:root {
    --navy: #0a1e3d;
    --red-hili: #bf1e2d;
    --bright-yellow: #FFD93D;
    --electric-blue: #4ECDC4;
    --coral: #FF6B6B;
    --white: #ffffff;
    --off-white: #F7F9FB;
    --black: #1a1a1a;
    --logo-blue: #2a4c8a;
    --puke-green: #bed62f;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.logo-buffer {
    background: var(--navy);
    height:1px;
}

.logo-buffer:not(.active) {
    transition: height 1s ease;
}

.logo-buffer.active {
    height:500px;
}

.logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--navy);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    cursor: pointer;
}

.logo-overlay:not(.active) {
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.logo-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.overlay-content {
    text-align: center;
    animation: overlayFadeIn 1s ease-out;
}

.overlay-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: logoScale 1.2s ease-out;
}

.overlay-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 4rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    animation: titleSlideIn 1s ease-out 0.3s both;
}

.overlay-tagline {
    font-size: 1.3rem;
    color: var(--bright-yellow);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: taglineSlideIn 1s ease-out 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    color: var(--bright-yellow);
    font-size: 2rem;
    font-weight: bold;
}

.grid-cell
{
    background-size:cover;
}

.grid-cell-00
{
    background-image:url("./images/tile00.jpg");
}

.grid-cell-01
{
    background-image:url("./images/tile01.jpg");
}

.grid-cell-02
{
    background-image:url("./images/tile02.jpg");
}

.grid-cell-10
{
    background-image:url("./images/tile03.jpg");
}

.grid-cell-11
{
    background-image:url("./images/tile08.jpg");
}

.grid-cell-12
{
    background-image:url("./images/tile04.jpg");
}

.grid-cell-20
{
    background-image:url("./images/tile05.jpg");
}

.grid-cell-21
{
    background-image:url("./images/tile06.jpg");
}

.grid-cell-22
{
    background-image:url("./images/tile07.jpg");
}

header {
    background: var(--navy);
    padding: 0;
    position: relative;
}

.header-bar {
    background: var(--red-hili);
    height: 8px;
    width: 100%;
    animation: expandWidth 1s ease-out;
}

.header-content {
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hero {
    padding: 0;
}

.hero-content {
    background: var(--navy);
    padding: 5rem 4rem;
    color: white;
    justify-content: center;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0;
}

.grid-cell {
    border: 1px solid rgba(10, 30, 61, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo Black', sans-serif;
    font-size: 3rem;
    color: rgba(10, 30, 61, 0.1);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    animation: slideInLeft 0.6s ease-out;
    flex-shrink: 0;
    background-image: url("./images/logo50501orlando70.png");
}

.site-name {
    color: white;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}
.site-name a {
    color: white;
    text-decoration: none;
}
.site-name a:hover {
    color: white;
}
.site-name a:active {
    color: white;
}
.site-name a:visited {
    color: white;
}

nav {
    display: flex;
    gap: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.8rem 1.8rem;
    background: transparent;
    border-right: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

nav a:first-child {
    border-left: 1px solid rgba(255,255,255,0.2);
}

nav a:hover {
    background: var(--puke-green);
    color: var(--navy);
}

.btn-action {
    padding: 1.2rem 3rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.btn-action.primary {
    background: var(--puke-green);
    color: var(--navy);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    z-index: 2;
}

.btn-action.primary:hover {
    background: var(--bright-yellow);
    color: white;
    transform: translateY(-3px);
}

.btn-action.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
}

.btn-action.secondary:hover {
    background: white;
    color: var(--navy);
}

.mission-section {
    padding: 6rem 3rem;
    background-color: white;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    gap: 0;
}

.mission-card {
    padding: 3rem;
    padding-bottom: 5rem;
    border: 2px solid var(--black);
    background: white;
    transition: all 0.3s ease;
}

.mission-card:nth-child(1) {
    background: var(--logo-blue);
    color: white;
}

.mission-card:nth-child(2) {
    background: var(--puke-green);
    color: black;
}

.mission-card:nth-child(3) {
    background: var(--red-hili);
    color:white;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.mission-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.mission-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.mission-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Archivo Black', sans-serif;
    font-size: 4rem;
    color: rgba(0,0,0,0.1);
}

.cta-banner {
    background: var(--navy);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(14,57,92,0.2) 20px,
        rgba(14,57,92,0.2) 40px
    );
}

.cta-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3.5rem;
    color: white;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cta-banner h2 span {
    color: var(--red-hili);
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 2rem 3rem;
    text-align: center;
    border-top: 4px solid var(--red-hili);
}

footer p {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-socials {
    text-align: center;
    margin-top: 3rem;
}

.social-media {
    display:inline-block;
}

.social-media-sm {
    width: 40px;
    height: 40px;
    margin: 1rem;
}

.social-media-lg {
    width: 75px;
    height: 75px;
    margin: 2rem;
}

a.social-insta-sm {
    background-image: url("./images/social-insta-40.png");    
}

a.social-insta-sm:hover {
    background-image: url("./images/social-insta-40-hili.png");
}

a.social-insta-lg {
    background-image: url("./images/social-insta-75.png");
}

a.social-insta-lg:hover {
    background-image: url("./images/social-insta-75-hili.png");
}

a.social-linktree-sm {
    background-image: url("./images/social-linktree-40.png");
}

a.social-linktree-sm:hover {
    background-image: url("./images/social-linktree-40-hili.png");
}

a.social-linktree-lg {
    background-image: url("./images/social-linktree-75.png");
}

a.social-linktree-lg:hover {
    background-image: url("./images/social-linktree-75-hili.png");
}

a.social-fb-sm {
    background-image: url("./images/social-fb-40.png");
}

a.social-fb-sm:hover {
    background-image: url("./images/social-fb-40-hili.png");
}

a.social-fb-lg {
    background-image: url("./images/social-fb-75.png");
}

a.social-fb-lg:hover {
    background-image: url("./images/social-fb-75-hili.png");
}

a.social-bsky-sm {
    background-image: url("./images/social-bsky-40.png");
}

a.social-bsky-sm:hover {
    background-image: url("./images/social-bsky-40-hili.png");
}

a.social-bsky-lg {
    background-image: url("./images/social-bsky-75.png");
}

a.social-bsky-lg:hover {
    background-image: url("./images/social-bsky-75-hili.png");
}

a.social-tiktok-sm {
    background-image: url("./images/social-tiktok-40.png");
}

a.social-tiktok-sm:hover {
    background-image: url("./images/social-tiktok-40-hili.png");
}

a.social-tiktok-lg {
    background-image: url("./images/social-tiktok-75.png");
}

a.social-tiktok-lg:hover {
    background-image: url("./images/social-tiktok-75-hili.png");
}

a.social-upscroll-sm {
    background-image: url("./images/social-upscroll-40.png");
}

a.social-upscroll-sm:hover {
    background-image: url("./images/social-upscroll-40-hili.png");
}

a.social-upscroll-lg {
    background-image: url("./images/social-upscroll-75.png");
}

a.social-upscroll-lg:hover {
    background-image: url("./images/social-upscroll-75-hili.png");
}

a.social-discord-sm {
    background-image: url("./images/social-discord-40.png");
}

a.social-discord-sm:hover {
    background-image: url("./images/social-discord-40-hili.png");
}

a.social-discord-lg {
    background-image: url("./images/social-discord-75.png");
}

a.social-discord-lg:hover {
    background-image: url("./images/social-discord-75-hili.png");
}

iframe.map {
    border: 1px solid black;
    margin:2rem;
}

.upcoming-events {
    background-color:#0e395c;
    color:white;
    border-top: 1px solid white;
    border-bottom: 1px solid black;
    padding: 20px;
}

.upcoming-events h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 4rem;
    text-align:center;
    margin-top:4rem;
    margin-bottom:1rem;
}

.upcoming-events div {
    display:flex;
    align-items: center;
    justify-content: center;
}

.upcoming-events img {
    height:auto;
    width: auto;
}

.our-values {
    background-color:#0e395c;
    color:white;
    border-top: 1px solid white;
    border-bottom: 1px solid black;
    padding: 20px;
    padding-bottom: 4rem;
}

.our-values h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 4rem;
    text-align:center;
    margin-top:4rem;
    margin-bottom:1rem;
}

.our-values div {
    max-width: 640px;
    margin:auto;
}

.our-values p {
    display:block;
    margin: 1rem;
}

.upcoming-protest {
    background-color:white;
    color:var(--navy);
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoScale {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes taglineSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.impact-quote {
    position: relative;
    background: white;
    padding: 2.5rem 3rem;
    margin: 3rem auto;
    max-width: 600px;
    width: 75%;
    border-radius: 1rem;
}

.quote-mark {
    font-family: 'Archivo Black', sans-serif;
    font-size: 8rem;
    color: var(--navy);
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    line-height: 1;
    z-index: 1;
}

.quote-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--navy);
    margin: 0 0 1.5rem 0;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.quote-text a {
    color: var(--logo-blue);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.quote-text a:hover {
    color: var(--coral);
}

.quote-attribution {
    display: block;
    text-align: right;
    position: relative;
    z-index: 2;
}

.quote-author {
    display: block;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.quote-author a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.quote-author a:hover {
    color: var(--coral);
}

.quote-role {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 400;
}

.quote-role a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.quote-role a:hover {
    color: var(--coral);
}

/* Hero Slideshow */
.hero-slideshow {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 3rem;
    overflow: hidden;
}

.slideshow-track {
    position: relative;
    height: 500px;
}

.hero-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    text-decoration: none;
    color: inherit;
}

.hero-card.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.hero-card:hover .hero-content-box {
    background: var(--off-white);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-image-placeholder {
    background: var(--electric-blue);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content-box {
    background: white;
    
    padding: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: 'Archivo Black', sans-serif;
    font-size: 5rem;
    color: rgba(0,0,0,0.08);
    line-height: 1;
}

.hero-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.hero-title {
    font-size: 1.1rem;
    color: var(--coral);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-achievement {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--black);
}

/* Slideshow Controls */
.slideshow-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slide-btn {
    width: 50px;
    height: 50px;
    background: var(--electric-blue);
    border: 3px solid var(--navy);
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-btn:hover {
    background: var(--coral);
    color: white;
    transform: translateY(-3px);
}

.slide-btn:active {
    transform: translateY(0);
}

.slide-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 15px;
    height: 15px;
    background: white;
    border: 2px solid var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: var(--electric-blue);
}

.dot.active {
    background: var(--navy);
    transform: scale(1.3);
}

.slideshow-progress {
    height: 6px;
    background: rgba(10, 30, 61, 0.2);
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.slideshow-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--logo-blue);
}

.slideshow-progress.animating::after {
    width: 100%;
    transition: width 5s linear;
}


.endorsed-candidates {
    background-color:#0e395c;
    color:white;
    border-top: 1px solid white;
    border-bottom: 1px solid black;
    padding: 20px;
    padding-bottom: 4rem;
}

.endorsed-candidates h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 4rem;
    text-align:center;
    margin-top:4rem;
    margin-bottom:1rem;
}

.endorsed-candidates div {
    max-width: 800px;
    margin:auto;
}

.endorsed-candidates p {
    display:block;
    margin: 1rem;
}

.hero-content-box::after {
    content: '';
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    width: 150px;
    height: 150px;
    background-image: url('./images/endorsed-watermark.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}


.lncc-overview {
    background-color:#1C1C1C;
    color:#CFCFCF;
    border-top: 1px solid white;
    border-bottom: 1px solid black;
    padding: 20px;
}

.lncc-overview em {
    color:#A82125;
    font-style: normal;
}

.lncc-overview a.primary {
    background-color:#A82125;
    color:#1C1C1C;
}

.lncc-overview h1 {
    font-family: 'Black Ops One', sans-serif;
    font-size: 4rem;
    text-align:center;
    margin-top:4rem;
    margin-bottom:1rem;
    text-transform: capitalize;
}

.lncc-overview h3 {
    font-family: 'Black Ops One', sans-serif;
    font-size: 2rem;
    text-align:center;
    margin-top:2rem;
    margin-bottom:1rem;
    text-transform: capitalize;
}

.lncc-overview p {
    font-family: 'Jost', sans-serif;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.lncc-overview ul {
    margin: 1rem;
    margin-left:4rem;
}

.lncc-overview a {
    color:#ffffff;
}

.lncc-overview img.hdr {
    height:auto;
    width: 100%;
}

li.sub-1 {
    margin-left:1rem;
}