/* ========================= */
/* styles.css                */
/* ========================= */

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

body {
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #0f0a1a;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 0, 0, 0.65) 100%
    );*/
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 40px 24px;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #fbbf24;
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.6), 0 2px 20px rgba(0,0,0,0.9);
    margin-bottom: 20px;
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: #f1f5f9;
    margin-bottom: 50px;
    line-height: 1.8;
    text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

.hero-paths {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.path-btn {
    background: rgba(15, 23, 42, 0.75);
    color: #fbbf24;
    border: 2px solid #fbbf24;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 12px rgba(251,191,36,0.15);
}

.path-btn:hover {
    background: #fbbf24;
    color: #0f172a;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 28px rgba(251,191,36,0.4);
}

.primary {
    background: #f59e0b;
    color: #0f172a;
}

.primary:hover {
    background: #fbbf24;
    transform: translateY(-2px);
}

.outline {
    border: 2px solid #f59e0b;
    color: #f59e0b;
}

.outline:hover {
    background: #f59e0b;
    color: #0f172a;
}

/* ---- SECTIONS ---- */
section {
    padding: 90px 24px;
    max-width: 1060px;
    margin: 0 auto;
    text-align: center;
}

.about {
    border-bottom: 1px solid #1e293b;
}

.about h2,
.features h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 28px;
    color: #fbbf24;
}

.about p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 18px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.about-choices {
    color: #fbbf24;
    font-weight: 600;
}

/* ---- FEATURE CARDS ---- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 20px;
}

.card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(251, 191, 36, 0.15);
    padding: 36px 28px;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 12px 36px rgba(0,0,0,0.4), 0 0 16px rgba(251,191,36,0.1);
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 14px;
}

.card p {
    color: #94a3b8;
    font-size: 1rem;
}

/* ---- FOOTER ---- */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #1e293b;
    color: #475569;
    font-size: 0.9rem;
}
