/*
==========================================================

Hexterika Cyberlab

index.css

Purpose:
Homepage-specific styling.

Contains:
- Homepage branding
- Welcome section
- Why Choose Me section
- CTA section
- Homepage images

Global reusable styles belong in:
assets/css/base.css

==========================================================
*/


/* ======================================================
1. Homepage Hero
====================================================== */

.hc-home-hero {
    max-width: 960px;
    margin-inline: auto;
    padding: 4rem 1rem 3rem;
    text-align: center;
}

.hc-home-hero h1 {
    margin: 0 0 1rem;
    color: #00FF9D;
    font-size: clamp(2.3rem, 6vw, 4.5rem);
    line-height: 1.05;
}

.hc-home-hero p {
    max-width: 900px;
    margin: 0.75rem auto;
    color: #d7dbe4;
    line-height: 1.7;
}

.hc-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ======================================================
2. About Section
====================================================== */

.hc-home-about {
    max-width: 960px;
    margin: 0 auto 1.5rem;
    padding: 2rem 1.5rem;
    background: #11172a;
    border: 1px solid #2a3658;
    border-radius: 14px;
}

.hc-home-about__image {
    display: block;
    width: min(12rem, 45vw);
    height: auto;
    margin: 0 auto 2rem;
    border-radius: 20%;
}

.hc-home-about__content {
    max-width: 760px;
    margin-inline: auto;
}

.hc-home-about h2 {
    margin: 0 0 1rem;
    color: #e6e9f0;
    text-align: center;
}

.hc-home-about p {
    margin: 0;
    color: #a8afc0;
    line-height: 1.7;
    text-align: left;
}

.hc-home-about p + p {
    margin-top: 1rem;
}


/* ======================================================
3. Why Choose Hexterika Cyberlab
====================================================== */

.hc-home-why {
    max-width: 960px;
    margin: 0 auto 1.5rem;
    padding: 2rem 1.5rem;
    background: #11172a;
    border: 1px solid #2a3658;
    border-radius: 14px;
}

.hc-home-why h2 {
    margin: 0 0 1.5rem;
    color: #e6e9f0;
    text-align: center;
}

.hc-home-why__list {
    display: grid;
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    gap: 1rem;
    text-align: left;
}

.hc-home-why__list li {
    position: relative;
    padding-left: 1.75rem;
    color: #a8afc0;
    line-height: 1.7;
}

.hc-home-why__list li::before {
    position: absolute;
    left: 0;
    color: #00FF9D;
    font-weight: 700;
    content: "✓";
}

.hc-home-why__list a {
    color: #00FF9D;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.hc-home-why__list a:hover {
    color: #66ffc5;
}


/* ======================================================
4. Call-To-Action (CTA)
====================================================== */

.hc-home-cta {
    max-width: 960px;
    margin: 0 auto 2rem;
    padding: 2rem 1.5rem;
    background: #11172a;
    border: 1px solid #2a3658;
    border-radius: 14px;
    text-align: center;
}

.hc-home-cta h2 {
    margin: 0 0 0.75rem;
    color: #e6e9f0;
}

.hc-home-cta p {
    max-width: 700px;
    margin: 0 auto;
    color: #a8afc0;
    line-height: 1.7;
}

.hc-home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/*
Do not redesign this component unless intentionally
creating a new version.
This is the canonical homepage CTA button.
*/

.button-cta {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #00FF9D;
    border-radius: 5px;
    color: black;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button-cta:hover {
    background-color: red;
}


/* ======================================================
   5. Homepage Utilities
====================================================== */

/*
Reserved for homepage-only helper classes.

Do not place reusable utility classes here.
Reusable utilities belong in base.css.
*/
