@charset "utf-8";
/* Main Styles for Basement Squirrel Games Website */

/* General Styles */
body {
    font-family: 'Helvetica', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.bg-image {
    background-image: url('../background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

/* Header Styles */
.site-header {
    padding: 15px 0;
}

/* Menu Styles */
.menu-container {
    position: relative;
    display: inline-block;
}

.menu-image {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.menu-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: white;
    min-width: 150px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 4px;
    padding: 10px 0;
}

.menu-container:hover .menu-content {
    display: block;
}

.menu-content a {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.menu-content a:hover {
    background-color: #f1f1f1;
    color: #8A0002;
}

/* Content Box */
.content-box {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.2em;
    color: #333;
}

h2 {
    font-size: 1.8em;
    color: #444;
}

p {
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-box {
        padding: 15px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.5em;
    }
}