/* =========================
   Front Page Styling
========================= */

/* ===== Hero Section ===== */
.hero-section {
    padding: 60px 20px;
    background: transparent;
    text-align: center;
}

.hero-section .hero-box {
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 80px 30px;
    border-radius: 24px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-section .cta-button {
    background: #ff5a5f;
    color: #ffffff;
    padding: 15px 36px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    transition: background 0.3s ease;
}

.hero-section .cta-button:hover {
    background: #e14c50;
}

/* ===== Sections ===== */
.products-section {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

/* ===== Mobile Fix ===== */
@media (max-width: 768px) {
    .hero-section .hero-box {
        padding: 60px 20px;
        border-radius: 18px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1.05rem;
    }
}
