/**
 * Home Page Styles - Minimal Modern Design
 * Styles for the minimal home page with hero and education sections
 */

/* ==========================================================================
   Minimal Hero Section
   ========================================================================== */

.minimal-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0f172a;
    overflow: hidden;
}

.minimal-hero__background {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.minimal-hero__background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.minimal-hero__inner {
    position: relative;
    z-index: 10;
    padding: 2rem 1.5rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.minimal-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.minimal-hero__title {
    font-family: var(--font-sans);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

.minimal-hero__subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}

.minimal-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.minimal-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 0 0 0 rgba(251, 191, 36, 0);
}

.minimal-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.2),
        0 4px 6px -2px rgba(0, 0, 0, 0.1),
        0 0 0 4px rgba(251, 191, 36, 0.2);
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
}

.minimal-hero__cta:active {
    transform: translateY(0);
}

.minimal-hero__cta-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.minimal-hero__cta:hover .minimal-hero__cta-icon {
    transform: translateX(4px);
}

/* ==========================================================================
   Education Section
   ========================================================================== */

.education-section {
    padding: 5rem 0;
    background-color: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.education-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 0 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.education-section__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.education-section__title {
    font-family: var(--font-sans);
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.education-section__description {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.education-section__actions {
    display: flex;
    justify-content: center;
}

.education-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}

.education-section__cta:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
}

.education-section__cta:active {
    transform: translateY(0);
}

.education-section__cta-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.education-section__cta:hover .education-section__cta-icon {
    transform: translateX(3px);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (min-width: 768px) {
    .minimal-hero {
        min-height: 65vh;
    }

    .minimal-hero__content {
        gap: 2.5rem;
    }

    .education-section {
        padding: 6rem 0;
    }

    .education-section__inner {
        gap: 3rem;
    }
}
