/* PKPJ Consulting Custom Styles */

/* Color Palette */
:root {
    --pkpj-navy: #0A192F;
    --pkpj-navy-light: #0E2A47;
    --pkpj-orange: #F58A3C;
    --pkpj-light-gray: #cccccc;
}

body {
    background-color: var(--pkpj-navy);
    color: var(--pkpj-light-gray);
}

/* General Typography */
.title {
    color: white;
}

.subtitle {
    color: var(--pkpj-light-gray);
}

/* Bulma Overrides */
.navbar {
    transition: background-color 0.3s ease-in-out;
}

.navbar.is-scrolled {
    background-color: var(--pkpj-navy);
}

.navbar.is-transparent {
    background-color: transparent;
}

.navbar-item, .navbar-burger {
    color: white;
}

.navbar-item:hover {
    background-color: #00000020;
    color: white;
}

.navbar-brand > .navbar-item {
    color: var(--pkpj-orange);
}

.button.is-primary {
    background-color: var(--pkpj-orange);
    border-color: transparent;
}

.button.is-primary:hover {
    background-color: #ff9d57;
}

.section.has-background-light {
    background-color: #363636 !important; /* Dark Gray */
    color: white !important;
}

/* Logo */
.navbar-item .pkpj-logo {
    max-height: 80px;
}

/* Hero Section */
.hero {
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.7); /* Navy overlay */
}

.hero .hero-body {
    position: relative; /* To bring it in front of the overlay */
    z-index: 2;
}

/* Services Section */
.box {
    height: 100%;
    background-color: var(--pkpj-navy-light);
    color: var(--pkpj-light-gray);
}

/* Why Choose Us Section */
.media + .media {
    margin-top: 2rem;
}

/* Process Section */
.process-step {
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--pkpj-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-steps .column:not(:last-child) .process-step::after {
    content: '';
    position: absolute;
    top: 25px; /* Vertically center with the number circle */
    right: -50%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background-color: #dbdbdb; /* Bulma's border color */
    z-index: -1;
}

@media screen and (max-width: 768px) {
    .process-steps .column:not(:last-child) .process-step::after {
        display: none;
    }
}

@media screen and (min-width: 769px) {
    .is-vcentered-desktop {
        align-items: center;
    }
}

/* Card Overrides for Dark Theme */
.card {
    background-color: var(--pkpj-navy-light);
}

.card .title,
.card .subtitle {
    color: white;
}

.card .subtitle {
    color: var(--pkpj-light-gray);
}

/* --- Services Page Styles --- */
.service-icon {
    height: 5rem;
    width: 5rem;
    margin-bottom: 1.5rem;
    color: var(--pkpj-orange);
}

.content ul {
    display: inline-block;
    text-align: left;
}

/* Footer */
.footer {
    background-color: var(--pkpj-navy);
    color: var(--pkpj-light-gray);
}

.footer .title {
    color: var(--pkpj-orange);
}

.footer ul li p strong {
    color: var(--pkpj-orange);
}

.footer a {
    color: var(--pkpj-light-gray);
}

.footer a:hover {
    color: var(--pkpj-orange);
}

.footer hr {
    background-color: #cccccc40;
}