/* Main Street Alliance Healthcare Premium Microsite Styles - Billboard Style */

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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #000000, #2d1b1b, #000000);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - Billboard Layout */
.main-header {
    position: relative;
    height: 650px;
    overflow: hidden;
    background: linear-gradient(135deg, #000000, #2d1b1b, #000000);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.billboard-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    height: 100%;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.billboard-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    height: 100%;
}

.image-container {
    background: linear-gradient(45deg, #1a1a1a, #2d1b1b);
    border: 3px solid #ffd700;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 500px;
    overflow: hidden;
}

.van-orden-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transform: scale(1.1);
    z-index: 3;
    position: relative;
}

.billboard-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.billboard-headline {
    margin-bottom: 20px;
}

.main-headline {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0;
}

.highlight-name {
    color: #ffd700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 0 0 20px rgba(255, 215, 0, 0.6);
    font-size: 1.1em;
    position: relative;
}

/* Removed underline styling for highlight-name */

.billboard-message {
    color: #ffffff;
}

.main-message {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.accusation {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffd700;
}

.accusation strong {
    color: #ff0000;
    text-decoration: underline;
}

.source {
    font-size: 1rem;
    color: #cccccc;
    font-style: italic;
    margin-top: 10px;
}

.billboard-cta {
    margin-top: 20px;
}

.cta-text-simple {
    display: inline-block;
}

.cta-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.4rem;
    margin-right: 10px;
}

.cta-url {
    color: #ff0000;
    font-weight: 700;
    font-size: 1.4rem;
    text-decoration: none;
}

/* Countdown Section */
.countdown-section {
    background: linear-gradient(135deg, #000000, #2d1b1b);
    padding: 80px 0;
    text-align: center;
    border-top: 3px solid #ffd700;
    border-bottom: 3px solid #ffd700;
}

.countdown-section h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.countdown-clock {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border: 3px solid #ffffff;
    border-radius: 10px;
    padding: 25px 20px;
    min-width: 140px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    animation: glow 3s infinite alternate;
    position: relative;
}

@keyframes glow {
    0% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.6); }
    100% { box-shadow: 0 0 35px rgba(255, 215, 0, 0.8); }
}

.countdown-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #000000;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.3);
    font-family: 'Arial', sans-serif;
}

