/*
 Theme Name: Seventh Gate
 Author: Geoff Greenwood
 Description: Custom theme for Seventh Gate’s esoteric library
 Version: 1.0
 */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

/* Frontend-specific styles */
.site-front body {
    background: #2A1A3D; /* Darker Plum from screenshot */
    color: #F5E8C7; /* Ivory text */
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

.site-front .header {
    background: #000 url('path/to/header.png') repeat; /* Add starry/dot pattern image */
    color: #D4AF37; /* Gold text */
    padding: 20px 0;
    position: relative;
}

.site-front .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1; /* Ensure text is above background pattern */
}

.site-front .site-title {
    text-align: center;
    margin: 0;
    font-size: 2.5em;
    text-transform: uppercase;
}

.site-front .site-title a {
    color: #D4AF37;
    text-decoration: none;
}

.site-front .nav {
    text-align: right;
    margin-top: 10px;
}

.site-front .nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-front .nav-menu li {
    display: inline;
    margin-left: 20px;
}

.site-front .nav-menu a {
    color: #D4AF37 !important;
    text-decoration: none !important;
    font-size: 1.1em;
}

.site-front .nav-menu a:hover {
    color: #F5E8C7 !important;
}

.site-front .content {
    background: #fff; /* White content area */
    color: #3F2A5D; /* Plum text */
    padding: 20px;
    margin: 0 auto;
    max-width: 800px;
    border: 2px solid #D4AF37; /* Gold border */
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5); /* Subtle Gold shadow */
}

.site-front .footer {
    background: #2A1A3D; /* Darker Plum */
    color: #F5E8C7;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.site-front .footer a {
    color: #D4AF37 !important;
}

.site-front .footer a:hover {
    color: #F5E8C7 !important;
}