/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font loading optimization - Using Google Fonts CDN */

:root {
    --primary-color: #ca0013;
    --secondary-bg: #fffcf1;
    --accent-text: #000000;
    --white: #FFFFFF;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: #fffcf1;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--accent-text);
    background-color: #fffcf1;
    -webkit-overflow-scrolling: touch;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Anton', 'Anton-Local', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--accent-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.btn:hover,
.btn:focus {
    background-color: #a00012;
    outline: none;
}

/* Header and Navigation */
header {
    background-color: #fffcf1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1100;
    width: 100vw;
    left: 0;
    right: 0;
    transition: box-shadow 0.2s;
    margin: 0;
    padding: 0 1rem;
}

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

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 4vw;
    height: 100%;
}

.logo-text {
    font-family: 'Anton', 'Anton-Local', sans-serif;
    font-size: 1.3rem;
    color: #ca0013;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    text-align: left;
    padding: 0;
    line-height: 1;
}

.logo-img, .logo span { display: none !important; }

/* ===== UNIFIED NAVIGATION STYLES ===== */
/* All navigation links - desktop and mobile - use these rules only */

/* Desktop Navigation Links */
.nav-links a,
.nav-links a.nav-dropdown-trigger {
    font-family: 'Anton', 'Anton-Local', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-text);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
}

/* Mobile Menu Overlay Links */
.menu-overlay a {
    font-family: 'Anton', 'Anton-Local', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-text);
    text-decoration: none;
    transition: color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
}

/* Dropdown Menu Items */
.nav-dropdown-menu a {
    font-family: 'Anton', 'Anton-Local', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    transition: background-color 0.2s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
}

/* Hover and Active States */
.nav-links a:hover,
.nav-links a.active,
.menu-overlay a:hover,
.menu-overlay a.active {
    color: #ca13;
}

.nav-dropdown-menu a:hover {
    background: #fffcf1;
    color: #ca13;
}
/* ===== END UNIFIED NAVIGATION STYLES ===== */

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    display: none;
}

.nav-dropdown-trigger::after {
    display: none;
}

.nav-dropdown:hover .nav-dropdown-trigger::after {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    list-style: none;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #000;
    text-decoration: none;
    font-family: 'Anton', 'Anton-Local', sans-serif;
    font-size: 0.9rem;
    font-weight: 400 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: #fffcf1;
    color: #ca0013;
}

.nav-dropdown-menu a {
    text-transform: none !important;
}

/* Main Content */
main {
    width: 100%;
    padding-top: 0;
    margin-top: 0;
}

section {
    margin-bottom: 2rem;
    width: 100%;
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

/* Hero Section - Fixed 1920x1080 size */
.hero {
    position: relative;
    width: 100vw;
    min-width: 320px;
    max-width: 100vw;
    margin: 0 auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 4rem 2rem;
    background: none;
    border-radius: 0;
    box-sizing: border-box;
    overflow: hidden;
}

/* Homepage-specific hero height adjustments */
#home-hero.hero {
    min-height: 85vh;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1 1 0;
    text-align: center;
    max-width: 800px;
}

.hero-image {
    display: none;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.25rem;
    line-height: 1.1;
    color: #fffcf1;
    text-align: center;
    text-transform: uppercase;
}

/* Hero Section - Subtitle Styles */
#home-hero .hero .subtitle,
.hero-content .hero-text .subtitle {
    font-size: 1.35rem !important;
    line-height: 1.7 !important;
    margin-bottom: 1.5rem !important;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 700 !important;
    color: var(--accent-text) !important;
    text-align: center;
    text-transform: uppercase;
}

.hero .btn {
    margin: 0 auto;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.hero-buttons .btn {
    width: 265px;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: inherit;
    line-height: inherit;
    transition: background-color 0.3s ease;
    cursor: pointer;
    display: inline-block;
    padding: 0.85rem 1.5rem;
    height: auto;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    .btn-secondary {
        padding: 0.85rem 1.2rem;
    }
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--primary-color);
    color: var(--white);
    outline: none;
}

.hero-main-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 1.5px 8px rgba(0,0,0,0.06);
    background: #eee;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    transition: box-shadow 0.3s;
}

.hero-main-image:hover {
    box-shadow: 0 16px 48px rgba(193,0,22,0.18), 0 3px 16px rgba(0,0,0,0.10);
}

@media (min-width: 601px) and (max-width: 900px) {
    .hero {
        min-height: 65vh;
        padding: 3.5rem 1.5rem;
    }
    
    #home-hero.hero {
        min-height: 80vh;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 65vh;
        padding: 2.5rem 1rem;
    }
    
    #home-hero.hero {
        min-height: 75vh;
    }
    
    .hero-bg-video {
        object-position: 10% center !important;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 290px;
        padding: 0.85rem 1.2rem;
        font-size: 1rem;
    }
}

/* Modern Mission Section */
.mission-modern {
    background: #fffcf1;
    color: #ca0013;
    min-height: 80vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 3rem 3rem 3rem;
    gap: 3rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    margin-top: 1rem;
    z-index: 1;
}

