body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff; /* White background */
    color: #d32f2f; /* Red text */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
}

header {
    background-color: #ff6f00; /* Orange */
    color: #d32f2f; /* Red text */
    padding: 1rem;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

nav ul li a {
    color: #d32f2f; /* Red text */
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: #ff6f00; /* Orange accent on hover */
}

main {
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
}

footer {
    background-color: #ff6f00; /* Orange */
    color: #d32f2f; /* Red text */
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 2rem;
    border-top: 2px solid #d32f2f; /* Red accent border */
}

h1, h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #ff6f00; /* Orange for headings */
}

p, ul, li, .project p {
    color: #d32f2f; /* Red text */
}

.about-container, .projects-container, .news-container, .contact-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #fff3e0; /* very light orange background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 111, 0, 0.08);
}

.gallery {
    display: flex;
    gap: 30px;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.project img {
    width: 350px;
    height: auto;
    border: 3px solid #ff6f00; /* Orange border */
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(255, 111, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s;
}

.project img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 111, 0, 0.18);
}

.project p {
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    color: #d32f2f; /* Red text */
}

button, .btn {
    background-color: #ff6f00;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
}
button:hover, .btn:hover {
    background-color: #d32f2f;
}

a {
    color: #ff6f00;
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: #d32f2f;
}
