/*
Theme Name: R1017 Style Theme
Author: Emmanuel Eshun-Davies
Version: 1.0
Description: Lightweight, CMS-friendly theme with multiple pages
*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #dddddd;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: rgba(0,0,0,0.6);
}

.header a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
}

.container {
    padding: 120px 40px 40px;
}

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.grid img {
    width: 100%;
}

.footer {
    text-align: center;
    padding: 40px;
    font-size: 14px;
    opacity: 0.6;
}
