/**
 * Yaman-IT theme – Brand Identity Guidelines
 * Primary Dark Blue #124f77, Accent Blue #36acd8, Dark Neutral #353535
 * Typography: Helvetica (body), Helvetica Bold (headings)
 */

:root {
    --yaman-primary: #124f77;
    --yaman-accent: #36acd8;
    --yaman-primary-dark: #0e3d5a;
    --yaman-accent-hover: #2d9bc4;
    --yaman-neutral: #353535;
    --yaman-font: Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--yaman-font);
    color: var(--yaman-neutral);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--yaman-font);
    font-weight: bold;
}

/* Navbar */
.navbar {
    box-shadow: 0 1px 2px rgba(18, 79, 119, 0.06);
}

.navbar-brand .yaman-logo-nav {
    height: 2.2rem;
    width: auto;
}

.nav-link {
    color: var(--yaman-primary) !important;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--yaman-accent) !important;
}

/* Hero */
.hero {
    padding-top: 6rem;
}

.yaman-logo-hero {
    max-width: 320px;
    height: auto;
    width: 100%;
}

@media (min-width: 768px) {
    .yaman-logo-hero {
        max-width: 400px;
    }
}

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

/* Buttons – Bootstrap override with theme colors */
.btn-primary {
    background-color: var(--yaman-primary);
    border-color: var(--yaman-primary);
}

.btn-primary:hover {
    background-color: var(--yaman-primary-dark);
    border-color: var(--yaman-primary-dark);
}

/* Text primary = dark blue */
.text-primary {
    color: var(--yaman-primary) !important;
}

.text-secondary {
    color: var(--yaman-neutral) !important;
}

/* Intro band – primary blue background, white text */
.intro-band {
    background-color: var(--yaman-primary);
    color: #fff;
}

.intro-band__title {
    color: #fff !important;
    font-weight: bold;
}

.intro-band__lead {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Service cards */
.service-card {
    border-radius: 0.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card .card-body {
    text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1.5rem rgba(18, 79, 119, 0.12) !important;
}

/* Service cards – single-color Bootstrap Icons */
.service-icon {
    font-size: 2.25rem;
    line-height: 1;
    color: var(--yaman-primary);
}

.service-icon .bi {
    font-size: inherit;
}

/* Form focus */
.form-control:focus,
.btn:focus {
    border-color: var(--yaman-accent);
    box-shadow: 0 0 0 0.2rem rgba(54, 172, 216, 0.25);
}

.form-label {
    color: var(--yaman-primary);
    font-weight: bold;
}

/* Footer */
footer.bg-primary {
    background-color: var(--yaman-primary) !important;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Optional: anchor offset for fixed navbar */
section[id] {
    scroll-margin-top: 80px;
}
