/* HireHub Home Stylesheet */

/* Layout & Containers */
.container-custom {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: auto;
}

.text-center {
    text-align: center;
}

/* Sections */
.hero-section {
    background-color: #1e3a8a; /* bg-blue-900 */
    color: #ffffff;
    padding-top: 3rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.advantage-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #f9fafb; /* bg-gray-50 */
}

.cta-section {
    background-color: #0f172a; /* bg-slate-900 */
    color: #ffffff;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    overflow: hidden;
}

/* Typography */
.hero-title {
    font-size: 3rem; /* text-5xl */
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem; /* text-xl */
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.section-title {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    color: #4b5563;
}

.card-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.cta-main-title {
    font-size: 3rem; /* md:text-7xl adjusted for readability */
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1; /* text-slate-300 */
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.text-orange {
    color: #f97316; /* text-orange-500 */
}

.text-muted {
    color: #4b5563; /* text-gray-600 */
}

/* Components */
.advantage-card {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    background: #ffffff;
}

.icon-wrapper {
    margin-bottom: 1rem;
}

.flex-center-gap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .flex-center-gap {
        flex-direction: row;
    }
}

.hire_top_talent {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 2rem;
}

.hire_top_talent:hover {
    color: orange !important;
    border-color: orange !important;
    text-decoration: none;
}

.join_the_network {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.join_the_network:hover {
    color: orange !important;
    border-color: orange !important;
    text-decoration: none;
}