/* =========================
   GENERAL
   ========================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #f5f6f7;
}


/* =========================
   HEADER
   ========================= */

header {
    background-color: #111827;
    color: white;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 1.5rem;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #f59e0b;
}


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

#home {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding: 80px 8%;

    background-color: #1f2937;
    color: white;
}

#home h2 {
    font-size: 3.5rem;
    max-width: 800px;
    margin-bottom: 20px;
}

#home p {
    font-size: 1.25rem;
    max-width: 650px;
    margin-bottom: 35px;
    color: #d1d5db;
}

#home a {
    display: inline-block;

    background-color: #f59e0b;
    color: #111827;

    padding: 14px 28px;

    text-decoration: none;
    font-weight: bold;

    border-radius: 4px;
}

#home a:hover {
    background-color: #fbbf24;
}


/* =========================
   SECTIONS
   ========================= */

section {
    padding: 80px 8%;
}

section h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
}


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

#services {
    background-color: white;
}

#services h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 5px;
}

#services p {
    max-width: 700px;
    color: #555;
}


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

#about {
    background-color: #e5e7eb;
}

#about p {
    max-width: 750px;
    font-size: 1.1rem;
}


/* =========================
   CONTACT
   ========================= */

#contact {
    background-color: white;
}

#contact p {
    margin-bottom: 10px;
}


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

footer {
    background-color: #111827;
    color: #9ca3af;
    text-align: center;
    padding: 25px;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {

    header {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    #home h2 {
        font-size: 2.5rem;
    }

    section {
        padding: 60px 6%;
    }
}
