/**
 * Welcome / Landing page styles – Pensult branding
 * Brand colors: red #E53935, orange #FFA726, blue #03A9F4
 */
.welcome-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a202c;
}

/* Nav */
.welcome-nav {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: #fff !important;
}

.welcome-nav .navbar-brand {
    font-size: 1.35rem;
    display: inline-flex;
    align-items: center;
    color: #03A9F4 !important;
}
.welcome-nav .navbar-brand .pensult-nav-logo {
    height: 36px;
    width: auto;
    margin-right: 10px;
}

.welcome-nav .nav-link {
    color: #4a5568 !important;
    font-weight: 500;
}

.welcome-nav .nav-link:hover {
    color: #03A9F4 !important;
}

.welcome-nav .btn-primary {
    background-color: #03A9F4;
    border-color: #03A9F4;
}
.welcome-nav .btn-primary:hover {
    background-color: #0288D1;
    border-color: #0288D1;
}

/* Hero – Pensult gradient (blue, orange, red accents) */
.welcome-hero {
    background: linear-gradient(135deg, #E3F2FD 0%, #FFF3E0 50%, #FFEBEE 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.min-vh-75 {
    min-height: 75vh;
}

.welcome-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
}

.welcome-hero-lead {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 28em;
}

.welcome-hero-illustration {
    width: 100%;
    max-width: 320px;
    height: 260px;
    margin: 0 auto;
    background: linear-gradient(145deg, #fff 0%, #f7fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
}

.welcome-hero-illustration .pensult-hero-logo {
    max-width: 200px;
    height: auto;
    max-height: 180px;
}

.welcome-hero-icon {
    font-size: 5rem;
    opacity: 0.9;
}

/* Buttons – Pensult blue/orange */
.welcome-hero .btn-primary {
    background-color: #03A9F4;
    border-color: #03A9F4;
}
.welcome-hero .btn-primary:hover {
    background-color: #0288D1;
    border-color: #0288D1;
}
.welcome-hero .btn-outline-primary {
    color: #03A9F4;
    border-color: #03A9F4;
}
.welcome-hero .btn-outline-primary:hover {
    background-color: #03A9F4;
    color: #fff;
}
.welcome-cta .btn-primary {
    background-color: #03A9F4;
    border-color: #03A9F4;
}
.welcome-cta .btn-primary:hover {
    background-color: #0288D1;
    border-color: #0288D1;
}

.d-flex.gap-2 .btn { margin-right: 0.5rem; margin-bottom: 0.5rem; }

/* Sections */
.welcome-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.welcome-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.welcome-section-lead {
    font-size: 1.05rem;
    max-width: 36em;
    margin-left: auto;
    margin-right: auto;
}

/* Feature cards */
.welcome-features .welcome-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.welcome-features .welcome-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08) !important;
}

.welcome-card-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* CTA */
.welcome-cta .welcome-section-title {
    margin-bottom: 0.5rem;
}

/* Footer */
.welcome-footer {
    background: #f7fafc;
    color: #4a5568;
}

.welcome-footer a:hover {
    color: #03A9F4 !important;
}

/* Feature card accents – Pensult palette */
.welcome-card-icon.bg-primary { background-color: #03A9F4 !important; }
.welcome-card-icon.bg-warning { background-color: #FFA726 !important; }
.welcome-card-icon.bg-info { background-color: #03A9F4 !important; }
