body {
    margin: 0;
    padding: 0;
    background-color: #F8F8F8; /* Off-white background color */
    color: #ffffff; /* Slightly off-black text color (dark gray) */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100dvh; /* Use dynamic viewport height */
    font-size: 1.20em;
}

body.home {
    background-color: #8b0c15; 
}

body.movie {
    background-color: #8f8494; 
}

body.ride {
    background-color: #52aed7; 
}

body.about {
    background-color: #c1c0bc; 
}

.spacer { 
    display: block; 
    height: 1vh; /* Adjust this to your preferred height, e.g., 1vh = 1% of the viewport height */ 
    width: 100%; 
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    position: relative;
}

.centered-content {
    text-align: center;
}

.centered-content.vision {
    width: 50%;
    margin: 3px;
}

.centered-content.about {
    width: 60%;
    margin: 3px;
    text-align: justify;
}

img.bg {
    /* Ensure browser ready to handle any transforms */
    will-change: transform;

    /* Set rules to fill background */
    min-height: 100%;
    min-width: 1024px;
    
    /* Set up proportionate scaling */
    width: 100%;
    height: auto;
    
    /* Set up positioning */
    position: fixed;
    top: 0px;
    left: 0;
}

@media screen and (max-height: 1080px) {
    img.bg {
        margin-top: 0px; 
    }

    .centered-content.vision {
        width: 73%;
        margin: 3px;
    }

    .centered-content.about {
        width: 60%;
        margin: 3px;
    }
}

@media screen and (max-width: 1270px){
    img.bg {
        left: 50%; 
        transform: translateX(-50%); 
        width: auto !important; 
        height: auto !important; 
        max-height: 120%; 
    }

    .centered-content.vision {
        width: 80%;
        margin: 3px;
    }

    .centered-content.about {
        width: 80%;
        margin: 3px;
    }
}

@media screen and (max-width: 1024px){
    img.bg {
        left: 50%; 
        transform: translateX(-57%); 
        width: auto !important; 
        height: auto !important; 
        max-height: 100vh; 
    }

    .centered-content.vision {
        width: 80%;
        margin: 3px;
    }

    .centered-content.about {
        width: 80%;
        margin: 3px;
    }
}

@media (max-width: 720px) { 
    img.bg {
        left: 50%; 
        transform: translateX(-50%); 
        width: auto !important; 
        height: auto !important; 
        max-height: 100vh; 
        margin-left: -200px; 
    }

    img.bg.home {
        margin-left: -150px;
    }

    img.bg.ridedrivecycle {
        margin-left: 0px;
    }

    img.bg.sunglasses {
        margin-left: 225px;
    }

    img.bg.movie {
        width: 75% !important;
        margin-left: 0px;
    }

    img.bg.art {
        margin-left: 10px;
    }

    .centered-content.vision {
        width: 95%;
        margin: 3px;
    }

    .centered-content.about {
        width: 95%;
        margin: 3px;
    }
}

h1 {
    font-size: 2.90em;
    margin-bottom: -5px;
    margin-top: -15px;
    color: #ffffff; 
    text-shadow: -0.75px -0.75px 0 #575656, 0.75px -0.75px 0 #575656, -0.75px  0.75px 0 #575656, 0.75px  0.75px 0 #575656; 
}

h2 {
    font-size: 2.25em;
    margin-bottom: 10px;
    margin-top: 0px;
    color: #ffffff; 
    text-shadow: -0.75px -0.75px 0 #575656, 0.75px -0.75px 0 #575656, -0.75px  0.75px 0 #575656, 0.75px  0.75px 0 #575656; 
}

.equal-width-heading 
{
    display: flex;
    justify-content: center;
}
  
.equal-width-heading a 
{
    display: inline-flex;
    letter-spacing: 0.1em; /* Adjust as needed for spacing between characters */
    padding-left: var(--leading-space, 0.2em); /* Customizable leading space */
}
  
.equal-width-heading a span 
{
    display: inline-block;
    width: 1ch; /* Ensures uniform width per character, where 1ch is the width of the character "0" */
    text-align: center;
}  

