/*
Theme Name: Consulting 
Version: 1.0
*/

:root {
    --primary-blue: #023e8a;
    --light-blue: #0077b6;
    --silver-gradient: linear-gradient(45deg, #F5F7FA, #B8C6DB);
    --gray: #dddddd;
    --gray-gradient: linear-gradient(#dddddd ,#d3d3d3);
    --silver: #F5F7FA;
    --text-dark: #333;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Monsterrat, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Navigation */
nav {
    background-color: var(--primary-blue);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--silver);
}

.nav-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    color: var(--silver);
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--silver);
    border-bottom: 1px solid var(--silver);
}

/* Hero Section */
#home {
    background: var(--light-blue);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

#home p {
    font-size: 1.2rem;
    max-width: 1300px;
    margin: 20px auto;
    text-align: center;
}

#home p::first-letter {
    font-size: 2rem;
    font-weight: bold;
}

.btn {
    display: inline-block;
    background: var(--silver);
    color: var(--text-dark);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--primary-blue);
    color: var(--silver);
    box-shadow:
        inset 0.2em 0.2em var(--silver),
        inset -0.2em -0.2em var(--silver);
}

/* Sections */
section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: auto;
}

h2 {
    color: var(--light-blue);
    border-bottom: 3px solid var(--text-dark);
    display: inline-block;
    margin-bottom: 30px;
}

.bg-light {
    background: var(--gray-gradient);
    background-size: cover;
    max-width: 100%;
    box-shadow: 0 0 0.1em 0.2em var(--gray);
}

/* Grid layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-left: 5px solid #0e1111;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* About Page Styles */
.bio-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 20px;
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: var(--silver);
    text-align: center;
    padding: 40px 20px;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul { display: none; } /* Simplified for example */
    .bio-section { flex-direction: column; }
}
