/* ===== Global Styles ===== */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    background-color: wheat;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* ===== Header ===== */
header h1 {
    color: #d35400; /* orange */
    font-size: 36px;
    margin: 20px 0;
    font-style: italic;
}

header .subtitle {
    font-size: 18px;
    color: #c0392b;
    margin-bottom: 15px;
}

/* ===== Navigation ===== */
nav p a {
    text-decoration: none;
    color: #c0392b;
    margin: 0 15px;
    font-weight: bold;
}

nav p a:hover {
    color: #e67e22;
    text-decoration: underline;
}

/* ===== Project Description ===== */
#project-description {
    margin: 10px auto;
    width: 80%;
    font-size: 18px;
    color: #555;
}

/* ===== Sections ===== */
section {
    border: 2px solid #f39c12;
    padding: 25px;
    margin: 20px auto;
    width: 80%;
    background-color: #fff3e0;
    border-radius: 10px;
}

/* ===== Headings ===== */
h2 {
    color: #c0392b;
    font-size: 28px;
    margin-bottom: 15px;
}

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

ul li {
    margin: 8px 0;
    font-size: 16px;
}

/* ===== Gallery ===== */
.gallery-images img {
    width: 180px;
    height: auto;
    margin: 8px;
    border-radius: 8px;
    border: 2px solid #c0392b;
}

/* ===== Forms ===== */
input[type="text"], input[type="email"], textarea {
    width: 80%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #c0392b;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #d35400;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

input[type="submit"]:hover {
    background-color: #e67e22;
}

/* ===== Footer ===== */
footer {
    margin-top: 30px;
    padding: 15px;
    background-color: #f39c12;
    color: white;
    font-weight: bold;
}

/* ===== Responsive (Optional for Future) ===== */
@media only screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
    nav p a {
        display: block;
        margin: 8px 0;
    }
    section {
        width: 95%;
        padding: 15px;
    }
    .gallery-images img {
        width: 100%;
        height: auto;
    }
}