.mission-modern-title,
.mission-modern-text {
    color: #ca0013;
}

.mission-modern-title {
    font-family: 'Anton', 'Anton-Local', sans-serif;
    font-size: 2.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 0rem 0;
    background: none;
    text-transform: none;
    text-align: center;
    line-height: 1.2;
    padding: 0 1rem;
}

.mission-modern-text {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
    padding: 0 1rem;
    font-family: 'DM Sans', sans-serif;
    color: #000000;
}

.mission-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 1rem;
}

.btn-mission {
    background: transparent;
    color: #ca0013;
    border: 2px solid #ca0013;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 265px;
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
}

.btn-mission:hover, .btn-mission:focus {
    background: #ca0013;
    color: #fffcf1;
    outline: none;
}

.btn-mission-primary {
    background: #ca0013;
    color: #fffcf1;
    border: none;
    transition: all 0.3s ease;
}

.btn-mission-primary:hover,
.btn-mission-primary:focus {
    background: #a00012;
    color: #fffcf1;
    outline: none;
}

.btn-main, .btn-mission-primary {
    background: #ca0013;
    color: #fffcf1;
    border: 2px solid #ca0013;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
}

.btn-main {
    width: 100%;
    max-width: 500px;
}

@media (max-width: 600px) {
    .btn-main {
        max-width: 100%;
    }
}

.btn-main:hover, .btn-main:focus,
.btn-mission-primary:hover, .btn-mission-primary:focus {
    background: #a00012;
    color: #fffcf1;
    border-color: #a00012;
    outline: none;
}

@media (min-width: 601px) and (max-width: 900px) {
    .mission-modern {
        background: #fffcf1;
        color: #ca0013;
        padding: 2rem 1.5rem 1rem 1.5rem;
    }
    .mission-modern-title {
        color: #ca0013;
        font-size: 2.2rem;
        margin-bottom: 0rem;
    }
    /* Unified tablet styling for all subtitle/subtext elements */
    .mission-modern-text,
    .newsletter-subtext,
    .why-it-matters-text,
    .why-it-matters-text p,
    .hero .subtitle,
    .shop-hero-subtitle,
    .shop-section-header p,
    .product-subtitle,
    .product-story p,
    .details-list li,
    .story-text,
    .testimonial-text,
    .cta-content p,
    .cta-subtitle,
    .feature-item p,
    .feature-detail p,
    .module-card p,
    .story-cta p,
    .guarantee,
    .newsletter-subtext {
        font-size: 1.125rem !important;
        font-weight: 500 !important;
        line-height: 1.8 !important;
        font-family: 'DM Sans', sans-serif !important;
    }
    
    .mission-modern-text {
        color: #000000;
        max-width: 95vw;
    }
    
    .newsletter-title {
        font-size: 2rem !important;
        font-weight: 700 !important;
        font-family: 'Anton', sans-serif !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }
    
    .newsletter h3 {
        font-size: 2rem !important;
        font-weight: 700 !important;
        font-family: 'Anton', sans-serif !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }
}

