/* master-styles.css - Global/Shared CSS for Blue Ridge Ski & Outing Club */
/* Page-specific styles have been moved to individual CSS files */

/* ========================================
   1. GLOBAL RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main content wrapper to push footer down */
.main-content {
    flex: 1;
    margin-top: 80px; /* Account for fixed header */
}

/* ========================================
   2. HEADER STYLES
   ======================================== */
.header {
    background: #2c5aa0;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;    /* space-between; */
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo::before {
    content: "⛷";
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0 0 0 3rem;
    padding: 0;
    flex-grow: 1; 
}

.nav-menu li:last-child {
    margin-left: auto;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.nav-menu a.active {
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 0.25rem;
}

.join-btn {
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.join-btn:hover {
    background: #e55a2b;
}

/* Mobile menu button (for future implementation) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========================================
   3. FOOTER STYLES
   ======================================== */
.footer {
    background: #1a3a6b;
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: auto;
}

/* Three-column footer layout without newsletter */
.footer-three-column {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Left section - keep as is */
.footer-left {
    text-align: left;
}

/* Center section - centered alignment */
.footer-center {
    text-align: center;
}

.footer-center ul {
    display: inline-block;
    text-align: left;
}

/* Right section - right-aligned */
.footer-right {
    text-align: right;
}

.footer-right #contact-info {
    text-align: right;
}

.footer-right #contact-info p {
    margin-bottom: 0.5rem;
}

/* Update the generic footer-content rule to not interfere */
.footer-content:not(.footer-three-column) {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ff6b35;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: white;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #e55a2b;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #2c5aa0;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* ========================================
   4. HERO SECTIONS (Base Styles Only)
   ======================================== */
/* Ensure hero containers are properly positioned */
.hero, 
.page-hero,
.trip-details-hero,
.event-details-hero {
    position: relative;
    overflow: hidden;
    /* Add a minimum background color for loading state */
    background: linear-gradient(to right, #1a3a6b, #2c5aa0);
}

/* ========================================
   HERO BACKGROUND - PERSISTENT WASHOUT
   Update this in master-styles.css
   ======================================== */

/* Hero backgrounds with persistent washout */
.hero-background,
.page-hero-background,
.trip-details-hero-background,
.event-details-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Default to washout opacity - JavaScript will control the fade */
    opacity: 0.4;
    transition: opacity 0.6s ease-in-out;
}

/* If you want to remove the washout effect for specific pages, add this class */
.hero-background.no-washout,
.page-hero-background.no-washout,
.trip-details-hero-background.no-washout,
.event-details-hero-background.no-washout {
    opacity: 1;
}

/* The fade overlay for images - FASTER transition */
.hero-background-fade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* Reduced from 1.5s to 0.8s */
    pointer-events: none;
}

/* Ensure content stays above everything */
.hero-content,
.page-hero-content,
.trip-details-hero-content,
.event-details-hero-content,
.back-button,
.back-link,
.quick-info {
    position: relative;
    z-index: 10;
}

/* Optional: Add a subtle loading animation to the background */
@keyframes heroGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-background.loading,
.page-hero-background.loading {
    background: linear-gradient(-45deg, #1a3a6b, #2c5aa0, #1a3a6b, #2c5aa0);
    background-size: 400% 400%;
    animation: heroGradientShift 3s ease infinite;
}

/* Smooth fade-in for hero content - also faster */
.hero-content,
.page-hero-content {
    animation: fadeInUp 0.6s ease-out 0.2s backwards; /* Reduced from 0.8s to 0.6s */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Back Button */
.back-button {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.back-link {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 0.8;
}

/* ========================================
   5. COMMON BUTTONS & FORM ELEMENTS
   ======================================== */
.btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #2c5aa0;
    color: white;
    border: 2px solid white;
}

.btn-primary:hover {
    background: #1a3a6b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5aa0;
}

.btn-outline {
    background: white;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.btn-outline:hover {
    background: #2c5aa0;
    color: white;
}

.btn-orange {
    background: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-orange:hover {
    background: #e55a2b;
}

/* Large buttons for sidebars */
.btn-large {
    width: 100%;
    background: #ff6b35;
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-large:hover {
    background: #e55a2b;
}

/* Learn More Button */
.learn-more-btn {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s;
}

.learn-more-btn:hover {
    background: #1a3a6b;
}

/* ========================================
   6. CONTENT SECTIONS
   ======================================== */
.content-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Info Grid (used in detail pages) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-item span:first-child {
    font-size: 1.3rem;
}

.info-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.info-value {
    color: #666;
}

/* Loading State */
.loading {
    display: none;
    text-align: center;
    padding: 2rem;
    color: #666;
}

/* ========================================
   7. CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(rgba(44, 90, 160, 0.9), rgba(44, 90, 160, 0.9));
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   8. BADGE COMPONENTS
   ======================================== */
.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2c5aa0;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
}

.category-badge {
    background: #ff6b35;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* ========================================
   9. PHOTOS GRID
   ======================================== */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.photo-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s;
}

.photo-item:hover {
    transform: scale(1.05);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Generic Page Hero */
.page-hero {
    position: relative;
    height: 60vh;           /* Add viewport height like .hero */
    min-height: 400px;      /* Add minimum height like .hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(to right, #1a3a6b, #2c5aa0);
    overflow: hidden;
}

.page-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Social Links SVG Styling */
.social-links a svg,
.social-links-large a svg {
    fill: currentColor;
    transition: transform 0.3s;
}

.social-links a:hover svg,
.social-links-large a:hover svg {
    transform: scale(1.1);
}

/* Ensure SVGs fill the container properly */
.social-links a,
.social-links-large a {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   PRICE DISPLAY COMPONENTS
   ======================================== */
.price-display {
    font-weight: 700;
}

.price-amount {
    font-size: inherit;
}

.price-unit {
    font-size: 0.85em;
    font-weight: 400;
    color: #666;
    margin-left: 0.25rem;
}

.price-badge .price-unit {
    color: rgba(255, 255, 255, 0.9);
}

.price-display.large .price-amount {
    font-size: 2.5rem;
}

.price-display.large .price-unit {
    font-size: 1rem;
    display: block;
    margin-top: 0.25rem;
    margin-left: 0;
}

/* ==========================================
   MOBILE HEADER STYLES
   Add these to your master-styles.css file
   ========================================== */

/* Logo with emoji styling */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-emoji {
    font-size: 1.5rem;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}

/* Mobile menu button (hamburger) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white !important; /* Force white color */
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative; /* Ensure spans are positioned correctly */    
}

/* Hamburger animation when active */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Make sure spans don't collapse together */
.mobile-menu-btn span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: auto;
    bottom: auto;
}

.mobile-menu-btn span:nth-child(3) {
    bottom: 0;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile styles */
@media (max-width: 768px) {
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex !important;
        margin-left: auto;
    }
    
    /* Header adjustments */
    .header {
        padding: 1rem;
    }
    
    .nav-container {
        position: relative;
        justify-content: space-between;
    }
    
    /* Logo adjustments for mobile */
    /* .logo img {
        height: 35px;
    } */
    
    .logo-emoji {
        font-size: 1.25rem;
    }
    
    /* Navigation menu mobile styles */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    /* Show menu when active */
    .nav-menu.active {
        display: flex;
        right: 0;
    }
    
    /* Mobile menu items */
    .nav-menu li {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: #f0f7ff;
        color: white;
    }
    
    /* Join button mobile styles */
    .nav-menu .join-btn {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        background: #ff6b35;
        color: white;
    }
    
    .nav-menu .join-btn:hover {
        background: #e55a2b;
    }
    
    /* Overlay for mobile menu */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 80%;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* Add this to master-styles.css to fix the mobile menu button colors */

/* Mobile menu button - ensure white color on blue header */
.mobile-menu-btn span {
    background-color: white; /* Changed from #333 to white */
}

/* Add this to master-styles.css to prevent Join Now button from wrapping */

/* Prevent word wrap on Join button */
.join-btn {
    white-space: nowrap;
    flex-shrink: 0; /* Prevents the button from shrinking */
}

/* Reduce gap between items on medium screens */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-menu {
        gap: 1.5rem; /* Reduced from 2rem */
    }
    
    .join-btn {
        padding: 0.5rem 0.75rem; /* Slightly smaller padding */
    }
}

/* Make font slightly smaller on smaller medium screens */
@media (max-width: 900px) and (min-width: 769px) {
    .nav-menu a {
        font-size: 0.95rem;
    }
    
    .join-btn {
        font-size: 0.9rem;
    }
}

/* Ensure the button shows on mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
    }
}

/* Fix text colors in mobile menu for better visibility */
@media (max-width: 768px) {
    .nav-menu a {
        color: #2c5aa0; /* Blue text on white background */
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: #1a3a6b;
        color: #f0f7ff; /* Darker blue on hover */
    }
}

/* Dark mode support - already exists but ensure it works */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
    .mobile-menu-btn span {
        background-color: #fff; /* Keep white in dark mode */
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    /* .logo img {
        height: 30px;
    } */
    
    .logo-emoji {
        font-size: 1rem;
    }
    
    .mobile-menu-btn {
        width: 25px;
        height: 20px;
    }
    
    .mobile-menu-btn span {
        /* height: 2px; */
        background-color: white;
    }
    
    .nav-menu {
        width: 85%;
        padding: 70px 1.5rem 1.5rem;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
    }
}

/* Dark mode support for mobile menu button */
@media (prefers-color-scheme: dark) {
    .mobile-menu-btn span {
        background-color: #fff;
    }
    
    .nav-menu {
        background: transparent;
        color: #fff;
    }
    
    .nav-menu a {
        color: #fff;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: rgba(44, 90, 160, 0.2);
        color: white;
    }
}

/* ========================================
   10. RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 968px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    /* Footer responsive adjustments */
    .footer-three-column {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-left {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-center,
    .footer-right {
        text-align: left;
    }
    
    .footer-center ul {
        text-align: left;
    }
    
    .footer-right #contact-info {
        text-align: left;
    }
    
    .footer-left .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Header/Navigation */
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Hero Sections */
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Content Sections */
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-three-column {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-center,
    .footer-right,
    .footer-center ul,
    .footer-right #contact-info {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

.nav-menu .updates-indicator-dot {
    display: inline-block;
    position: absolute;
    top: 4px;
    right: 0px;
    width: 10px;
    height: 10px;
    background: #ff3232;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff;
    z-index: 2;
    pointer-events: none;
    animation: updatesDotPulse 1.3s infinite alternate;
}
@keyframes updatesDotPulse {
    0% { box-shadow: 0 0 0 2px #fff, 0 0 0 0 rgba(255,50,50,0.7);}
    100% { box-shadow: 0 0 0 2px #fff, 0 0 8px 5px rgba(255,50,50,0.35);}
}

@media (max-width: 768px) {
    .nav-menu {
        background: #fff !important;        /* Light mode: solid white */
    }
}
@media (max-width: 768px) and (prefers-color-scheme: dark) {
    .nav-menu {
        background: #1a3a6b !important;     /* Dark mode: solid blue */
        color: #fff;
    }
}

/* Updates menu urgent indicator dot */
.nav-menu .updates-indicator-dot {
    display: inline-block;
    position: absolute;
    top: 4px;
    right: 0px;
    width: 10px;
    height: 10px;
    background: #ff3232;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff;
    z-index: 2;
    pointer-events: none;
    animation: updatesDotPulse 1.3s infinite alternate;
}

@keyframes updatesDotPulse {
    0% { 
        box-shadow: 0 0 0 2px #fff, 0 0 0 0 rgba(255,50,50,0.7);
    }
    100% { 
        box-shadow: 0 0 0 2px #fff, 0 0 8px 5px rgba(255,50,50,0.35);
    }
}

/* Footer Updates link with indicator */
#footer-nav .updates-indicator-dot {
    display: inline-block;
    margin-left: 5px;
    width: 8px;
    height: 8px;
    background: #ff3232;
    border-radius: 50%;
    vertical-align: middle;
    animation: updatesDotPulse 1.3s infinite alternate;
}