/* ===================================
   Helmet — Site Styles
   =================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    font-size: 12px;
    line-height: 18px;
    display: flex;
    justify-content: left;
    align-items: flex-start;
    min-height: 100vh;
    padding-top: 100px;
}

/* --- Layout --- */
.container {
    text-align: left;
    max-width: 1000px;
    padding-left: 50px;
    padding-right: 50px;
    width: 100%;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding-top: 30px;
    padding-left: 50px;
    padding-bottom: 15px;
    margin-bottom: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

nav ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

nav ul li a:hover {
    color: #727f94;
}

nav ul li a.active {
    color: #727f94;
}

/* --- Typography --- */
h1 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

h2 {
    color: #000000;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 10px;
}

p {
    margin-bottom: 16px;
}

/* --- Links --- */
a {
    color: #727f94;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --- Lists --- */
ul.works-list {
    list-style-type: none;
    padding: 0;
}

ul.works-list li {
    margin-bottom: 12px;
    line-height: 15px;
}

/* --- Images --- */
.page-image {
    max-width: 100%;
    margin-bottom: 20px;
}

.page-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Footer --- */
.footer {
    text-align: left;
    color: #FF0000;
    font-size: 14px;
    font-weight: bold;
    margin-top: 100px;
    margin-bottom: 60px;
}

/* --- Contact --- */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 10px;
}

/* --- Responsive --- */
@media (max-width: 480px) {
    body {
        padding-top: 80px;
    }

    nav {
        padding-top: 20px;
        padding-left: 20px;
        padding-bottom: 10px;
    }

    nav ul {
        gap: 15px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