@media (max-width: 600px) {
    .mission-modern {
        background: #fffcf1;
        color: #ca0013;
        padding: 3rem 1rem 2.5rem 1rem;
        min-height: 70vh;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
        gap: 2.5rem;
    }
    .mission-modern-title {
        color: #ca0013;
        font-size: 2rem;
        margin-top: 1.5rem;
        margin-bottom: 0rem;
    }
    /* Unified mobile styling for all subtitle/subtext elements */
    .mission-modern-text,
    .newsletter-subtext,
    .why-it-matters-text,
    .why-it-matters-text p,
    .hero .subtitle,
    .shop-hero-subtitle,
    .shop-section-header p,
    .product-subtitle,
    .product-story p,
    .details-list li,
    .story-text,
    .testimonial-text,
    .cta-content p,
    .cta-subtitle,
    .feature-item p,
    .feature-detail p,
    .module-card p,
    .story-cta p,
    .guarantee,
    .newsletter-subtext {
        font-size: 1.125rem !important;
        font-weight: 500 !important;
        line-height: 1.8 !important;
        font-family: 'DM Sans', sans-serif !important;
    }
    
    .mission-modern-text {
        color: #000000;
        max-width: 98vw;
    }
    .mission-modern-text br {
        display: none;
    }
    .mission-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    .btn-mission {
        width: 100%;
        max-width: 290px;
        padding: 0.85rem 1.2rem;
        font-size: 1rem;
    }
    
    .newsletter-title {
        font-size: 2rem !important;
        font-weight: 700 !important;
        margin-top: 1.2rem;
        margin-bottom: 0.5rem;
        white-space: nowrap;
        font-family: 'Anton', sans-serif !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }
    
    .newsletter h3 {
        font-size: 2rem !important;
        font-weight: 700 !important;
        font-family: 'Anton', sans-serif !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Section */
.feature {
    min-height: 35vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.feature .content {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: #fffcf1;
    color: #000000;
    padding: 2rem 1rem;
    margin-top: 0 !important;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    width: 100%;
}

.social-links a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.social-links a i {
    font-size: 1.5rem;
    color: #000000;
}

.social-links a span {
    font-size: 1rem;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Mobile responsive adjustments for general social-links */
@media (max-width: 600px) {
    .social-links a i {
        font-size: 1.2rem;
    }
    
    .social-links a span {
        font-size: 0.9rem;
    }
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #000000;
}

.newsletter {
    text-align: center;
    margin-bottom: 2rem;
}

.newsletter h3 {
    font-family: 'Anton', 'Anton-Local', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #ca0013;
    text-transform: uppercase !important;
    text-align: center;
}

.newsletter-title {
    font-family: 'Anton', 'Anton-Local', sans-serif;
    font-size: 2.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 0.5rem 0;
    background: none;
    text-transform: none;
    text-align: center;
    line-height: 1.2;
    padding: 0 1rem;
    color: #ca0013;
}

.newsletter-subtext {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
    padding: 0 1rem;
    font-family: 'DM Sans', sans-serif;
    color: #000000;
}

.newsletter .social-links {
    margin-top: 2rem;
}

.signup-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    width: 100%;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #999999;
    border-radius: 4px;
    background: transparent;
    color: #000000;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(0, 0, 0, 0.7);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #000000;
}

.copyright a {
    color: #000000 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.copyright a:hover,
.copyright a:focus {
    color: #ca0013 !important;
}

.copyright a:visited {
    color: #000000 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .content {
        padding: 1.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero .subtitle {
        font-size: 1.25rem;
    }

    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .mission p,
    .feature p {
        font-size: 1.125rem;
    }
}

/* Utility Classes */
.active {
    color: var(--primary-color) !important;
}

.mission-grid, .feature-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 2.5rem;
    padding: 3.5rem 0;
    margin: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

.mission-title, .feature-title {
    text-align: left;
    padding-right: 2vw;
}

.mission-title h2, .feature-title h2 {
    font-size: 2.7rem;
    color: #ca0013;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.mission-content, .feature-title p {
    font-size: 1.25rem;
    color: #222;
    line-height: 1.7;
    font-weight: 400;
}

.feature-action {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.feature-action .btn {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    background: #a20013;
    color: var(--white);
    font-weight: 500;
    box-shadow: none;
    transition: background-color 0.3s ease;
    min-width: 160px;
}

@media (min-width: 601px) and (max-width: 900px) {
    .feature-action {
        margin-top: 3.5rem !important;
    }
}

@media (max-width: 900px) {
    .mission-grid, .feature-grid {
        grid-template-columns: 1fr;
        padding: 2rem 4vw;
        gap: 1.5rem;
    }
    .feature-action {
        margin-top: 2.5rem;
    }
    .mission-title, .feature-title {
        padding-right: 0;
    }
}

/* Centered nav layout for header */
.nav-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    min-height: 70px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.nav-left {
    flex: 1 1 0;
    justify-content: flex-start;
}

.nav-right {
    flex: 1 1 0;
    justify-content: flex-end;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
}

.center-logo {
    font-family: 'Anton', 'Anton-Local', sans-serif;
    font-size: 1.5rem;
    color: #ca0013;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    flex: 0 0 auto;
    margin: 0 2rem;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

@media (max-width: 900px) {
    .nav-centered {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        min-height: unset;
        position: relative;
    }
    .center-logo {
        flex: 0 1 auto;
        margin: 0;
        z-index: 1;
    }
    .hamburger {
        display: block;
        position: absolute;
        left: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1201;
        padding: 0.75rem;
    }
}

.mission-title {
    text-align: center !important;
    padding-right: 0;
}

.mission-content {
    text-align: center !important;
    margin: 0 auto;
}

.feature.modern-section::before {
    display: none;
}

.feature.modern-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    max-height: 900px;
    margin: 0 auto;
    padding: 0;
    background: url('images/The-Heart-Room Section.jpg') center center/cover no-repeat;
    position: relative;
    margin-top: 0 !important;
}

.feature-above-door {
    text-align: center;
    width: auto;
    max-width: 800px;
    margin: 3rem auto 2rem auto;
    padding: 0 2rem;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
    white-space: normal;
    font-family: 'DM Sans', sans-serif;
}

.feature-grid {
    position: relative;
    z-index: 2;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 3rem;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.feature-title {
    margin-bottom: 2rem;
}

.feature-title h2 {
    font-family: 'Anton', 'Anton-Local', sans-serif;
    font-size: 3rem;
    color: #ca0013;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: none;
    font-weight: 700;
    background: none;
}

.feature-title p {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    background: none;
    text-align: center;
}

.feature-action {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.feature-action .btn {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    background: #a20013;
    color: var(--white);
    font-weight: 500;
    box-shadow: none;
    transition: background-color 0.3s ease;
    min-width: 160px;
}

@media (max-width: 900px) {
    .feature.modern-section {
        min-height: 400px;
        background-position: center center;
    }
    .feature-above-door {
        font-size: 1.4rem;
        max-width: 90%;
        padding: 0 1.5rem;
        margin: 2rem auto 1.5rem auto;
        line-height: 1.5;
    }
}

@media (max-width: 600px) {
    .feature-action {
        margin-top: 3rem !important;
    }
    .feature.modern-section {
        min-height: 350px;
        padding-top: 0;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        background-position: center center;
    }
    .feature-above-door {
        margin-top: 2rem !important;
    }
}

/* Show Hero Section */
#show-hero {
    width: 100vw;
    height: calc(100vw * 0.5625); /* Always 16:9 */
    min-width: 320px;
    min-height: 400px;
    max-width: 100vw;
    max-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    background: url('images/The Heart Room Show.jpg') center center/cover no-repeat;
    position: relative;
}

/* Only use 100vh for mobile/portrait if needed */
@media (max-width: 900px) {
    #show-hero {
        height: 100vh;
    }
}

#show-hero h1 {
    font-size: 2rem;
    color: #fffcf1;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    text-transform: none;
    padding: 0 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    top: 4%;
}

#show-hero p {
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

@media (max-width: 1080px) {
    #show-hero {
        height: 100vh;
        min-height: 400px;
    }
}

@media (max-width: 1080px) {
    #show-hero {
        height: 100vh;
        min-height: 400px;
    }
    #show-hero h1 {
        font-size: 3.5rem;
        padding: 0 3rem;
        top: 3%;
    }
}

@media (max-width: 768px) {
    #show-hero h1 {
        font-size: 2rem;
        padding: 0 2.5rem;
        top: 2%;
    }
}

