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

:root {
    --orange-accent: #B87333;
    --white: #FFFFFF;
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--white);
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 40px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo img {
    display: block;
    height: 50px;
    width: auto;
}

/* Navigation Styles */
.nav {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    text-transform: none;
    font-size: 15px;
    font-weight: 400;
    transition: opacity 0.3s;
    display: block;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.header-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-icons i {
    font-size: 18px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.header-icons i:hover {
    opacity: 0.7;
}

.btn-donate {
    background: var(--orange-accent);
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-donate:hover {
    background: #e55a2a;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Language Toggle Button */
.language-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-right: 10px;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.language-toggle .lang-active {
    color: var(--orange-accent);
    font-weight: 700;
}

.language-toggle .lang-inactive {
    opacity: 0.6;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    display: block;
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../images/hero/justin-buisson-5eFYHAyJFmY-unsplash.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 3%;
    padding-left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 550px;
    width: auto;
    text-align: left;
}

.hero-headline {
    margin-bottom: 30px;
}

.headline-primary {
    display: block;
    font-size: 64px;
    font-weight: 900;
    line-height: 0.95;
    color: var(--orange-accent);
    text-transform: uppercase;
    letter-spacing: -1.5px;
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
}

.headline-secondary {
    display: block;
    font-size: 64px;
    font-weight: 900;
    line-height: 0.95;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -1.5px;
    margin-top: -5px;
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
}

.hero-quote {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.2px;
}

.quote-attribution {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(184, 115, 51, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    cursor: pointer;
    text-decoration: none;
}

.scroll-indicator:hover {
    background: rgba(184, 115, 51, 0.4);
    transform: translateX(-50%) translateY(-5px);
    color: var(--orange-accent);
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.scroll-indicator:hover svg {
    transform: translateY(3px);
}

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

/* Banner Section */
.banner {
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.1) 0%, rgba(141, 84, 36, 0.1) 100%);
    border-top: 2px solid var(--orange-accent);
    border-bottom: 2px solid var(--orange-accent);
    padding: 60px 40px;
}

.banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.banner-text {
    flex: 1;
}

.banner-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 10px;
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
}

.banner-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.btn-banner {
    background: var(--orange-accent);
    border: none;
    padding: 15px 40px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.btn-banner:hover {
    background: #a8602b;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    background: #000000;
    position: relative;
    padding: 80px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
}

.about-portrait {
    width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(1.1);
    border-radius: 8px;
}

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

.about-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -1px;
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
}

.about-subtitle {
    font-size: 20px;
    color: var(--orange-accent);
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: none;
    letter-spacing: 0.3px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
}

/* Mission Section */
.mission-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0a0a0a;
}

.mission-content {
    position: relative;
    z-index: 2;
    flex: 0 0 55%;
    padding: 80px 60px;
    max-width: 55%;
}

.mission-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 40px;
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    text-align: left;
}

.mission-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mission-card {
    background: rgba(20, 20, 20, 0.95);
    border-radius: 12px;
    padding: 35px 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.mission-card-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.mission-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-image: url('../images/hero/divaris-shirichena-OCeFyF2xrz4-unsplash.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.mission-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.3) 100%);
}

/* Four Column Section */
.four-column-section {
    background: #0a0a0a;
    padding: 80px 40px;
}

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

.column-item {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 60px 40px;
    overflow: hidden;
}

.column-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.column-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.column-item:hover .column-background::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.column-person {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 75%;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    object-position: bottom;
    z-index: 2;
    transition: transform 0.5s ease;
}

@media (hover: hover) {
    .column-item:hover .column-person {
        transform: translateX(-50%) scale(1.1);
    }
}

@media (hover: none) {
    .column-item:active .column-person {
        transform: translateX(-50%) scale(1.1);
    }
}

.column-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 12px rgba(0, 0, 0, 0.6);
}

.column-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.7);
}

