/* ==========================================
   HERO SECTION – FINAL CLEAN VERSION
   (Yahoo-style plain background)
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    /* Fallback flat color (important) */
    
	 background-color: #F6C86A;

    /* CRITICAL */
    background-image: none !important;
}

/* Background Container */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Plain Background Image */
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url("/images/yahoo-bg.png"); /* <-- your plain image */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    opacity: 1;              /* MUST be 1 for flat color */
    z-index: 1;
}

/* Very Light Soft Overlay (Optional – Yahoo style) */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.04); /* ultra subtle */
    z-index: 2;
}

/* Hero Overlay Container */
.hero-overlay {
    position: relative;
    width: 100%;
    max-width: 1400px;
    z-index: 3;
    padding: 2rem;
}

/* Hero Content */
.hero-content {
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.95;
}

/* CTA Button */
.btn-orange {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c00);
    color: #ffffff;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.35);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        min-height: 80vh;
    }
}

@media (max-width: 768px) {
    .hero-overlay {
        padding: 1.5rem;
    }

    .btn-orange {
        padding: 0.9rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 70vh;
    }

    .hero-overlay {
        padding: 1rem;
    }
}
/* Footer marquee (right to left) */
.footer-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: transparent;
}

.footer-marquee span {
    display: inline-block;
    padding-left: 100%;
    color: yellow;
    font-weight: 500;
    animation: footerScroll 15s linear infinite;
}

/* Right ➜ Left animation */
@keyframes footerScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Pause on hover (optional but nice) */
.footer-marquee:hover span {
    animation-play-state: paused;
}
