/* RHSA One Shot Showdown Landing Page Styles */
:root {
    --dark-green: #132618;
    --near-white: #FAF8F4;
    --lockwood-red: #8B1C1D;
    --lockwood-red-hover: #7A1218;
    --white: #ffffff;
    --gold: #e6c474;
    --navy: #0a1e37;
}

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

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'Varela Round', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation Bar */
.main-nav {
    background: var(--navy);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-logo {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--near-white);
    text-decoration: none;
    font-family: 'Varela Round', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.donate-btn {
    background: var(--gold);
    color: var(--navy);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 196, 116, 0.3);
}

.donate-btn:hover {
    background: #f4d584;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 196, 116, 0.4);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--near-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 2rem;
}

.mobile-menu-link {
    color: var(--near-white);
    text-decoration: none;
    font-family: 'Varela Round', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: var(--gold);
}

.mobile-menu-donate {
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: inline-block;
}

.mobile-menu-donate:hover {
    background: #f4d584;
    transform: scale(1.05);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }
    
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .nav-container {
        padding: 0 1rem;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .nav-brand {
        flex: 0 1 auto;
        margin-right: auto;
    }
    
    .nav-logo {
        height: 60px;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url('../img/heroArt.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    margin-top: 0;
    padding-top: 115px; /* Account for fixed nav height */
    box-sizing: border-box;
}

/* Ensure all H1 elements have padding on mobile */
@media (max-width: 768px) {
    h1, .main-headline {
        padding-top: 2rem !important;
    }
}

/* Left Column */
.left-column {
    flex: 1.5;
    color: var(--near-white);
    padding: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

/* Right Column */
.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.card-content {
    background: transparent;
}

.logo-container {
    flex-shrink: 0;
    padding: 2rem 0;
}

.event-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-container > * {
    opacity: 0;
    transform: translateX(30px);
}

.content-container > .headline {
    animation: slideInContent 0.6s ease-out 1.2s forwards;
}

.content-container > .sub-headline {
    animation: slideInContent 0.6s ease-out 1.4s forwards;
}

.content-container > .signup-form {
    animation: slideInContent 0.6s ease-out 1.6s forwards;
}

.headline {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--near-white);
    margin: 0;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
    text-wrap: balance;
}

.headline-sub {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--near-white);
    margin: 0.5rem 0 1rem 0;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
}

.sub-headline {
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--near-white);
    margin: 0 0 1rem 0;
    padding-top: 1.5rem;
    opacity: 0.9;
    text-wrap: pretty;
}

/* Contest Highlights List */
.contest-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.contest-highlights li {
    color: var(--near-white);
    font-family: 'Varela Round', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    text-wrap: pretty;
}

.contest-highlights li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.contest-highlights strong {
    color: var(--gold);
    font-weight: 600;
}

/* Form Styles */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: stretch;
}

.signup-form input {
    background: var(--white);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    width: 100%;
}

.signup-form input::placeholder {
    color: #666;
}

.signup-form input:focus {
    outline: 2px solid var(--lockwood-red);
    outline-offset: 2px;
}

.submit-btn {
    background: #8B0000;
    color: var(--white);
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--lockwood-red-hover);
    transform: translateY(-1px);
}

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

/* Sponsor Button */
.sponsor-button-wrapper {
    margin-top: 1.5rem;
    text-align: center;
}

.become-sponsor-btn {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.become-sponsor-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Contest Info Row */
.contest-info-row {
    width: 90%;
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0.5rem 1rem;
    z-index: 2;
    position: relative;
}

.contest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
}

.contest-item {
    background: rgba(250, 248, 244, 0.95);
    padding: 1.25rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contest-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contest-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contest-description {
    font-family: 'Varela Round', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-green);
    line-height: 1.4;
}

/* Partners Section - Below Video */
.partners-section-video {
    margin-top: 1.5rem;
    width: 100%;
}

/* Partners Row - Centered */
.partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 100%;
}

/* Partners Section */
.partners-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(250, 248, 244, 0.2);
    text-align: center;
    width: 100%;
    max-width: 800px;
}

/* Partners section in right column (sponsors page) */
.right-column .partners-section {
    margin-top: 1.5rem;
    max-width: 100%;
}

/* Partner Logos */
.partner-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.partner-logos a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.partner-logos a:hover {
    transform: translateY(-2px);
}

.partners-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--near-white);
    margin: 0;
    margin-bottom: 1rem;
}

