/* =========================================
   YOUREPORTS.COM - MARKETING PAGES
   Homepage and marketing-specific styles
   ========================================= */

/* CSS Variables - Marketing Palette */
:root {
    --color-deep-red: #8b2c2c;
    --color-charcoal: #2a2e32;
    --color-grey-section: #545454;
    --color-grey-blue: #476b93;
    --color-warm-brown: #755940;
    --color-bold-yellow: #ffc107;
    --color-cream: #fff7e4;
    --color-light-grey: #f5f5f5;
    --color-off-white: #fafafa;
    
    --hero-min-height: 75vh;
    --section-padding: 4rem;
}

/* Typography Base */
body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: #2d2d2d;
    font-size: 1.125rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

/* Sticky Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(42, 46, 50, 0.97);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.site-header .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: white !important;
    text-decoration: none;
}

.site-header .navbar-brand .highlight {
    color: var(--color-bold-yellow);
}

.site-header .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-header .nav-link:hover {
    color: var(--color-bold-yellow) !important;
}

.header-cta {
    background: var(--color-bold-yellow) !important;
    color: #000 !important;
    border-radius: 50px;
    padding: 0.5rem 1.25rem !important;
    font-weight: 600 !important;
}

.header-cta:hover {
    background: #ffdb4d !important;
    color: #000 !important;
}

/* Hero Section */
.hero-section {
    min-height: var(--hero-min-height);
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, var(--color-charcoal) 0%, #3d4248 50%, var(--color-grey-section) 100%);
    color: white;
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.hero-headline {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--color-bold-yellow);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.divider-light {
    background: rgba(255, 255, 255, 0.4);
}

/* Compact Birth Form */
.birth-form-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    margin-top: 2rem;
}

.birth-form-card h3 {
    color: var(--color-charcoal);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.birth-form-card .form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.birth-form-card .form-control,
.birth-form-card .form-select {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.birth-form-card .form-control:focus,
.birth-form-card .form-select:focus {
    border-color: var(--color-bold-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.btn-primary-custom {
    background: var(--color-bold-yellow);
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
    background: #ffdb4d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.35);
    color: #000;
}

/* Content Sections */
.section {
    padding: var(--section-padding) 0;
}

.section-white { background: white; }
.section-cream { background: var(--color-cream); }
.section-light-grey { background: var(--color-light-grey); }
.section-charcoal { background: var(--color-charcoal); color: white; }

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    font-weight: 600;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.95;
}

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

/* Feature Cards */
.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-card .icon {
    font-size: 3rem;
    color: var(--color-grey-blue);
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

/* Footer */
.site-footer {
    background: var(--color-charcoal);
    color: rgba(255,255,255,0.8);
    padding: 2rem 0;
    font-size: 0.9rem;
}

.site-footer a {
    color: var(--color-bold-yellow);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.site-footer a:hover {
    opacity: 0.8;
}

.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.site-footer .footer-divider {
    opacity: 0.3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    :root {
        --section-padding: 2.5rem;
    }
    
    .hero-section {
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 2rem;
    }
    
    .birth-form-card {
        padding: 1.5rem;
    }
    
    .site-header .navbar-nav {
        background: rgba(42, 46, 50, 0.95);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .birth-form-card h3 {
        font-size: 1.25rem;
    }
    
    .btn-primary-custom {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
    
    .site-footer .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Utility Classes */
.text-highlight {
    background: var(--color-bold-yellow);
    color: #000;
    padding: 0.1em 0.4em;
    border-radius: 3px;
    font-weight: 500;
}

.mt-header {
    margin-top: 70px;
}