@media (max-width: 600px) {
    #show-hero h1 {
        font-size: 1.75rem;
        padding: 0 1.5rem;
        top: 1%;
    }
}

#show-description {
    background-color: #fffcf1;
    padding: 2rem 0 4rem 0;
}

#show-description h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

#show-description .content,
#episodes .content,
#schedule .content,
#join .content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#show-description .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#show-description .content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #000000;
    font-weight: 600;
    width: 100%;
}

#show-description .content p:last-child {
    margin-top: 0;
    margin-bottom: 3rem;
    color: #ca0013;
    font-weight: 600;
}

@media (max-width: 768px) {
    #show-hero h1,
    #show-description h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    #show-hero h1,
    #show-description h2 {
        font-size: 1.75rem;
    }
}

/* Add styles for hamburger menu icon */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: none;
}

.hamburger i {
    color: #000000;
    font-size: 1.5rem;
}

/* Hamburger menu icon color for light mode */
.hamburger svg rect {
    fill: #000 !important;
}

/* Hamburger menu icon color for dark mode */
.dark-mode .hamburger svg rect {
    fill: #fff !important;
}

@media (max-width: 900px) {
    .hamburger {
        display: block;
    }
    .nav-links, .nav-left, .nav-right {
        display: none;
    }
    
    /* Mobile dropdown styles */
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-top: 0.5rem;
    }
    
    .nav-dropdown-menu a {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }
    
    .nav-dropdown-trigger::after {
        display: none;
    }
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.menu-overlay nav {
    position: fixed;
    top: 0;
    left: -280px; /* Start off-screen */
    width: 280px;
    height: 100%;
    background: #fffcf1;
    z-index: 1201;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center items vertically */
    gap: 1rem; /* Space between links */
    padding: 2rem 0; /* Vertical padding for top/bottom */
    transition: left 0.3s ease;
    box-shadow: 4px 0px 15px rgba(0,0,0,0.1);
}

.menu-overlay.open nav {
    left: 0; /* Slide in */
}

.menu-overlay .close-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2.5rem;
    color: #000000;
    background: none;
    border: none;
    cursor: pointer;
    display: block !important;
    z-index: 1202;
}

/* Ensure hamburger positioning works in menu overlay */
.menu-overlay .close-btn.hamburger {
    position: absolute;
    left: 1.2rem;
    top: 1rem;
    z-index: 1202;
    padding: 0.75rem;
}

/* Hide the old, stray close button from the header */
.nav-centered > .close-btn {
    display: none !important;
}

/* Ensure menu overlay close button is always visible */
.menu-overlay > .close-btn {
    display: block !important;
}

.theme-toggle-btn {
    position: absolute;
    top: 3.5rem;
    left: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #000000;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0.2rem;
    font-size: 1.4rem;
}

@media (max-width: 900px) {
    .theme-toggle-btn {
        left: 1rem;
    }
}

@media (max-width: 600px) {
    .theme-toggle-btn {
        top: auto;
        bottom: 1.5rem;
        left: 1.5rem;
        position: fixed;
        background-color: #fffcf1;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        padding: 0.5rem;
        z-index: 100;
    }
    .dark-mode .theme-toggle-btn {
        background-color: #333333;
        box-shadow: 0 2px 8px rgba(0,0,0,0.4);
        color: #D4D4D4;
    }
}

.dark-mode .theme-toggle-btn {
    color: #D4D4D4;
}

