/* ===========================
   GLOBAL STYLES
=========================== */

body {
    font-family: 'Inter', sans-serif;
    color: #212529;
    line-height: 1.7;
}

/* Colour variables */
:root {
    --primary: #0d6efd;   /* Bootstrap blue */
    --dark: #212529;
    --light: #f8f9fa;
    --soft-grey: #f2f4f7;
}

/* Section spacing */
section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Center section headings */
section h2 {
    text-align: center;
}

/* Center the lead paragraph in the hero section */
#hero p {
    text-align: center !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Center paragraphs in about and services sections */
#about p,
#services p {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Center subheadings in Services */
#services h4 {
    text-align: center;
}

/* Center headings for Why + Process */
#why h2,
#process h2 {
    text-align: center;
}

/* Center list items in Why */
#why ul {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Align process cards */
#process ol {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

h1, h2, h3, h4 {
    letter-spacing: -0.5px;
    font-weight: 700;
}

.lead {
    max-width: 700px;
    margin: 0 0 1rem 0;
}

/* ===========================
   HERO SECTION
=========================== */

#hero {
    background: var(--primary); !important;
    color: white;
    padding-top: 6rem;
    padding-bottom: 6rem;
    text-align: center;
}

#hero h1 {
    font-size: 2.8rem;
}

#hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.hero-img {
    max-width: 90%;
    border-radius: 10px;
}

/* ===========================
   ABOUT SECTION
=========================== */

#about {
    background: white;
}

#about p {
    max-width: 800px;
    margin-bottom: 1.2rem;
}

/* ===========================
   SERVICES SECTION
=========================== */

#services {
    background: var(--soft-grey);
}

#services h4 {
    font-weight: 600;
}

#services .card {
    border: none;
    border-radius: 10px;
}

#services .card-title {
    font-weight: 600;
}

#services .card-text {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ===========================
   WHY CHOOSE ME
=========================== */

#why ul li {
    font-size: 1.1rem;
}

.why-img {
    max-width: 90%;
    border-radius: 10px;
}

/* ===========================
   PROCESS SECTION
=========================== */

#process .list-group-item {
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
}

/* ===========================
   FOOTER
=========================== */

footer {
    background-color: var(--light);
    color: var(--dark);
    font-size: 0.9rem;
}

/* ===========================
   NAVBAR TWEAKS
=========================== */

.navbar-brand {
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary) !important;
}
