/* 

    These are the styles for any global elements that are not specific to a particular page.
    A majority of base selectors such as footer, body, h1, h2, h3, p, a, ul, ol, li, td, th, label, nav, aside, section, article, and div are used.
    The styles are meant to be used across the entire site.
*/

/* Elements */

html{
    box-sizing: border-box;
    font-size: 21px;
}

:root{
    --silver-grey: #C0C0C0;
    --ghost-grey: #F8F8FF;
    --golden-orange: rgb(255,171,64);
    --dark-leather: #5a360a;

    --xx-large: 4.238rem;   /* 89px */
    --x-large: 2.619rem;    /* 55px */
    --large: 1.618rem;      /* 34px */
    --medium: 1rem;         /* 21px */
    --small: 0.619rem;      /* 13px */
    --x-small: 0.381rem;    /* 8px */
    --xx-small: 0.238rem;   /* ~5px */
    --tiny: 0.143rem;      /* ~3px */
    --xx-tiny: 0.089rem;   /* ~2px */
    --xxx-tiny: 0.055rem;  /* ~1px */
}

body{
    font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
    margin:auto;
    background-color: grey;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    height: 100vh;
}


h1, h3{
    font-family: "Sigmar One", sans-serif;
    color: white;
}

h1{
    font-size: clamp(0.5rem, 8vw, 68px);
    margin-top: 68px;
    text-align: center;
    color: white;
    line-height: 3rem;
}

h2 {
    font-family: 'Wire One', sans-serif;
    font-size: clamp(0.5rem, 4vw, 3rem);
    opacity: 0.61;
    text-transform: uppercase;
    color: white;
    margin: 13px;
}

h4{
    color:black;
    font-size: 16px;
    font-weight: 400;
    text-transform:uppercase;
    opacity: 0.61;
    text-align: left;
    border-bottom: 1px solid black;
    margin-top: 42px;
}

h5{
    font-size: 16px;
    font-weight: bold;
}

p{
    line-height: 1.8;
}

p a{
    font-size: inherit;
}

ul, ol{
    line-height: 1.8;
    column-count: 3;
    font-weight: 300;
}

p, li, ul, ol{
    font-size: 16px;
    font-weight: 300;
}

ol{
    column-count: 1;
}

/* Second tier lists */
ul ul {
    columns: 1; /* Set to one column */
    font-style: italic;
    opacity: 0.61;
    list-style-type: "- ";
    padding-left: 0;
  }

  ul.listed-features li{
    margin-bottom: 16px;
  }

  ul.single-column{
    column-count: 1;
  }

aside ul{
    column-count: 1;
}

li{
    margin-right:16px;
    break-inside: avoid-column;
}

dt{
    font-weight: bold;
}

dd{
    font-weight: 300;
    font-size: 16px;
}

div a{
    font-size: 16px;
}

table{
    border-spacing: 0;
}

th, td{
    font-size: 15px;
    color: black;
}

th{
    font-weight: 700;
}

td{
    font-weight: 200;
    padding: 7px;
}

tr:nth-child(even){
    background-color: var(--silver-grey);
}

tr:nth-child(odd){
    background-color: white;
    background-color: var(--ghost-grey);
}

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

img.item-icon{
    display:inline-flex;
}

figcaption{
    font-size: 16px;
    text-align: right;
    font-style: italic;
    color: gray;
}

select{
    font-weight: 300;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    border: 1px solid var(--ghost-grey);
}

p, li, ul, ol, td, th, label{
    font-family: 'Bitter', serif;
    font-weight: 400;
}

a{
    font-family: "Comfortaa", sans-serif;
    text-decoration: none;
    color: gold;
}

a.important{
    color: purple;
    font-weight: bold;
}

button{
    font-family: "Comfortaa", sans-serif;
    border: 1px solid var(--silver-grey);
    /* background-color: var(--silver-grey); */
    background-color: white;
    cursor: pointer;
}

button a{
    color: inherit;
}

nav{
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid var(--silver-grey);
    border-radius: 5px;
    background-color: var(--silver-grey);
 
    text-align: center;

    justify-content: space-between;
    align-items: center; /* To vertically center the links */
}

nav a{
    width: 33%;
}

nav ul{
    list-style-type: " ";
    text-align: left;
}

footer{
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    align-items: right;
    justify-content: flex-end;
    margin: 0;
}

/*  
    CLASS 
*/
.hidden {
    display: none;
}

.container {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color:white; /* Button color */
    color: grey;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    margin: 5px;
    width: 256px;
}

.button:hover {
    color: white; 
    background-color: orange;
}

.button.disabled,
.button:disabled {
    background-color: #ccc; 
    color: #666;          
    cursor: not-allowed;   
    pointer-events: none;  
    text-decoration: none; 
    opacity: 0.6;         
}

.button.return{
    width: min-content;
}

.button-spacer{
    display: block;
    width: 256px;
    height: 32px;
}

.center-column{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.scrollable {
    overflow-y: auto;
    max-height: 80vh; /* Adjust as needed */
    width: 100%;
}

.bkg{
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.options-buttons-flex{
    display: flex;
    flex-wrap: wrap;       
    gap: 1px;              
    justify-content: center; 
    align-items: center;   
    padding: 5px;         
}

