/* assets/css/custom.css */

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F8FAFC;
    color: #1F2937;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Poppins', sans-serif;
}

/* Glassmorphism Sticky Header */
.glass-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    transition: all 0.3s ease-in-out;
}

/* Primary Button Styling */
.btn-primary {
    background-color: #2563EB;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.25);
}
.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.35);
}

/* CTA Green Button */
.btn-cta {
    background-color: #22C55E;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px 0 rgba(34, 197, 94, 0.3);
}
.btn-cta:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(34, 197, 94, 0.4);
}

/* Soft Cards & Shadows */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.08);
}

/* Pulse animation for Live Hiring badge */
@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}
.live-pulse {
    animation: pulse-ring 2s infinite ease-in-out;
}

/* Multi-step progress line */
.step-line {
    height: 4px;
    background: #E5E7EB;
    flex-grow: 1;
    position: relative;
    border-radius: 2px;
}
.step-line-active {
    background: #2563EB;
}

/* Print Resume Stylesheet */
@media print {
    body * {
        visibility: hidden;
    }
    #printable-resume, #printable-resume * {
        visibility: visible;
    }
    #printable-resume {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        padding: 20px;
        box-shadow: none !important;
        border: none !important;
    }
    .no-print {
        display: none !important;
    }
}