.column-btn {
    background: var(--orange-accent);
    border: none;
    padding: 14px 30px;
    cursor: pointer;
    border-radius: 5px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: none;
    width: fit-content;
    position: relative;
    z-index: 3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
    }

    .headline-primary,
    .headline-secondary {
        font-size: 40px;
        letter-spacing: -1.5px;
        line-height: 0.95;
    }

    .hero-quote {
        font-size: 22px;
        font-weight: 500;
        line-height: 1.4;
    }

    .nav-list {
        gap: 15px;
    }

    .hero {
        padding-right: 8%;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .nav-link {
        font-size: 20px;
        font-weight: 500;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo {
        position: relative;
        left: auto;
        transform: none;
        margin-right: auto;
    }

    .header-container {
        gap: 15px;
    }

    .language-toggle {
        font-size: 11px;
        padding: 6px 12px;
        margin-right: 8px;
    }

    .btn-donate {
        font-size: 12px;
        padding: 8px 18px;
        white-space: nowrap;
    }

    .hero {
        padding-right: 0;
        padding-left: 0;
    }

    .hero-content {
        right: 10%;
        max-width: 85%;
        text-align: left;
    }

    .hero-headline {
        margin-bottom: 25px;
    }

    .headline-primary,
    .headline-secondary {
        font-size: 36px;
        letter-spacing: -1.5px;
        line-height: 0.95;
    }

    .hero-quote {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 20px;
        font-weight: 500;
    }

    .quote-attribution {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .scroll-indicator {
        bottom: 30px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-indicator svg {
        width: 20px;
        height: 20px;
    }

    .banner {
        padding: 40px 20px;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-description {
        font-size: 16px;
    }

    .btn-banner {
        padding: 12px 35px;
        font-size: 13px;
    }

    .merch-section {
        padding: 50px 30px;
    }

    .merch-title {
        font-size: 36px;
    }

    .merch-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .email-banner {
        padding: 70px 30px;
    }

    .email-banner-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .email-signup-form {
        max-width: 600px;
    }
    

    .about-section {
        padding: 60px 30px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-title {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .about-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .about-text {
        font-size: 16px;
    }

    .mission-section {
        flex-direction: column;
    }

    .mission-content {
        flex: 1;
        max-width: 100%;
        padding: 50px 30px;
    }

    .mission-background {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .mission-title {
        font-size: 36px;
        margin-bottom: 35px;
    }

    .mission-card-title {
        font-size: 20px;
    }

    .mission-card-text {
        font-size: 15px;
    }

    .four-column-section {
        padding: 0;
    }

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

    .column-item {
        height: 100vh;
        padding: 40px 25px;
    }

    .column-title {
        font-size: 20px;
    }

    .column-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }

    .logo img {
        height: 30px;
    }

    .language-toggle {
        font-size: 10px;
        padding: 5px 10px;
        margin-right: 5px;
    }

    .btn-donate {
        font-size: 10px;
        padding: 6px 12px;
    }

    .hero {
        padding-right: 0;
        padding-left: 0;
    }

    .hero-content {
        right: 10%;
        max-width: 85%;
        padding: 0;
        text-align: left;
    }

    .hero-headline {
        margin-bottom: 20px;
    }

    .headline-primary,
    .headline-secondary {
        font-size: 32px;
        letter-spacing: -1.5px;
        line-height: 0.95;
    }

    .hero-quote {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 15px;
        font-weight: 500;
    }

    .quote-attribution {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .scroll-indicator {
        bottom: 25px;
        width: 40px;
        height: 40px;
    }
    
    .scroll-indicator svg {
        width: 18px;
        height: 18px;
    }

    .banner {
        padding: 30px 15px;
    }

    .banner-title {
        font-size: 20px;
    }

    .banner-description {
        font-size: 14px;
    }

    .btn-banner {
        padding: 12px 30px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .about-section {
        padding: 50px 20px;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .about-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .about-text {
        font-size: 15px;
    }

    .merch-section {
        padding: 40px 20px;
    }

    .merch-title {
        font-size: 28px;
    }

    .email-banner {
        padding: 60px 20px;
    }

    .email-banner-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .email-signup-form {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }

    .email-input {
        width: 100%;
        border-radius: 6px;
        padding: 16px 20px;
    }

    .zip-input {
        width: 100%;
        border: 2px solid var(--white);
        border-radius: 6px;
        padding: 16px 20px;
    }

    .email-submit-btn {
        width: 100%;
        height: 54px;
        border-radius: 6px;
        border: 2px solid var(--white);
    }

    .merch-subtitle {
        font-size: 16px;
    }

    .merch-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    

    .merch-name {
        font-size: 16px;
    }

    .merch-price {
        font-size: 20px;
    }

    .merch-btn {
        font-size: 13px;
        padding: 12px;
    }

    .mission-section {
        min-height: auto;
    }

    .mission-content {
        padding: 40px 20px;
    }

    .mission-background {
        height: 300px;
    }

    .mission-card {
        padding: 25px 25px;
    }

    .mission-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .mission-card-title {
        font-size: 18px;
    }

    .mission-card-text {
        font-size: 14px;
    }

    .four-column-section {
        padding: 0;
    }

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

    .column-item {
        height: 100vh;
        padding: 40px 20px;
    }

    .column-title {
        font-size: 18px;
    }

    .column-text {
        font-size: 14px;
    }

    .column-btn {
        font-size: 13px;
        padding: 12px 25px;
    }
}

/* Merch Section */
.merch-section {
    background: #000000;
    padding: 80px 40px;
}

.merch-container {
    max-width: 1400px;
    margin: 0 auto;
}

.merch-content {
    text-align: center;
    margin-bottom: 60px;
}

.merch-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 15px;
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
}

.merch-title-accent {
    color: var(--orange-accent);
}

.merch-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.merch-subtitle-accent {
    color: var(--orange-accent);
    font-weight: 600;
}

/* Mobile-first merch grid */
.merch-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Mobile-first merch item */
.merch-item {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    flex: 0 0 calc(100% - 30px);
    scroll-snap-align: center;
    margin: 0 15px;
}

.merch-item:hover {
    transform: translateY(-3px);
}

/* Mobile-first navigation dots */
.merch-navigation {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--orange-accent);
    transform: scale(1.2);
}

/* Desktop merch grid */
@media (min-width: 769px) {
    .merch-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        overflow: visible;
        scroll-snap-type: none;
    }
    
    .merch-item {
        flex: none;
        margin: 0;
        scroll-snap-align: none;
    }
}


.merch-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f5f5f5;
}

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

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

.merch-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 20px 0 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: center;
}

.merch-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--orange-accent);
    margin: 0 0 20px;
    text-align: center;
}

/* Hide navigation dots on desktop by default */
@media (min-width: 769px) {
    .merch-navigation {
        display: none;
    }
}

/* Coming Soon Bubble */
.coming-soon-bubble {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--orange-accent);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 3px 8px rgba(184, 115, 51, 0.4);
    transition: all 0.3s ease;
    transform: scale(1);
}

.merch-item:hover .coming-soon-bubble {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(184, 115, 51, 0.6);
}

/* Email Signup Banner */
.email-banner {
    background: #000000;
    padding: 80px 40px;
}

.email-banner-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.email-banner-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 50px;
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
}