p {
    font-size: 1.25em;
    margin-bottom: 2px;
    margin-top: 14px;
    color: #ffffff; 
    font-weight: 400; /* Regular */
    text-shadow: -0.75px -0.75px 0 #575656, 0.75px -0.75px 0 #575656, -0.75px  0.75px 0 #575656, 0.75px  0.75px 0 #575656; 
}

p.visionAndMission {
    font-style: italic;
    color: #ffffff;
    font-size: 1.05em;
}

.custom-tagline {
    font-style: italic !important;
}

.email-link {
    color: #ffffff; /* Soft gray color for the email link */
    text-decoration: none;
    font-size: 14px;
}

.email-link:hover {
    text-decoration: none;
}

/* Disclaimer styling */
.disclaimer {
    text-align: center;
    font-size: 10px;
    color: #ffffff;
    font-style: italic;
    max-width: 50%;
    margin: 0 auto;
    padding: 10px 0;
}

.custom-color-link {
    color: #A1C9FF;
    text-decoration: none;
    text-shadow: -0.75px -0.75px 0 #575656, 0.75px -0.75px 0 #575656, -0.75px  0.75px 0 #575656, 0.75px  0.75px 0 #575656; 
}

.custom-color-link.drive {
    color: #E8261E;
}

.custom-color-link:hover {
    text-decoration: none;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .social-icons a {
    color: #000; /* Icon color */
    margin: 0 7px; /* Space between icons */
    font-size: 20px; /* Icon size */
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #007bff; /* Icon hover color */
  }

/* Trademark (TM) styling */
.trademark {
    font-size: 10px;
    position: relative;
    text-shadow: -0.75px -0.75px 0 #575656, 0.75px -0.75px 0 #575656, -0.75px  0.75px 0 #575656, 0.75px  0.75px 0 #575656; 
}

a {
    padding: 2px 2px 2px 0px;
    margin: 0px;
}

a:visited {
    margin: 0px;
}

.page-wrap {
    position: relative;
    /* width: 700px; */
    margin: 50px auto;
    padding: 20px;
    background: rgb(48, 94, 198);
    -moz-box-shadow: 0 0 20px black;
    -webkit-box-shadow: 0 0 20px black;
    box-shadow: 0 0 20px black;
}

.page-wrap-opacity
{
    opacity: 78%;
}

.page-wrap-opacity-home
{
    background: rgba(50, 58, 76, 0.15); /* Apply opacity only to the background color */
}

.circle {
    /* utilized as a gap */
    display: inline-block;
    width: 4px;
    height: 4px; 
    background-color: rgb(244, 255, 240);
    border-radius: 50%;
    border: 0.9px solid #000; /* Set border width to 2px and color to black */
    margin: 1px 1px 1px 1px;
    vertical-align: middle;
}

.circle-blank {
    /* utilized as a gap */
    display: inline-block;
    width: 2.5px;
    background-color: rgb(244, 255, 240);
    border-radius: 50%;
    margin: 1px 1px 1px 1px;
    vertical-align: middle;
}

a:link { text-decoration: solid; color: #ffffff; text-decoration: none; text-shadow: -0.75px -0.75px 0 #575656, 0.75px -0.75px 0 #575656, -0.75px  0.75px 0 #575656, 0.75px  0.75px 0 #575656; } 
a:visited { text-decoration: none; color: #ffffff; text-decoration: none; text-shadow: -0.75px -0.75px 0 #575656, 0.75px -0.75px 0 #575656, -0.75px  0.75px 0 #575656, 0.75px  0.75px 0 #575656; }
a:hover { text-decoration: none; color: #A1C9FF; text-decoration: none; text-shadow: -0.75px -0.75px 0 #575656, 0.75px -0.75px 0 #575656, -0.75px  0.75px 0 #575656, 0.75px  0.75px 0 #575656; }
a:active { text-decoration: none; color: #ffffff ;text-decoration: none; text-shadow: -0.75px -0.75px 0 #575656, 0.75px -0.75px 0 #575656, -0.75px  0.75px 0 #575656, 0.75px  0.75px 0 #575656; }