/* Updated styles.css for Ore's Glow website */

body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    background: url('assets/soft-brown-cream.gif') no-repeat center center fixed;
    background-size: cover;
    color: #3d1f14;
}

h1, h2, h3, h4, h5, h6, nav, header {
    font-family: 'Playfair Display', serif;
}

h1 {
    color: #f5e3d2;
}

p, li, span, a, div {
    font-family: 'Georgia', serif;
}

header {
    background-color: #3e2723;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.logo-container {
    flex: 0 0 auto;
}

.title-container {
    flex: 1;
    text-align: center;
}


header img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f5e3d2;
    transition: transform 0.3s ease;
}

.logo:hover {
    content: url('assets/oresglow-logo-hover.gif');
    transform: scale(1.1);
}

header img:hover {
    transform: scale(1.1);
}

nav {
    text-align: center;
    margin-bottom: 2rem;
}

nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: #5c2a1d;
    font-weight: bold;
}

nav a:hover {
    color: #9c5b40;
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    overflow: hidden;
}

footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #7a4a3a;
}

/* Placeholder page styles */
.placeholder {
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
    color: #5c2a1d;
}