.partner-logo {
    height: 70px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* Sponsor Link */
.sponsor-link-wrapper {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.sponsor-link {
    font-family: 'Varela Round', sans-serif;
    font-size: 0.875rem;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--gold);
    border-radius: 4px;
}

.sponsor-link:hover {
    background-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Press Footer */
.press-footer {
    background: #f8f8f8;
    padding: 2rem 1rem;
    margin-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

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

.footer-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.press-links {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    line-height: 1.8;
    color: #666;
}

.press-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.25rem;
}

.press-links a:hover {
    text-decoration: underline;
}

/* Footer */
.page-footer {
    background: var(--navy);
    color: var(--near-white);
    text-align: center;
    padding: 2rem 0.75rem;
    font-size: 0.85rem;
    margin-top: 3rem;
}

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

.footer-contact {
    margin-bottom: 0.75rem;
}

.footer-contact h3 {
    color: var(--gold);
    font-size: 0.95rem;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.footer-contact p {
    margin: 0.2rem 0;
    font-size: 0.85rem;
}

.footer-contact a {
    color: var(--near-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    border-top: 1px solid rgba(250, 248, 244, 0.2);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        gap: 2rem;
        padding: 2rem 2rem 2rem 0;
    }
    
    .video-embed {
        width: 450px;
        height: 400px;
    }
    
    /* Sponsors page responsive */
    .event-stats {
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Tier styles will be handled by specific breakpoints */
}

/* Tablet breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        max-width: 600px;
        margin: 0 auto;
        margin-top: 2rem;
    }
    
    .tier-branding {
        grid-template-columns: 60% 40%;
        gap: 1rem;
    }
    
    .tier-brand-logo {
        height: 85px;
        max-width: 280px;
    }
    
    .tier-card {
        padding: 1.5rem;
    }
    
    .tier-benefits li {
        font-size: 0.95rem;
        line-height: 1.45;
    }
}

@media (max-width: 768px) {
    /* Contest Info - Mobile */
    .contest-info-row {
        margin: 0.5rem auto;
        padding: 0.25rem 0.5rem;
    }
    
    .contest-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contest-item {
        padding: 1rem;
    }
    
    .contest-title {
        font-size: 1.1rem;
    }
    
    .contest-description {
        font-size: 0.9rem;
    }
    .hero-section {
        padding: 1rem 1rem 1rem 0;
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .main-content-area {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .signup-card {
        max-width: 100%;
        padding: 2rem 2rem 2rem 4rem;
        margin-left: -1rem;
    }
    
    .card-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .logo-container {
        align-self: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .event-logo {
        height: min(210px, 35vw);
    }
    
    .headline {
        font-size: 2.5rem;
    }
    
    .partner-logos {
        flex-direction: column;
        gap: 1rem;
    }
    
    .partner-logo {
        height: 55px;
    }
    
    .video-container {
        align-self: center;
        margin-top: 1.5rem;
        margin-left: 0;
    }
    
    .main-content-row {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        width: 100%;
    }
    
    .left-column, 
    .right-column {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .media-card {
        border-width: 4px;
    }
    
    .video-embed {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    
    .partner-logo {
        height: 45px;
    }
    
    /* Partners row on mobile */
    .partners-row {
        margin-top: 2rem;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    
    .partners-row .partners-section {
        max-width: 100%;
        border-top: 1px solid rgba(250, 248, 244, 0.2);
        padding-top: 1.5rem;
    }
    
    .partners-row .partner-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-items: center;
    }
    
    .carousel-slide {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .stem-headline {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .headline, h1 {
        font-size: 2rem;
        padding: 2rem 1rem 0 1rem; /* Added top padding for H1s */
    }
    
    .headline-sub {
        font-size: 1.75rem;
        padding: 0 1rem;
        margin-top: 0.5rem;
    }
    
    /* Sponsors page mobile */
    .event-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    /* Mobile tier styling - ensure vertical stacking */
    .tier-branding {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .tier-brand-section {
        order: 1;
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .tier-info-section {
        order: 2;
        width: 100%;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-plus {
        font-size: 1.75rem;
    }
    
    .event-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Mobile tier cards - 1 column, 4 rows */
    .tiers-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .sponsor-tiers-section {
        padding: 2rem 1rem;
    }
    
    .tier-card {
        padding: 1.25rem;
        margin-bottom: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .tier-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .tier-branding {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .tier-brand-section {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 0.75rem;
    }
    
    .tier-info-section {
        order: 2;
        width: 100%;
    }
    
    .tier-brand-logo {
        height: 80px;
        max-width: 200px;
        object-fit: contain;
    }
    
    .tier-name {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
        letter-spacing: 0.5px;
    }
    
    .tier-price {
        font-size: 1.25rem;
        margin: 0.15rem 0;
        font-weight: 700;
    }
    
    .tier-availability {
        font-size: 0.75rem;
        opacity: 0.8;
    }
    
    .tier-benefits {
        margin-top: 0.75rem;
        padding-left: 1.25rem;
    }
    
    .tier-benefits li {
        margin-bottom: 0.4rem;
        font-size: 0.875rem;
        line-height: 1.35;
    }
    
    .tier-cta {
        margin-top: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Modal responsive */
    .modal-overlay {
        padding: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .sponsor-form {
        padding: 1.5rem;
    }
    
    /* Press footer on mobile */
    .press-footer {
        padding: 1.5rem 0.75rem;
    }
    
    .press-links {
        font-size: 0.75rem;
        line-height: 2;
    }
}
}

/* Tablet Styles */
@media (max-width: 991px) and (min-width: 577px) {
    .hero-section {
        margin-top: 100px;
    }
    
    .main-content-row {
        flex-direction: column !important;
        gap: 2.5rem;
        padding: 0 2rem !important;
        width: 100% !important;
    }
    
    .left-column {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .main-headline {
        font-size: 2.5rem !important;
        text-align: center;
    }
    
    .left-column > p {
        text-align: center;
        font-size: 1.1rem !important;
    }
    
    .contests-grid {
        gap: 0.75rem !important;
    }
    
    .contests-grid h3 {
        font-size: 1rem !important;
    }
    
    .contests-grid p:first-of-type {
        font-size: 1.6rem !important;
    }
    
    .right-column {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .ticket-heading {
        text-align: center;
    }
    
    .zeffy-container {
        height: 700px !important;
    }
    
    .media-card {
        max-width: 600px;
        margin: 0 auto;
    }
    
    section[style*="background: linear-gradient(135deg"] {
        padding: 3rem 2rem !important;
    }
    
    section[style*="background: linear-gradient(135deg"] h2 {
        font-size: 2rem !important;
    }
    
    section[style*="background: linear-gradient(135deg"] > p {
        font-size: 1.15rem !important;
    }
}

/* Mobile Styles */
@media (max-width: 576px) {
    /* Hero Section */
    .hero-section {
        padding: 0;
        min-height: 100vh;
        background-size: cover;
        background-position: center;
        margin-top: 0;
        padding-top: 110px; /* Increased padding for mobile nav */
        box-sizing: border-box;
    }
    
    /* Event Logo Row */
    .event-logo-row {
        padding: 1rem 0;
        margin-bottom: 1rem;
    }
    
    .event-logo-top {
        height: 119px; /* 70px * 1.7 */
        width: auto;
    }
    
    /* Main Content Row */
    .main-content-row {
        flex-direction: column !important;
        gap: 2rem;
        padding: 0 1rem !important;
        margin-bottom: 2rem;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Left Column - Mobile */
    .left-column {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0.5rem !important;
        flex: 1 !important;
        animation: fadeInUp 0.6s ease-out forwards;
    }
    
    /* Main Headline Mobile */
    .main-headline {
        font-size: 2rem !important;
        margin-bottom: 0.75rem;
        text-align: center;
        line-height: 1.1 !important;
        padding-top: 2rem; /* More breathing room under nav */
    }
    
    /* Sub text mobile */
    .left-column > p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center;
        line-height: 1.4;
    }
    
    /* Contest Grid Mobile */
    .contests-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
    }
    
    .contests-grid > div {
        padding: 0.75rem !important;
    }
    
    .contests-grid h3 {
        font-size: 0.95rem !important;
    }
    
    .contests-grid p:first-of-type {
        font-size: 1.5rem !important;
    }
    
    .contests-grid p:last-of-type {
        font-size: 0.8rem !important;
    }
    
    /* Right Column - Mobile */
    .right-column {
        width: 100% !important;
        max-width: 100% !important;
        gap: 1.5rem;
        padding: 0 0.5rem !important;
        flex: 1 !important;
    }
    
    /* Ticket Heading Mobile */
    .ticket-heading {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
        text-align: center;
    }
    
    /* Zeffy Container Mobile */
    .zeffy-container {
        height: 600px !important; /* Reduced height for mobile */
    }
    
    /* Video Section */
    .media-card {
        border-width: 2px !important;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .video-thumbnail {
        width: 100%;
        height: auto;
    }
    
    /* Event Info Bar Mobile */
    .left-column > div:last-child {
        padding: 1rem !important;
        margin-top: 1.5rem !important;
    }
    
    .left-column > div:last-child > div {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    /* Partners Section */
    .partners-section {
        margin-top: 1rem;
        padding: 1rem;
        background: rgba(10, 30, 55, 0.7);
        border-radius: 8px;
    }
    
    .sponsor-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .partners-title {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
        letter-spacing: 0.05em;
    }
    
    .partner-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-items: center;
    }
    
    .partner-logo {
        height: 45px;
        width: auto;
        object-fit: contain;
        max-width: 100%;
    }
    
    /* Call to Action Section Mobile */
    section[style*="background: linear-gradient(135deg"] {
        padding: 2rem 1rem !important;
        margin: 2rem 0 0 0 !important;
    }
    
    section[style*="background: linear-gradient(135deg"] h2 {
        font-size: 1.75rem !important;
    }
    
    section[style*="background: linear-gradient(135deg"] > p {
        font-size: 1rem !important;
        padding: 0 0.5rem;
    }
    
    section[style*="background: linear-gradient(135deg"] > div {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin: 2rem auto !important;
    }
    
    /* STEM Section */
    .stem-section {
        padding: 1.5rem 0;
        width: 100%;
    }
    
    .stem-headline {
        font-size: 1.1rem !important;
        margin: 1rem 0.5rem 1.5rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }
    
    /* Carousel Mobile */
    .carousel-wrapper {
        padding: 0 0.5rem;
    }
    
    .carousel-wrapper::before,
    .carousel-wrapper::after {
        width: 20px;
    }
    
    .carousel-slide {
        width: 250px;
        flex: 0 0 250px;
    }
    
    .carousel-slide img {
        height: 180px;
        object-fit: cover;
    }
    
    /* Reduce animations on mobile for performance */
    .left-column,
    .right-column {
        animation-duration: 0.4s;
    }
    
    /* Mobile Navigation Improvements */
    .navbar {
        padding: 0.75rem 1rem;
        height: 80px;
    }
    
    .nav-logo {
        height: 50px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    /* Mobile Footer */
    .page-footer {
        padding: 1.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    /* Mobile Button Sizes */
    .donate-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Better Touch Targets */
    button, 
    a.donate-btn,
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Prevent Horizontal Scroll */
    body {
        overflow-x: hidden;
    }
    
    main {
        overflow-x: hidden;
    }
}

/* Extra small devices - tighter mobile layout */
@media (max-width: 480px) {
    .tiers-grid {
        padding: 0 0.5rem;
    }
    
    .tier-card {
        padding: 1rem;
    }
    
    .tier-brand-logo {
        height: 70px;
        max-width: 180px;
    }
    
    .tier-name {
        font-size: 0.85rem;
    }
    
    .tier-price {
        font-size: 1.15rem;
    }
    
    .tier-availability {
        font-size: 0.7rem;
    }
    
    .tier-benefits {
        padding-left: 1rem;
    }
    
    .tier-benefits li {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 0.35rem;
    }
    
    .tier-cta {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .event-logo-top {
        height: 102px; /* 60px * 1.7 */
    }
    
    .headline {
        font-size: 1.5rem;
    }
    
    .sub-headline {
        font-size: 0.85rem;
    }
    
    .partner-logos {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .partner-logo {
        height: 40px;
    }
    
    .carousel-slide {
        width: 200px;
        flex: 0 0 200px;
    }
    
    .carousel-slide img {
        height: 150px;
    }
}

/* Animations */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

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

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

/* Disable animations for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .signup-card {
        transform: translateX(0);
        animation: none;
    }
    
    .card-content,
    .content-container > *,
    .partners-section {
        opacity: 1;
        transform: translateX(0);
        animation: none;
    }
}

/* Row 2: Main Content */
.main-content-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 3rem;
    min-height: 400px;
    padding-top: 4rem;
}



/* Media Card with White Border */
.media-card {
    position: relative;
    border: 4px solid #fff;
    border-radius: 8px;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    max-width: 800px;
}

.video-embed {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    display: block;
    border: none;
}

.media-card:hover {
    transform: translateY(-2px);
}



/* STEM Section */
.stem-section {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    text-align: center;
}

.stem-headline {
    font-family: 'Varela Round', sans-serif;
    font-size: 1.125rem;
    font-style: italic;
    color: var(--near-white);
    text-align: center;
    margin: 3rem 0 2rem;
    line-height: 1.4;
}

/* Row 1: Event Logo */
.event-logo-row {
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.event-logo-top {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Partners Section */
/* Duplicate partners-section removed - see line 195 for main definition */

/* Duplicate partners-title removed - see line 208 for main definition */

/* Duplicate partner-logos removed - see line 201 for main definition */

/* Sponsors Page Styles */
.sponsor-intro {
    margin-bottom: 2rem;
}

.event-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: inline-block;
}

.stat-number-line {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: nowrap;
}

.stat-plus {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-left: 0.1rem;
}

.pop-number {
    animation: popAnimation 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes popAnimation {
    0%, 85%, 100% {
        transform: scale(1);
    }
    90%, 95% {
        transform: scale(1.2);
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--near-white);
    opacity: 0.9;
    margin-top: 0.25rem;
}

.value-props {
    margin-top: 2rem;
}

.value-props h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--near-white);
    margin-bottom: 1rem;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--near-white);
    opacity: 0.9;
}

.value-list li::before {
    content: '•';
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.impact-description {
    color: var(--near-white);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-align: left;
}

.contest-note {
    color: var(--gold);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 1.5rem;
    padding: 1rem;
    border: 1px solid var(--gold);
    border-radius: 8px;
    background: rgba(230, 196, 116, 0.1);
    text-align: left;
}

/* Sponsor Tiers Section */
.sponsor-tiers-section {
    width: 100%;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 2rem;
}

.tiers-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--near-white);
    text-align: center;
    margin-bottom: 2rem;
}

.tier-card {
    background: rgba(10, 30, 55, 0.8);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gold-tier {
    border-color: var(--gold);
}

.gold-tier .tier-name {
    color: var(--gold);
}

.silver-tier {
    border-color: #c0c0c0;
}

.silver-tier .tier-name {
    color: #c0c0c0;
}

.bronze-tier {
    border-color: #cd7f32;
}

.bronze-tier .tier-name {
    color: #cd7f32;
}

.community-tier {
    border-color: var(--near-white);
}

.community-tier .tier-name {
    color: var(--near-white);
}

.tier-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1rem;
}

.tier-branding {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}



.tier-brand-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-info-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
}

.tier-brand-logo {
    height: 105px;
    width: 100%;
    max-width: 320px;
    object-fit: contain;
    filter: brightness(1) contrast(1.1);
}

.tier-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.tier-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--near-white);
    margin: 0.5rem 0;
}

.tier-availability {
    font-size: 0.875rem;
    color: var(--near-white);
    opacity: 0.7;
}

.tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tier-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--near-white);
    line-height: 1.3;
}

.tier-benefits li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Sponsor Contact */
.sponsor-contact {
    background: rgba(10, 30, 55, 0.9);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.sponsor-contact h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.sponsor-contact p {
    color: var(--near-white);
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.back-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--near-white);
    text-decoration: none;
}

/* Event Details Section */
.event-details-section {
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.event-description h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1rem;
}

.event-tagline {
    font-size: 1.125rem;
    color: var(--near-white);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.event-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-item {
    background: rgba(10, 30, 55, 0.7);
    padding: 1rem;
    border-radius: 6px;
    color: var(--near-white);
}

.highlight-item strong {
    color: var(--gold);
}

/* Tier CTA Buttons */
.tier-cta {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-cta:hover {
    background: var(--near-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 196, 116, 0.4);
}

.tier-cta:active {
    transform: translateY(0);
}

/* Info button style - White outlined for visibility */
.tier-cta-info {
    background: transparent;
    color: white;
    border: 2px solid white;
    margin-top: 0.5rem;
}

.tier-cta-info:hover {
    background: white;
    color: var(--navy);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--near-white);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(10, 30, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--navy);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.close-modal:hover {
    background: rgba(10, 30, 55, 0.1);
}

/* Form Styles */
.sponsor-form {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid rgba(10, 30, 55, 0.2);
    border-radius: 6px;
    font-family: 'Varela Round', sans-serif;
    font-size: 0.9rem;
    background: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(230, 196, 116, 0.1);
}

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

.form-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(10, 30, 55, 0.1);
}

.form-note {
    font-size: 0.85rem;
    color: var(--navy);
    opacity: 0.7;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.submit-sponsor-btn {
    width: 100%;
    background: var(--navy);
    color: var(--near-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-sponsor-btn:hover {
    background: var(--lockwood-red);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(10, 30, 55, 0.3);
}

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

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
}

.carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 1rem;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 300px;
}

.carousel-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

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

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 28, 29, 0.9);
    color: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 10;
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-btn:hover {
    background: var(--lockwood-red);
    transform: translateY(-50%) scale(1.1);
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[data-loaded="false"] {
    opacity: 0;
}

img[data-loaded="true"] {
    opacity: 1;
}
