/* Homepage Unified Styling - Mobile First Approach */
/* Based on "See Real Stories in Action" design */

:root {
    /* Primary Orange Gradient like "See Real Stories in Action" */
    --orange-gradient: linear-gradient(135deg, #F7931A, #ff6b35);
    --orange-primary: #F7931A;
    --orange-secondary: #ff6b35;
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: rgba(255, 255, 255, 0.7);
    
    /* Font Settings */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --heading-weight: 700;
    --body-weight: 400;
    --semibold-weight: 600;
}

/* Global Typography Reset for Homepage */
.homepage-content {
    font-family: var(--font-family);
    color: var(--text-light);
}

/* Unified Heading Styles - Orange Gradient */
.homepage-content h1,
.homepage-content h2,
.homepage-content .h2,
.homepage-content h3,
.homepage-content .h3,
.homepage-content h4,
.homepage-content .h4,
.homepage-content .h5,
.hero-section h1 {
    font-weight: var(--heading-weight) !important;
    background: var(--orange-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.2;
    color: transparent !important;
}

/* Mobile-First Font Sizes */
.homepage-content h1,
.hero-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.homepage-content h2,
.homepage-content .h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.homepage-content h3,
.homepage-content .h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Body Text - White/Light */
.homepage-content p,
.homepage-content .lead,
.homepage-content .text-muted {
    color: var(--text-light);
    line-height: 1.6;
    font-weight: var(--body-weight);
}

.homepage-content p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.homepage-content .lead {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Strong Text - Orange */
.homepage-content strong {
    color: var(--orange-primary);
    font-weight: var(--semibold-weight);
}

/* Links - Orange with Hover */
.homepage-content a {
    color: var(--orange-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.homepage-content a:hover {
    color: var(--orange-secondary);
}

/* Section Spacing - Mobile First */
.homepage-section {
    padding: 3rem 1rem;
}

/* Desktop Section Enhancements */
@media (min-width: 992px) {
    .homepage-section {
        padding: 4rem 2rem;
    }
    
    .homepage-content .container {
        max-width: 1200px;
    }
    
    /* Enhanced heading sizes for desktop */
    .homepage-content h1,
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .homepage-content h2,
    .homepage-content .h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .homepage-content p {
        font-size: 1.1rem;
    }
    
    .homepage-content .lead {
        font-size: 1.3rem;
    }
}

/* Extra Large Screens */
@media (min-width: 1400px) {
    .homepage-section {
        padding: 5rem 3rem;
    }
    
    .homepage-content .container {
        max-width: 1400px;
    }
    
    /* Smooth hover transitions for all interactive elements */
    .homepage-content .btn,
    .homepage-content .card,
    .homepage-content a {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .homepage-content .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(247, 147, 26, 0.2);
        border-color: rgba(247, 147, 26, 0.4);
    }
}

/* Ultra-Wide Screens */
@media (min-width: 1920px) {
    .homepage-section {
        padding: 6rem 4rem;
    }
    
    .homepage-content .container {
        max-width: 1600px;
    }
    
    .homepage-content h1 {
        font-size: 4rem;
    }
    
    .homepage-content h2 {
        font-size: 3rem;
    }
}

/* Card Styles */
.homepage-content .card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(40, 40, 40, 0.95));
    border: 2px solid rgba(247, 147, 26, 0.2);
    border-radius: 1.5rem;
}

.homepage-content .card h2,
.homepage-content .card h3,
.homepage-content .card h4 {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Treasury Section Specific */
.treasury-section h2,
.treasury-section h4 {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.treasury-section p {
    color: var(--text-light);
}

.treasury-section .stat-value {
    color: var(--orange-primary) !important;
}

/* Bitcoin Price Widget */
.bitcoin-price-hero .price-value {
    color: var(--orange-primary) !important;
}

.bitcoin-price-hero .price-label {
    color: var(--text-light);
}

/* Success Stories Section */
.success-stories h2 {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-stories p {
    color: var(--text-light);
}

/* Feature Icons */
.homepage-content i[data-feather] {
    color: var(--orange-primary);
}

/* Buttons - Consistent Orange Gradient */
.homepage-content .btn-primary,
.homepage-content .btn-warning {
    background: var(--orange-gradient);
    border: none;
    color: white;
    font-weight: var(--semibold-weight);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.homepage-content .btn-primary:hover,
.homepage-content .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 147, 26, 0.3);
}

/* List Items */
.homepage-content ul li {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Tablet and Desktop Responsive Sizes */
@media (min-width: 768px) {
    .homepage-content h1,
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .homepage-content h2,
    .homepage-content .h2 {
        font-size: 2.25rem;
    }
    
    .homepage-content h3,
    .homepage-content .h3 {
        font-size: 1.75rem;
    }
    
    .homepage-content p {
        font-size: 1.1rem;
    }
    
    .homepage-content .lead {
        font-size: 1.25rem;
    }
    
    .homepage-section {
        padding: 4rem 2rem;
    }
}

@media (min-width: 992px) {
    .homepage-content h1,
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .homepage-content h2,
    .homepage-content .h2 {
        font-size: 2.5rem;
    }
    
    .homepage-section {
        padding: 5rem 2rem;
    }
}

/* Override any conflicting inline styles */
.homepage-content [style*="color: #F7931A"] {
    background: var(--orange-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}