.menu-overlay a {
    font-family: 'Anton', sans-serif !important;
    font-weight: 400 !important;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
    transition: color 0.3s;
}

.menu-overlay a:hover,
.menu-overlay a:focus {
    background-color: #f0ebe0;
}

.menu-overlay a.active {
    color: #ca0013;
    font-weight: 400;
}

@media (max-width: 600px) {
    .menu-overlay nav {
        padding-left: 1.2rem;
    }
    .menu-overlay a {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0.5rem;
  }
}

/* Be Part of the Room Section */
#join {
    text-align: center;
    width: 100vw;
    padding: 4rem 0 2rem 0;
    background-color: #fffcf1;
    margin-bottom: 0;
}

#join .content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

#join .section-heading {
    margin-top: 4rem;
    font-size: 2.5rem;
    font-family: 'Anton', 'Anton-Local', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    line-height: 1;
}

#join .section-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    color: #222;
    font-weight: 600;
    line-height: 1.7;
    margin: 0 auto 2.5rem auto;
    max-width: 700px;
    text-align: center;
    padding: 0 1.5rem;
}

#join .social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 0;
}

#join .social-links a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

#join .social-links a i {
    font-size: 1.5rem;
    color: #000000;
}

#join .social-links a span {
    font-size: 1rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 900px) {
    #join {
        padding: 3rem 0 2rem 0;
    }
    
    #join .section-heading {
        font-size: 2.2rem;
        margin-top: 3rem;
    }
    
    #join .section-body {
        font-size: 1.2rem;
        padding: 0 2rem;
    }
}

@media (max-width: 600px) {
    #join {
        padding: 2rem 0 1rem 0;
    }
    
    #join .content {
        padding: 0 1.5rem;
    }
    
    #join .section-heading {
        margin-top: 2rem;
        font-size: 2rem;
    }
    
    #join .section-body {
        font-size: 0.98rem;
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }
    
    #join .social-links {
        gap: 1.5rem;
    }
    
    #join .social-links a i {
        font-size: 1.5rem;
    }
    
    #join .social-links a span {
        font-size: 1rem;
    }
}

h1, h2, h3, h4, h5, h6, .mission-modern-title, .feature-title h2, #join .section-heading {
    font-family: 'Anton', 'Anton-Local', sans-serif;
    font-weight: 400 !important;
}

.menu-overlay a[href="https://tally.so/r/mVypp6"]:visited {
    color: #ca0013 !important;
}

.mobile-br { display: none; }
@media (max-width: 600px) {
  .mobile-br { display: block; width: 100%; height: 0; }
}

@media (max-width: 600px) {
  #schedule .content.section-body > div[style*="margin-top: 16rem"] {
    margin-top: 28rem !important;
  }
}

.cta-container {
  margin-top: 16rem;
}
@media (max-width: 600px) {
  .cta-container {
    margin-top: 24rem !important;
  }
}

