@charset "UTF-8"

/* Main Stylesheet for Southern Royalty 
   Author: Sheldene Gardner
   Description: Controls the layout, colors and grid structure for Southern Royalty website.*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: light gray;
}

/* Header */
header {
    background: navy;
    color: white;
    padding: 25px;
    text-align: center;
}
header h1{
    margin: 0;
    font-size: 2.5rem;
}

nav ul {
    list-style-type: none;
    padding: 10px;
    margin: 0;
    background: navy;
    text-align: center;
}
nav li {
    display: inline-block;
    margin-right: 20px;

 
nav a {
    color: white;
    margin: 0 30px;
    text-decoration: none;
    font-weight: bold;
}

/* Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr; /* Left | Center | Right */
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 20px;
}

/* Left Column */
.bio {
    background: white;
    padding: 15px;
    border-radius: 8px;
}
.reviews {
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    background: white;
    color: dark blue;
    border: none;
    border-radius: 5px;
    position: fixed;
    bottom: 20px;
    left: 20px;
}
aside {
    background-color: light gray;
    padding: 15px;
    border: 2px solid gray;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 4px 4px 10px black;
}


/* Center Column */
.pictures {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.pic-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

/* Right Column */
.contact {
    color: dark blue;
    padding: 10px;
    border-radius: none;
    background: white;
    position: fixed;
    bottom: 20px;
    right: 20px;   
}
/* Footer */
footer {
    background: dark-blue;
    color: white;
    padding: 20px;
    text-align: center