
/* ============================================
   MODERN OVERRIDES - 2026 Job Search Edition
   ============================================ */

/* Global font upgrade */
body, p, li, input, textarea, select {
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.welcome-content h1,
.welcome-content h2 {
    font-family: 'Inter', sans-serif;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.hero-photo {
    flex-shrink: 0;
}

.hero-photo-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.25);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.hero-photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-text {
    text-align: left;
    max-width: 520px;
}

.hero-badge-available {
    display: inline-block;
    background: rgba(39,174,96,0.9);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
    backdrop-filter: blur(4px);
    line-height: 1.4;
}

.hero-text h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    letter-spacing: -1.5px;
    margin: 0 0 8px;
    line-height: 1.1;
}

.hero-text h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    opacity: 0.85;
    margin: 0 0 16px;
}

.hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-tags span {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(4px);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    backdrop-filter: blur(4px);
}

.hero-btn-linkedin {
    background: #0077b5;
    box-shadow: 0 4px 15px rgba(0,119,181,0.4);
}

.hero-btn-ghost {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
}

/* ============================================
   Other Overrides
   ============================================ */

/* About section headings */
.about-text h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-text h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #555;
}

.about-text h4 span {
    font-weight: 600;
}

.about-text p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 14px;
}

/* Nav improvements */
.navbar-default {
    font-family: 'Inter', sans-serif;
}

.navbar-default .navbar-nav > li > a {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.8px;
}

/* Section headings */
.title h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Fun facts / counts bar */
.fun-fact .timer {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.fun-fact .medium {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Testimonial cards */
.testimonial-items .item {
    border-radius: 8px;
}

/* ============================================
   Mobile (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    /* Hero centering */
    .hero-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 20px 15px;
    }

    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-tags {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-photo-circle {
        width: 180px;
        height: 180px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    /* Keep scroll arrow visible but below buttons */
    .welcome-banner .arrow-down a {
        bottom: 20px;
    }

    .hero-inner {
        padding-bottom: 80px;
    }

    /* Fix iOS scroll jank */
    .bg-fixed {
        background-attachment: scroll;
    }
}