@font-face {
    font-family: 'Anton-Local';
    src: url('fonts/anton.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Standardized text styles for mobile and tablet */
@media (max-width: 900px) {
    /* Tablet styles */
    .hero .subtitle {
        font-size: 1.2rem;
        line-height: 1.5;
        font-family: 'DM Sans', sans-serif;
        font-weight: 500;
        color: #000000;
    }

    .hero h1,
    .mission-modern-title,
    .feature-title h2,
    .section-heading {
        font-size: 2.4rem;
        line-height: 1.2;
        font-family: 'Anton', 'Anton-Local', sans-serif;
        font-weight: 700;
        letter-spacing: 1px;
    }
}

@media (max-width: 600px) {
    /* Mobile styles */
    .hero .subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        font-family: 'DM Sans', sans-serif;
        font-weight: 500;
        color: #000000;
    }

    .hero h1,
    .mission-modern-title,
    .feature-title h2,
    .section-heading {
        font-size: 2rem;
        line-height: 1.2;
        font-family: 'Anton', 'Anton-Local', sans-serif;
        font-weight: 700;
        letter-spacing: 1px;
    }
}

/* Newsletter Section */
.newsletter-subtext {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    color: #000000;
    margin: 0.5rem auto 1.5rem auto;
    line-height: 1.5;
    font-weight: 500;
    max-width: 500px;
}

/* Remove all other .hero .subtitle styles */
.hero .subtitle {
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 500 !important;
    color: var(--accent-text) !important;
}

.hero .subtitle {
    color: #fffcf1 !important;
    text-transform: none !important;
}

/* Modal Popup Styles */
.modal-popup {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', 'Anton', sans-serif;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    padding: 2.75rem 3.25rem;
    width: 100%;
    min-width: 300px;
    max-width: 420px;
    position: relative;
    text-align: center;
    box-sizing: border-box;
    border: 1px solid rgba(202, 0, 19, 0.1);
    animation: slideIn 0.3s ease-out;
}

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

.modal-title {
    font-family: 'Anton', 'Anton-Local', sans-serif;
    font-size: 1.6rem;
    color: #ca0013;
    margin-bottom: 0.75rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    line-height: 1.3;
    word-spacing: 0.3px;
}

.modal-subtext {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.75rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #ca0013;
    background-color: rgba(202, 0, 19, 0.1);
}

/* Form Styles */
.popup-form .form-group,
.signup-form .form-group {
    margin-bottom: 0.4rem;
}

.popup-form .form-group:last-child,
.signup-form .form-group:last-child {
    margin-bottom: 0;
}

.popup-form .btn,
.signup-form .btn {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 600;
    min-width: 120px;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.form-text {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.form-success {
    display: none;
    margin-top: 1rem;
    color: #ca0013;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile Break Styles */
.mobile-break {
    display: inline;
}

/* Desktop Break Styles */
.desktop-break {
    display: block;
}

@media (max-width: 600px) {
    .desktop-break {
        display: none;
    }
}

/* Responsive Styles */
@media (max-width: 900px) {
    .mobile-break {
        display: block;
        margin-top: 0.05rem;
    }
    
    .mission-modern {
        padding: 2rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 1.2rem;
        font-family: 'Anton', 'Anton-Local', sans-serif;
        text-transform: none;
    }
    
    .hero .subtitle {
        font-size: 1.2rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.2rem !important;
        font-weight: 700 !important;
    }
    
    .mission-modern-title {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-top: 2rem;
        margin-bottom: 0.6rem;
        font-family: 'Anton', 'Anton-Local', sans-serif;
        text-transform: none !important;
    }
    
    /* Unified tablet styling for all subtitle/subtext elements */
    .mission-modern-text,
    .newsletter-subtext,
    .why-it-matters-text,
    .why-it-matters-text p,
    .hero .subtitle,
    .shop-hero-subtitle,
    .shop-section-header p,
    .product-subtitle,
    .product-story p,
    .details-list li,
    .story-text,
    .testimonial-text,
    .cta-content p,
    .cta-subtitle,
    .feature-item p,
    .feature-detail p,
    .module-card p,
    .story-cta p,
    .guarantee,
    .newsletter-subtext {
        font-size: 1.125rem !important;
        font-weight: 500 !important;
        line-height: 1.8 !important;
        font-family: 'DM Sans', sans-serif !important;
    }
    
    .mission-modern-text {
        padding: 0 0.25rem;
    }
    
    .modal-content {
        padding: 2rem 2.5rem;
        max-width: 380px;
    }
    
    .modal-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .modal-subtext {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }
    
    .popup-form .form-group,
    .signup-form .form-group {
        margin-bottom: 0.5rem;
    }
    
    .popup-form .btn,
    .signup-form .btn {
        margin-top: 0.75rem;
        margin-bottom: 0.4rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .mission-modern {
        padding: 1.5rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        font-family: 'Anton', 'Anton-Local', sans-serif;
        text-transform: none;
    }
    
    .hero .subtitle {
        font-size: 1.3rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
        font-weight: 500 !important;
    }
    
    .mission-modern-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-top: 1.2rem;
        margin-bottom: 0.5rem;
        font-family: 'Anton', 'Anton-Local', sans-serif;
        text-transform: none !important;
    }
    
    /* Unified mobile styling for all subtitle/subtext elements */
    .mission-modern-text,
    .newsletter-subtext,
    .why-it-matters-text,
    .why-it-matters-text p,
    .hero .subtitle,
    .shop-hero-subtitle,
    .shop-section-header p,
    .product-subtitle,
    .product-story p,
    .details-list li,
    .story-text,
    .testimonial-text,
    .cta-content p,
    .cta-subtitle,
    .feature-item p,
    .feature-detail p,
    .module-card p,
    .story-cta p,
    .guarantee,
    .newsletter-subtext {
        font-size: 1.125rem !important;
        font-weight: 500 !important;
        line-height: 1.8 !important;
        font-family: 'DM Sans', sans-serif !important;
    }
    
    .mission-modern-text {
        padding: 0 0.25rem;
    }
    
    .modal-subtext {
        font-size: 1.3rem;
        line-height: 1.6;
    }
    
    .popup-form .form-group,
    .signup-form .form-group {
        margin-bottom: 0.2rem;
    }
    
    .popup-form .btn,
    .signup-form .btn {
        margin-top: 0.7rem;
        margin-bottom: 0.3rem;
        padding: 0.8rem;
        font-size: 0.98rem;
    }
    
    /* Mobile popup styles */
    .modal-content {
        padding: 1.75rem 2rem;
        max-width: 340px;
        border-radius: 12px;
    }
    
    .modal-title {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    
    .modal-subtext {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .popup-form .form-group,
    .signup-form .form-group {
        margin-bottom: 0.4rem;
    }
    
    .popup-form .btn,
    .signup-form .btn {
        margin-top: 0.6rem;
        margin-bottom: 0.3rem;
        padding: 0.7rem 1.1rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) {
    .modal-content {
        max-width: 480px;
        padding: 3rem 3.5rem;
    }
    
    .modal-title {
        font-size: 1.6rem;
        letter-spacing: 0.8px;
        line-height: 1.3;
        margin-bottom: 1rem;
        word-spacing: 0.5px;
    }
    
    .modal-subtext {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
    }
}

/* --- Refined Scrolling Quotes Bar for Seamless Overlap --- */
.scrolling-quotes-bar {
    height: 3rem;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    background: #ca0013;
    color: #fffcf1;
    overflow: hidden;
    width: 100vw;
    border-radius: 0;
    margin: 0;
    padding: 0;
    border-bottom: none;
    z-index: 10;
    position: relative;
}

.scrolling-quotes-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 18s linear infinite;
  will-change: transform;
  min-width: 200%;
}

.scrolling-quote {
    font-size: 1.6rem;
    font-family: 'Anton', 'Anton-Local', sans-serif;
    font-weight: 400;
    margin: 0 1.2rem;
    white-space: nowrap;
    color: #fffcf1;
    letter-spacing: 2px;
}

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

@media (max-width: 600px) {
  .scrolling-quotes-bar {
    height: 2rem;
    font-size: 1.2rem;
    border-bottom: none;
  }
  .scrolling-quote {
    font-size: 1.2rem;
    margin: 0 0.7rem;
    letter-spacing: 1.5px;
  }
  .scrolling-quotes-track {
    animation: marquee-scroll 12s linear infinite;
  }
}



@media (max-width: 600px) {
  .confirmation-message {
    padding: 1.5rem 1rem;
    min-height: 120px;
    max-width: 99vw;
  }
  .confirmation-heart svg {
    width: 24px;
    height: 24px;
    margin-bottom: 0.5rem;
  }
  .confirmation-headline {
    margin-bottom: 0.7rem;
  }
  .headline-line1,
  .headline-line2 {
    font-size: 2rem !important;
    font-family: 'Anton', sans-serif !important;
    font-weight: 900 !important;
    color: #fffcf1 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    line-height: 1.2 !important;
    margin-bottom: 0.1em !important;
  }
  .headline-line1 {
    margin-bottom: 0.1em;
  }
  .headline-line2 {
    margin-bottom: 0.15em;
  }
  .confirmation-message p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    color: #fffcf1 !important;
  }
}

@media (max-width: 768px) {
  .confirmation-container {
    padding: 2rem 1rem;
  }

  .confirmation-content {
    max-width: 100%;
    padding: 2rem 1rem;
  }

  .confirmation-headline {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
  }

  .confirmation-subheadline {
    font-size: 1.25rem !important;
    line-height: 1.4 !important;
    margin-bottom: 2rem !important;
    color: #ca0013 !important;
  }

  .confirmation-message {
    font-size: 1.125rem !important;
    line-height: 1.5 !important;
    margin-bottom: 2rem !important;
  }

  .confirmation-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .confirmation-actions .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .confirmation-actions .btn-outline {
    margin-top: 0.5rem;
  }

  .confirmation-container::before {
    height: 120% !important;
    width: 120% !important;
    top: -10% !important;
    left: -10% !important;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .octagon-bg {
    width: 90vw !important;
    max-width: 750px !important;
    height: 380px !important;
    clip-path: polygon(15% 0%, 85% 0%, 100% 18%, 100% 82%, 85% 100%, 15% 100%, 0% 82%, 0% 18%) !important;
  }
}

@media (max-width: 600px) {
  .headline-line2 {
    font-size: 1.3rem !important;
    color: #fffcf1 !important;
  }
}

.confirmation-message {
  padding: 5.5rem 2.5rem 4.5rem 2.5rem;
  text-align: center;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'DM Sans', sans-serif;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  z-index: 2;
}

.confirmation-heart {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.8rem;
}

.confirmation-heart svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 2px 12px rgba(255, 252, 241, 0.4));
  animation: heartBeat 1.8s infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  10% { transform: scale(1.08); }
  20% { transform: scale(0.96); }
  30% { transform: scale(1.12); }
  40% { transform: scale(0.98); }
  50% { transform: scale(1.06); }
  60% { transform: scale(1); }
}

.confirmation-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.headline-line1 {
  display: block;
  font-size: 3.3rem;
  font-family: 'Anton', 'Anton-Local', sans-serif;
  font-weight: 900;
  color: #fffcf1;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.25em;
}

.headline-line2 {
  display: block;
  font-size: 2.5rem;
  font-family: 'Anton', 'Anton-Local', sans-serif;
  font-weight: 900;
  color: #fffcf1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0.1em;
}

.confirmation-message p {
  color: #fffcf1;
  font-size: 1.55rem;
  margin-bottom: 0;
  line-height: 1.9;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.96;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .headline-line1 { font-size: 2.1rem; margin-bottom: 0.18em; }
  .headline-line2 { font-size: 1.4rem; margin-bottom: 0.12em; }
}

@media (max-width: 600px) {
  .confirmation-message {
    padding: 1.5rem 1rem;
    min-height: 120px;
    max-width: 99vw;
  }
  .confirmation-heart svg {
    width: 24px;
    height: 24px;
    margin-bottom: 0.5rem;
  }
  .confirmation-headline {
    margin-bottom: 0.7rem;
  }
  .headline-line1,
  .headline-line2 {
    font-size: 2rem !important;
    font-family: 'Anton', sans-serif !important;
    font-weight: 900 !important;
    color: #fffcf1 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    line-height: 1.2 !important;
    margin-bottom: 0.1em !important;
  }
  .headline-line1 {
    margin-bottom: 0.1em;
  }
  .headline-line2 {
    margin-bottom: 0.15em;
  }
  .confirmation-message p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    color: #fffcf1 !important;
  }
} 

.course-cta {
  margin: 1.2rem auto 0 auto;
  max-width: 820px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
} 

.day-title {
  font-weight: 700 !important;
} 

.cta-side-text {
  color: #888;
  font-size: 1rem;
  margin-left: 1.2rem;
  align-self: center;
} 

.dark-mode .hamburger svg * {
  fill: #fff !important;
} 

/* Font smoothing for headers and nav for cross-browser consistency */
header, nav, .nav-links a, .nav-dropdown-menu a, h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
} 

.nav-links a:hover,
.nav-links a.active,
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  color: #ca0013;
} 

.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 0.1rem;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    opacity: 0.85;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero-scroll-cue:hover {
    opacity: 1;
}

.hero-scroll-cue svg {
    display: block;
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.18));
}

