/*

---------------------------------------
Author: cjclarke
Date: 2024/10/26
Updated: 2024/11/17
Purpose: style sheet for Sarville.com author's website
---------------------------------------

*/

body {
    background-image: url(../images/starryBackground.jpg);
    background-repeat: repeat;
    background-attachment: fixed;

}

/*Eliminate padding from bootstrap navbar class*/
.navbar {
    padding: 0;
}

.backgroundColor {
    background-color: #dddddd;
}

.logo {
    width: 250px;
}

.bigScreenNav {
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
}

.navigation a {
    color: white;
    text-decoration: none;
    background-color: black;
    padding: 10px;
    border-radius: 40px;
}

.navigation a:hover {
    color: black;
    text-decoration: none;
    background-color: white;
    padding: 10px;
    border-radius: 40px;
}

/*Easier to custom override background color than modify the various bootstrap vars*/
.pageHere {
    background-color: #c9af2a !important;
}

ul {
    padding: 0;
    margin: 0;
}

.navigation {
    list-style-type: none;
    width: 100%;
}

.navigation li {
    font-family: "Playwrite DE Grund", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1em;
    margin: auto;
    white-space: nowrap;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/*Adjusted text color for the bootstrap carousel*/
.carousel-dark .carousel-caption {
    color: #fff;
}

.clearSpace {
    height: 30px;
}

.headings {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
}

.gothicFirstLetter {
    float: left;
    padding-top: 8px;
    font-size: 50px;
    font-family: "New Rocker", system-ui;
    font-weight: 400;
    font-style: normal;
}

.fixLeftQuotes {
    font-family: "Roboto", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    line-height: 20px;
    float: left;
}

.blurb p {
    font-family: "Roboto", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
}

.myLink a {
    color: black;
    text-decoration: none;
}

.myLink a:hover {
    color: dimgray;
    text-decoration: none;
}

.previewLink a {
    color: black;
    text-decoration: none;
    font-size: 30px;
    margin-top: 55px;
}

.previewLink a:hover {
    color: dimgray;
    text-decoration: none;
    font-size: 30px;
    margin-top: 55px;
}

/*Following containers and gradient apply to the book preview mechanic*/
.previewContainer {
    height: 433px;
    width: 300px;
}

.previewImage {
    width: 300px;
}

.previewBox {
    height: 433px;
    width: 300px;
    padding: 10px;
    border: 3px solid black;
}

.continueBox {
    height: 100px;
    width: 294px;
    margin-left: 3px;
    margin-top: 330px;
}

.myGradient {
    background-image: linear-gradient(to bottom, rgba(221, 221, 221, 0), rgba(221, 221, 221, 1));
}

/*Change background color of offcanvas to match theme*/
.offcanvas {
    background-color: #dddddd !important;
}

.tableContentsLinks a {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: black;
    text-decoration: none;
}

.tableContentsLinks a:hover {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: dimgray;
    text-decoration: none;
}

.tableContentsLinks {
    list-style-type: upper-roman;
}

/*Changed button values to match theme*/
.btn {
    font-family: "Playwrite DE Grund", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1em;
    margin: auto;
    white-space: nowrap;
    color: white;
    text-decoration: none;
    background-color: black;
    padding: 10px;
    border-radius: 40px;
    border: none;
}

/*Adjusted button hover values to match theme*/
.btn:hover {
    color: black;
    background-color: white;
}

/*Table cell background color overrides*/
.blue {
    background-color: #65b4cf !important;
}

.yellow {
    background-color: #c9af2a !important;
}

.grey {
    background-color: #a5a5a5 !important;
}

.sarvilleUniverse {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.sarvilleUniverseSmall {
    font-family: "Playwrite DE Grund", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 0.75em;
}

.note {
    text-align: right;
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 10px;
}

th {
    text-align: center;
}

.big th {
    text-align: left;
}

.fixedHeight {
    height: 30px;
}

caption {
    color: black;
}

/*Adjusted background color to remove from bootstrap table*/
:root, [data-bs-theme=light] {
    --bs-body-bg: transparent !important;
}

/*Adjusted table layout to prevent bootstrap full width on small screen*/
table {
    width: auto !important;
    table-layout: auto !important;
}

/*Adjusted bootstrap table cells to fit centered content on small screen*/
table td {
    width: auto !important;
    text-align: center;
}

/*Adjusted bootstrap table headings to fit content on small screen*/
table th {
    width: auto !important;
}

/*Override bootstrap dark theme for specific cells*/
.noBgColor {
    background-color: transparent !important;
    color: black !important;
    border: none !important;
}