html {
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 22px;
}

body {
    /*background-color: #FFFFFF;*/
    background-color: #e6f0e1;
    /*background-color: #424242;*/
    /*background-image: url("full-bloom.png");*/
    /*background-image: url("assets/symphony.png");*/
    margin: 0;
    padding: 0;
}


.feedImage {
    margin: 50px 0 0 0;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

img {
    cursor: pointer;
}

a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 0 20px 0 0;
}
a:link {
    color: #9E9E9E;
}
a:visited {
    color: #9E9E9E;
}
a:hover {
    color: white;
}
a:active {
    color: white;
}
a.currentPage {
    color: white;
}
a.white {
    color: royalblue;
}
.gridItem {
    /*border: solid 1px red;*/
}

#mainGrid {
    display: grid;
    /*grid-template-columns: auto 50vw auto;*/
    grid-template-columns: auto 900px auto;
    /*grid-template-rows: 70px auto 70px;*/
    grid-template-rows: 70px minmax(90vh, auto) 70px;
}

#logo {
    display: inline;
    margin: 0 230px 0 0;
}

#navLogo {
    /*display: inline;*/
    margin: 0 120px 0 0;
}

#mainContent {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
    color: black;
    /*border: solid 1px red;*/
}

#topNav {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 1;
    align-self: center;
    /*justify-self: center;*/
}

#bottomNav {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
    align-self: center;
    justify-self: center;
    color: #BDBDBD;
    font-size: 12px;
}

#topBar {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 1;
    background-color: #000000;
}

#bottomBar {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 3;
    background-color: #212121;
}

#leftBar {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 4;
}

#rightBar {
    grid-column-start: 3;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 4;
}


/* --- Contact Form Styling --- */

#contactForm {
    display: flex;
    flex-direction: column;
    max-width: 500px; /* Limits the width so it stays neat on big screens */
    margin-top: 30px;
}

.formGroup {
    margin-bottom: 20px;
}

/* Styles both the email input and message box */
#contactForm input[type="email"],
#contactForm textarea {
    width: 100%;
    box-sizing: border-box; /* Prevents padding from breaking layout width */
    padding: 12px 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background-color: #ffffff;
    border: 2px solid #bdbdbd;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Gives the input field room to expand naturally */
#contactForm textarea {
    min-height: 150px;
    resize: vertical; /* Allows users to resize height, but not break width */
}

/* Smooth visual cue when selecting fields */
#contactForm input[type="email"]:focus,
#contactForm textarea:focus {
    border-color: #212121;
    box-shadow: 0 0 5px rgba(33, 33, 33, 0.1);
}

/* Style for the button */
#submitBtn {
    align-self: flex-start; /* Keeps the button tight on the left instead of stretching */
    background-color: #212121;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

/* Darkens on hover to feel like an interactive UI element */
#submitBtn:hover {
    background-color: #000000;
}