@keyframes hero-cue-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
} 

@media (max-width: 600px) {
    .btn-mission, .btn-mission-primary, .btn-main {
        font-size: 0.92rem;
        letter-spacing: 0.7px;
        padding: 0.7rem 1.2rem;
    }
} 

/* Override: Smaller Mission/Footer CTA Button Text & Spacing */
.btn-mission, .btn-mission-primary, .btn-main {
    font-size: 0.92rem !important;
    letter-spacing: 0.7px !important;
    padding: 0.7rem 1.2rem !important;
} 

#show-description .content.section-body,
#schedule .content.section-body,
#join .section-body,
#join .content.section-body {
    font-weight: 500;
    line-height: 1.7;
}

@media (max-width: 600px) {
#show-description .content.section-body,
#schedule .content.section-body,
#join .section-body,
#join .content.section-body {
    font-weight: 500;
    line-height: 1.7;
}
} 

.mission-modern-title,
.mission-modern-cta-title {
    text-transform: uppercase;
} 

@media (max-width: 900px) {
  .mission-modern-title,
  .mission-modern-cta-title {
    text-transform: uppercase !important;
  }
}

@media (max-width: 600px) {
  .mission-modern-title,
  .mission-modern-cta-title {
    text-transform: uppercase !important;
  }
} 