.countdown-label {
    display: block;
    font-size: 1.1rem;
    color: #000000;
    margin-top: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-text {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

/* Calculator Section */
.calculator-section {
    background: linear-gradient(135deg, #2d1b1b, #000000);
    padding: 80px 0;
    text-align: center;
}

.calculator-section h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.calculator {
    background: linear-gradient(45deg, #1a1a1a, #2d1b1b);
    border: 3px solid #ffd700;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.input-group {
    margin-bottom: 25px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: bold;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border: 2px solid #ffd700;
    border-radius: 10px;
    background: #000000;
    color: #ffffff;
}

#calculate-btn {
    background: linear-gradient(45deg, #ff0000, #ffd700);
    color: #000000;
    border: none;
    padding: 25px 50px;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 15px;
    cursor: pointer;
    margin: 30px 0;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

#calculate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
}

.result {
    background: linear-gradient(45deg, #ff0000, #ffd700);
    border: 3px solid #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    display: none;
}

.result h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 700;
}

.result p {
    font-size: 1.2rem;
    color: #000000;
    margin: 10px 0;
    font-weight: 600;
}

.annual-cost {
    font-size: 1.4rem !important;
    font-weight: 700;
    color: #000000 !important;
}

.disclaimer {
    font-size: 0.9rem !important;
    color: #ffffff !important;
    font-style: italic;
    margin-top: 15px;
    text-align: center;
}

/* Research Section */
.research-section {
    background: linear-gradient(135deg, #000000, #2d1b1b);
    padding: 80px 0;
}

.research-section h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.research-card {
    background: linear-gradient(45deg, #1a1a1a, #2d1b1b);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.research-card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.research-card p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.6;
}

.source {
    font-size: 0.9rem;
    color: #cccccc;
    font-style: italic;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #2d1b1b, #000000);
    padding: 80px 0;
}

.testimonials-section h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: linear-gradient(45deg, #1a1a1a, #2d1b1b);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.placeholder-photo {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000000;
    flex-shrink: 0;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffd700;
    flex-shrink: 0;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: bold;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #000000, #2d1b1b);
    padding: 100px 0;
    text-align: center;
    border-top: 3px solid #ffd700;
    border-bottom: 3px solid #ffd700;
}

.cta-section h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.cta-text {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.donate-btn,
.action-btn {
    display: inline-block;
    padding: 25px 50px;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.donate-btn {
    background: linear-gradient(45deg, #ff0000, #ffd700);
    color: #000000;
    border: 3px solid #ffffff;
}

.action-btn {
    background: linear-gradient(45deg, #ffd700, #ffffff);
    color: #000000;
    border: 3px solid #ff0000;
}

.donate-btn:hover,
.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.urgency-text {
    font-size: 1.2rem;
    color: #ffd700;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.scary-footer {
    background: #000000;
    padding: 30px 0;
    text-align: center;
    border-top: 3px solid #ffd700;
}

.scary-footer p {
    color: #ffffff;
    font-size: 0.9rem;
}

/* Responsive Design - Complete Rebuild */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .billboard-container {
        max-width: 1400px;
        gap: 60px;
    }
    
    .image-container {
        width: 450px;
        height: 550px;
    }
    
    .main-headline {
        font-size: 4rem;
    }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .billboard-container {
        gap: 40px;
    }
    
    .image-container {
        width: 380px;
        height: 480px;
    }
    
    .main-headline {
        font-size: 3.2rem;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .main-header {
        height: 600px;
    }
    
    .billboard-container {
        flex-direction: column;
        gap: 25px;
        padding: 30px 20px;
        text-align: center;
    }
    
    .image-container {
        width: 300px;
        height: 380px;
        padding: 20px;
    }
    
    .van-orden-photo {
        object-fit: cover;
        object-position: center top;
        transform: scale(1.0);
    }
    
    .billboard-right {
        align-items: center;
        padding: 0;
    }
    
    .main-headline {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .main-message {
        font-size: 1.5rem;
    }
    
    .accusation {
        font-size: 1.4rem;
    }
    
    .countdown-section h2,
    .calculator-section h2,
    .research-section h2,
    .testimonials-section h2 {
        font-size: 3rem;
    }
    
    .cta-section h2 {
        font-size: 3.5rem;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .main-header {
        height: 650px;
    }
    
    .billboard-container {
        flex-direction: column;
        gap: 20px;
        padding: 25px 15px;
        text-align: center;
    }
    
    .image-container {
        width: 260px;
        height: 330px;
        padding: 15px;
    }
    
    .van-orden-photo {
        object-fit: cover;
        object-position: center top;
        transform: scale(1.0);
    }
    
    .billboard-right {
        align-items: center;
        padding: 0;
        gap: 20px;
    }
    
    .billboard-headline {
        margin-bottom: 15px;
    }
    
    .billboard-message {
        margin-bottom: 15px;
    }
    
    .main-headline {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .main-message {
        font-size: 1.3rem;
    }
    
    .accusation {
        font-size: 1.2rem;
    }
    
    .countdown-section h2,
    .calculator-section h2,
    .research-section h2,
    .testimonials-section h2 {
        font-size: 2.5rem;
    }
    
    .cta-section h2 {
        font-size: 3rem;
    }
    
    .countdown-clock {
        gap: 12px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 12px 8px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.9rem;
    }
    
    .calculator {
        padding: 25px;
    }
    
    #calculate-btn {
        padding: 18px 35px;
        font-size: 1.3rem;
    }
    
    .testimonial {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .donate-btn,
    .action-btn {
        width: 100%;
        max-width: 280px;
        padding: 18px 35px;
        font-size: 1.3rem;
    }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .main-header {
        height: 700px;
    }
    
    .billboard-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px 10px;
        text-align: center;
    }
    
    .image-container {
        width: 220px;
        height: 280px;
        padding: 12px;
    }
    
    .van-orden-photo {
        object-fit: cover;
        object-position: center top;
        transform: scale(1.0);
    }
    
    .billboard-right {
        align-items: center;
        padding: 0;
        gap: 15px;
    }
    
    .billboard-headline {
        margin-bottom: 12px;
    }
    
    .billboard-message {
        margin-bottom: 12px;
    }
    
    .main-headline {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .main-message {
        font-size: 1.1rem;
    }
    
    .accusation {
        font-size: 1rem;
    }
    
    .source {
        font-size: 0.8rem;
    }
    
    .countdown-section h2,
    .calculator-section h2,
    .research-section h2,
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
    
    .countdown-clock {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px 6px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .countdown-text {
        font-size: 1.4rem;
    }
    
    .calculator {
        padding: 20px;
    }
    
    .input-group label {
        font-size: 1rem;
    }
    
    .input-group input,
    .input-group select {
        padding: 12px;
        font-size: 1rem;
    }
    
    #calculate-btn {
        padding: 15px 30px;
        font-size: 1.2rem;
    }
    
    .result {
        padding: 20px;
    }
    
    .result h3 {
        font-size: 1.5rem;
    }
    
    .result p {
        font-size: 1rem;
    }
    
    .research-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .research-card,
    .testimonial {
        padding: 20px;
    }
    
    .testimonial {
        flex-direction: column;
        text-align: center;
    }
    
    .placeholder-photo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .donate-btn,
    .action-btn {
        width: 100%;
        max-width: 250px;
        padding: 15px 30px;
        font-size: 1.2rem;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }
    
    .urgency-text {
        font-size: 1rem;
    }
}
