/*
Theme Name: Virtuous Vole
Theme URI: https://virtuousvole.com
Author: Eric Lane
Description: Custom WordPress theme for Virtuous Vole.
Version: 1.0
*/

/* --- Base Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    color: #222;
    line-height: 1.6;
}

/* --- Layout --- */
.site-header {
    background: #111;
    color: #fff;
    padding: 20px 0;
}

.header-inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    font-weight: bold;
}

.main-nav .nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav .nav-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.site-main {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
}

/* --- Hero Section --- */
.hero {
    background: #222;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #ff3366;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

/* --- Featured Content --- */
.featured-content {
    margin: 40px 0;
}

.featured-post {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* --- Games Section --- */
.games-section {
    text-align: center;
    margin: 60px 0;
}

.games-section .btn {
    padding: 12px 25px;
    background: #0077ff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

/* --- Footer --- */
.site-footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