.email-signup-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    outline: none;
    transition: all 0.3s ease;
    border-radius: 6px 0 0 6px;
    min-width: 0;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.email-input:focus {
    border-color: var(--orange-accent);
    background: rgba(184, 115, 51, 0.1);
}

.zip-input {
    width: 120px;
    padding: 18px 20px;
    border: 2px solid var(--white);
    border-left: none;
    border-right: none;
    background: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
}

.zip-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zip-input:focus {
    border-color: var(--orange-accent);
    background: rgba(184, 115, 51, 0.1);
}

.email-input:focus + .email-submit-btn {
    border-left-color: var(--orange-accent);
}

.email-submit-btn {
    width: 60px;
    height: 58px;
    padding: 0;
    border: 2px solid var(--white);
    border-left: none;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 0 6px 6px 0;
    outline: none;
}

.email-submit-btn:hover {
    background: var(--orange-accent);
    border-color: var(--orange-accent);
    border-left: 1px solid var(--orange-accent);
    color: var(--white);
    transform: translateX(2px);
}

.email-submit-btn:active {
    transform: translateX(2px) scale(0.98);
}

.email-submit-btn svg {
    width: 20px;
    height: 20px;
}

.email-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.email-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    animation: slideDown 0.3s ease;
}

.email-message-success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4caf50;
}

.email-message-error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #f44336;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: #fafafa;
    padding: 80px 40px 40px;
}

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

.footer-main {
    text-align: center;
    margin-bottom: 60px;
}

.footer-title {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 30px;
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.2;
}

.footer-content {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 20px;
}

.footer-link-underline {
    text-decoration: underline;
    color: #333;
}

.footer-thanks {
    margin-top: 25px;
    margin-bottom: 25px;
}

.footer-brand-link {
    display: inline-block;
    text-decoration: underline;
    color: var(--orange-accent);
    font-size: 16px;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-nav-link {
    color: #333;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-nav-link:hover {
    color: var(--orange-accent);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.social-icon {
    color: #333;
    font-size: 20px;
    transition: color 0.2s;
}

.social-icon:hover {
    color: var(--orange-accent);
}

/* Floating Crisis Support Banner */
.floating-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    color: white;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    width: 280px;
    animation: slideInRight 0.8s ease-out;
    transition: all 0.3s ease;
}

.floating-banner:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.banner-content {
    padding: 16px 20px;
    position: relative;
}

.banner-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
    word-wrap: break-word;
}

.banner-text strong {
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    word-wrap: break-word;
}

.banner-text span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    word-wrap: break-word;
}

.banner-action {
    text-align: center;
}

.crisis-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.crisis-link:hover {
    background: rgba(255, 255, 255, 1);
    color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.banner-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* Banner Animation */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate(100%, 100%);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* Banner Hidden State */
.floating-banner.hidden {
    opacity: 0;
    transform: translate(100%, 100%);
    pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-banner {
        right: 15px;
        bottom: 15px;
        width: 220px;
    }
    
    .floating-banner:hover {
        transform: scale(1.02);
    }
    
    .banner-content {
        padding: 14px 16px;
    }
    
    .banner-text strong {
        font-size: 15px;
    }
    
    .banner-text span {
        font-size: 13px;
    }
    
    .crisis-link {
        padding: 7px 14px;
        font-size: 13px;
    }
}
