/* RESET & BASIC STYLING */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    height: 100%;
}

body {
    min-height: 100vh;

    font-family: 'YourCustomFont', sans-serif;
    line-height: 1.6;

    background: url("images/background1.jpg") no-repeat center center;
    background-size: cover;

    color: #ffffff;
    text-align: center;
}

/* HEADER */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2em;
}

/* NAV */
nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
}

/* HERO */
.hero {
    margin-bottom: 40px;
}

.hero h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

/* FEATURED WORK GRID */
.featured .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.featured article {
    background: rgba(0, 0, 0, 0.45); /* subtle contrast */
    padding: 20px;
    flex: 1 1 300px;
    max-width: 320px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.featured h4 {
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    margin-top: 60px;
    font-size: 0.9em;
    color: #dddddd;
}

/* MOBILE */
@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 8px;
    }

    .featured .grid {
        flex-direction: column;
        align-items: center;
    }
}

.mailing-list {
  max-width: 420px;
  margin: 80px auto;
  text-align: center;
}

.mailing-list input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  font-size: 16px;
}

.mailing-list button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
}

.mailing-list button {
  background-color: #222222;
  color: #ffffff;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}


