/* =========================
   GENERAL BODY STYLE
========================= */
body {
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* =========================
   HERO SECTION
========================= */
#hero {
    position: relative;
    width: 100%;
    height: 80vh;
    background-image: url('images/hero.jpeg'); /* your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* dark overlay for readability */
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 90%;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-content .cta-btn {
    padding: 1rem 2rem;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
}

.hero-content .cta-btn:hover {
    background-color: #ff4b4b;
}

/* =========================
   SECTIONS (Problem, Solution, Market)
========================= */
section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

section p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* =========================
   CTA BUTTONS
========================= */
.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
    margin-top: 20px;
}

.cta-btn:hover {
    background-color: #ff4b4b;
}

/* =========================
   RESPONSIVE STYLING
========================= */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.3rem;
    }
    section h2 {
        font-size: 2rem;
    }
    section p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 70vh;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    section {
        padding: 50px 15px;
    }
    .cta-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
/* =========================
   FOOTER
========================= */
#footer {
    background-color: #333; /* dark background for contrast */
    color: white;
    padding: 40px 20px;
    text-align: center;
}

#footer a {
    color: #ff6b6b; /* brand accent color */
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}

#footer a:hover {
    color: #ff4b4b;
}

.footer-content p {
    margin: 10px 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    #footer {
        padding: 30px 15px;
    }
    .footer-content p {
        font-size: 0.85rem;
    }
}