@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-VariableFont_wdth\,wght.ttf');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans Regular';
    src: url('../fonts/OpenSans-VariableFont_wdth\,wght.ttf');
    ;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans Bold';
    src: url('../fonts/OpenSans-VariableFont_wdth\,wght.ttf');
    font-style: normal;
    font-display: swap;
}

/* ================================================= */
/* 1. Global Reset and Variables */
/* ================================================= */
:root {
    --color-primary: #008000;
    /* Deep Green (Trust, Nature, Growth) */
    --color-secondary: #00ffff;
    /* Gold/Yellow (Excellence, Attention) */
    --color-dark: #2c3e50;
    /* Dark Blue/Charcoal (Professionalism) */
    --color-light: #f4f6f9;
    /* Off-White/Light Gray (Cleanliness) */
    --color-text: #333;

    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-light);
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    margin-bottom: 0.5em;
}

/* ================================================= */
/* 2. Header and Navigation (from Footer structure) */
/* ================================================= */

header {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 1em 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
}

.container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.heading {
    display: flex;
    justify-content: space-between;
}

.c-logo-name {
    display: flex;
    justify-content: space-between;
}

.c-name {
    height: 50px;
    line-height: 1.5;
    margin-left: .5rem;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--color-secondary);
}

.logo a {
    text-decoration: none;
}

nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

nav ul a {
    color: var(--color-light);
    text-decoration: none;
    padding: 0.5em 1em;
    transition: color 0.3s;
}

nav ul a:hover {
    color: var(--color-secondary);
}

.menu-toggle {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

.close-menu {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 101;
        /* for depth i.e. element with higehr positive z-index appears infront on another with less positive z-index */
    }

    .nav-menu-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        flex-direction: column;
        background-color: #2c3e50;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right .3s ease-in-out;
        z-index: 100;
    }

    /* For JavaScript Control */

    body.no-scroll {
        overflow: hidden;
    }

    /* When the Menu List is active pullit to the inside the Screen to the left */
    /* From -100 on the right of the screen to 0 towards the left of the screen */
    .nav-menu-list.active {
        right: 0;
    }

    /* When the Menu List is active DON'T Diplay The Menu Icon */
    .nav-menu-list.active .menu-toggle .open-menu,
    .menu-toggle.active .open-menu {
        display: none;
    }

    /* When the Menu List is active Diplay The Close Icon */
    .nav-menu-list.active .menu-toggle .close-menu,
    .menu-toggle.active .close-menu {
        display: block;
    }

    .for-socials {
        display: flex;
        flex-direction: column;
        gap: 1em;
    }
}


/* ================================================= */
/* 3. Hero Section (First Impression) */
/* ================================================= */

#hero {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)),
        url('../images/on_stairs.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 6em 20px;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#hero h1 {
    color: white;
    font-size: 3em;
    margin-bottom: 0.2em;
}

#hero h3 {
    color: white;
    font-size: 1.2em;
    margin-bottom: 1.5em;
    max-width: 37.5rem;
}

.inquire-button button {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    padding: 0.8em 2em;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s;
    border: none;
}

.inquire-button button:hover {
    background-color: #006400;
}

/* ================================================= */
/* 4. Services Overview Section */
/* ================================================= */
.outlets {
    padding-bottom: 2rem;
}

.call-center {
    margin-top: 2rem;
    font-weight: bold;
}

#about-overview {
    padding-top: 2rem;
}

.outlets a {
    text-decoration: none;
    color: var(--color-text);
}

.outlet-cards {
    display: flex;
    gap: 1.875rem;
    margin-top: .5em;
}

.outlet-card {
    flex: 1;
    background-color: white;
    padding: 2em;
    border-radius: .5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    border-top: 4px solid var(--color-primary);
}

.outlet-card h3 {
    color: var(--color-primary);
}

.calling-to-action::before {
    content: " ➡️ ";
}

.calling-to-action {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: bold;
}

footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    margin-top: 2rem;
}

.main-footer {
    display: flex;
    justify-content: space-between;
    gap: 1.875rem;
    padding: 3em 0;
}

.main-footer a {
    text-decoration: none;
    color: var(--color-light);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--color-secondary);
}


.footer-col {
    flex: 1;
    text-align: center;
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1.2em;
    margin-bottom: 1em;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 0.5em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5em;
    text-align: left;
}

.for-socials a {
    margin-right: 15px;
}

.bottom-bar {
    background-color: #1e2a36;
    text-align: center;
    padding: 1em 0;
    font-size: 0.85em;
}

.bottom-bar a {
    color: var(--color-light);
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.5s;
}

.bottom-bar a:hover {
    border-bottom: .5px solid var(--color-secondary);
    padding-bottom: 0.3em;

}

