/* Basic styling for Whispers of the Forgotten Player Hub */

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #f4f0ec;
    background-image: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
    background-repeat: repeat;
    color: #2c2c2c;
    margin: 0;
    padding: 0;
}

header {
    background-color: #5d3a00;
    color: white;
    padding: 20px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav a:hover {
    color: #d2b48c;
    text-shadow: 1px 1px 6px #5d3a00;
}


main {
    min-height: 80vh; /* Minimum 80% of the screen height */
    padding: 20px;
}

footer {
    background-color: #5d3a00;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    margin-top: 50px;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    color: #3b2f2f;
    text-shadow: 1px 1px 2px #aaa;
    margin-top: 30px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    color: #f8f4e6;
    text-shadow: 
        2px 2px 4px #5d3a00, 
        4px 4px 8px #3b2f2f;
    border-bottom: 2px solid #5d3a00;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
h2 {
    font-size: 2.2rem;
    border-bottom: 1px solid #5d3a00;
    padding-bottom: 6px;
}

h3 {
    font-size: 1.7rem;
}

.divider {
    border: none;
    height: 2px;
    background: linear-gradient(to right, #5d3a00, #d2b48c, #5d3a00);
    margin: 40px 0;
    width: 100%;
    align-self: center;
}