#show-hero h1,
#show-description h2,
#episodes .section-heading,
#schedule .section-heading,
#join .section-heading,
.show-title {
    font-size: 2.5rem !important;
}

@media (max-width: 600px) {
#show-hero h1,
#show-description h2,
#episodes .section-heading,
#schedule .section-heading,
#join .section-heading,
.show-title {
    font-size: 2rem !important;
}
} 

.start-here-card h3 {
    font-size: 1.75rem;
    font-family: 'Anton', 'Anton-Local', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    text-align: center;
}

@media (max-width: 600px) {
    .start-here-card h3 {
        font-size: 1.4rem;
    }
} 

/* Why It Matters Section */
.why-it-matters-section {
    background: #ca0013;
    min-height: 80vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
    margin-top: 0;
}

.why-it-matters-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 4rem 2rem;
    color: #fffcf1;
}

.why-it-matters-title {
    font-family: 'Anton', 'Anton-Local', sans-serif;
    font-size: 2.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    color: #fffcf1;
    line-height: 1.2;
}

.why-it-matters-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.7;
    color: #fffcf1;
    max-width: 700px;
    margin: 0 auto;
}

.why-it-matters-text p {
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.35rem;
}

.why-it-matters-text p:last-child {
    margin-bottom: 0;
}

/* Desktop-specific override for WHY IT ALL MATTERS text */
@media (min-width: 901px) {
    .why-it-matters-text {
        font-size: 1.35rem !important;
    }
    .why-it-matters-text p {
        font-size: 1.35rem !important;
    }
}

@media (max-width: 900px) {
    .why-it-matters-section {
        min-height: 70vh;
        margin-bottom: 3rem;
    }
    .why-it-matters-content {
        padding: 3rem 1.5rem;
    }
    .why-it-matters-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    .why-it-matters-text {
        font-size: 1.1rem;
        max-width: 95vw;
    }
}

@media (max-width: 600px) {
    .why-it-matters-section {
        min-height: 80vh;
        margin-bottom: 2.5rem;
    }
    .why-it-matters-content {
        padding: 2.5rem 1rem;
    }
    .why-it-matters-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
    }
    .why-it-matters-text {
        max-width: 98vw;
    }
    .why-it-matters-text p {
        margin-bottom: 1.2rem;
    }
} /* Production deployment ready */
