/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #111;
    color: #fff;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8rem;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: auto;
}

#logo {
    font-size: 1.4rem;
    font-weight: bold;
}

/* NAVIGATION */
.nav {
    display: flex;
    gap: 1.2rem;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
}

.nav a:hover {
    color: #f4c10f;
}

/* HAMBURGER MENU */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background: #fff;
}

/* OVERLAY */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 900;
}

/* HERO SECTION */
#hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url("_images/Skillz_Domain_Banner.png") center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

#hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

/* SECTIONS */
section {
    padding: 3rem 1.5rem;
    max-width: 1000px;
    margin: auto;
}

#about-h2 a {
    color: #111;
    text-decoration: none;
}

section h2 {
    margin-bottom: 1rem;
    color: #111;
}

#services ul {
    list-style: disc;
    padding-left: 1.5rem;
}

#services li {
    margin-bottom: 0.5rem;
}
#kinds-of-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-around;
}

/* FOOTER */
footer {
    background: #111;
    color: #fff;
    padding: 2rem 1.5rem;
    text-align: center;
}

footer a {
    color: #f4c10f;
    text-decoration: none;
}

footer hr {
    margin: 1.5rem 0;
    border-color: #333;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: #111;
        flex-direction: column;
        padding: 4rem 1.5rem;
        transition: right 0.3s ease;
        z-index: 1001;
    }

    .nav.active {
        right: 0;
    }

    .overlay.active {
        display: block;
    }
}
