:root {

    --footer_gray: #ffee00;
    --footer_hover_gray: #eeeeee;
    --baseline_blue: #edeaf1;
    --text_hover_blue: #000000;
    --text_blue: #ffffff;
    /* --text_hover_blue: #4132e7; */
    --text_off_white: #444444;
    --text_white: #ffffff;
    --mid_blue: #ffffff;
    --blue_gradient: linear-gradient(to top, var(--baseline_blue) 0%, var(--mid_blue) 30%,var(--text_blue) 65%);
    --button_blue: #c3c9cf;
    --text_outline: #000000;
    background: hsla(297, 100%, 57%, 1);
    background: linear-gradient(60deg, hsla(297, 100%, 57%, 1) 00%, hsla(45, 100%, 50%, 1) 100%);
    background: -moz-linear-gradient(40deg, hsla(297, 100%, 57%, 1) 00%, hsla(45, 100%, 50%, 1) 100%);
    background: -webkit-linear-gradient(40deg, hsla(297, 100%, 57%, 1) 00%, hsla(45, 100%, 50%, 1) 100%);
    background-attachment: fixed;
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#F425FF", endColorstr="#FFBF00", GradientType=1 );
    
  }

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Georgia', sans-serif;
}

.ourtitle{
    font-family: "Georgia", sans-serif;
}
.navbar {
    background: hsla(297, 100%, 57%, 1);
    background: hsla(297, 100%, 57%, 1);
    background: linear-gradient(120deg, hsla(297, 100%, 57%, 1) -40%, hsla(45, 100%, 50%, 1) 105%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#f425ff", endColorstr="#f754b0", GradientType=1 );

    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 99999;
}

.navbar_container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 50px;
}

#navbar_logo {
    background-color: #ff8177;
    background-image: linear-gradient(to top, #5e08ff 0%, #1997ff 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.fa-gem{
    margin-right: 0.5rem;
}

.navbar_menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
    white-space: nowrap;
}

.navbar_item {
    height: 80px;
}

.navbar_clicked {
    color: var(--text_hover_blue);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: bold;
    padding: 0 1rem;
    height: 100%;
}

.navbar_button_clicked {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: var(--text_hover_blue);
    color: var(--text_white);
    text-decoration: bold;
}

.navbar_links {
    color: var(--text_blue);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar_button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.dropdown {
    float: center;
    padding: 0 1rem;
}

.dropdown .dropdown_button {
    border: none;
    outline: none;
    color: var(--text_blue);
    background-color: inherit;
    font-size: inherit;
    margin: 0;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: var(--button_blue);
    color: var(--text_white);
}

.button:hover {
    background: var(--text_hover_blue);
    color: var(--text_white);
    transition: all 0.3s ease;
}

.navbar_links:hover {
    color: var(--text_hover_blue);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown_button {
    color: var(--text_hover_blue);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropdown_content {
    display: none;
    position: absolute;
    background-color: #252525;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown_content a {
    float:none;
    color: var(--text_blue);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown_content:hover {
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropdown:hover .dropdown_content {
    display: block;
}

.intro { 
    text-align: center; 
    font-family: Arial;
}
  
h2 { 
    font-size: 36px;
}
  
p { 
    font-size: 14pt;
}
  
#image-gallery { 
    width: 600px; 
    margin: 0 auto;
}
  


@media screen and (max-width: 960px) {
    .navbar_container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 20px 0px;
    }

    body{
        background-image: url('./images/notext.png'); /* Replace 'your-image.jpg' with your image path */
        background-size: 200%; /* Ensures the image covers the entire background */
        background-attachment: fixed; /* Makes the background image fixed during scrolling */
    }

    .navbar_menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
        background: var(--background_black);
    }

    .navbar_menu.active {
        background: hsla(297, 100%, 57%, 1);
        background: linear-gradient(90deg, hsla(297, 100%, 57%, 1) -45%, hsla(45, 100%, 50%, 1) 105%);
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#f425ff", endColorstr="#ffbf00", GradientType=1 );
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99999;
        height: 60vh;
        font-size: 1.6rem;
    }

    #navbar_logo {
        padding-left: 25px;
    }

    .navbar_toggle {
        cursor: pointer;
    }

    .navbar_toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #ffffff;
    }

    .navbar_item {
        width: 100%;
    }

    .dropdown_content {
        width: 100%;
        position: absolute;
        text-align: center;
        justify-content: center;
    }

    .dropdown:hover .dropdown_content {
        display: none;
    }

    .dropdown.is-active .dropdown_content {
        display: block;
    }

    .dropdown.is-active .dropdown_button{
        color: #4837ff;
    }

    .navbar_links {
        text-align: center;
        justify-content: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
        background: hsla(297, 100%, 57%, 1);
        background: hsla(297, 100%, 57%, 1);
        background: linear-gradient(120deg, hsla(297, 100%, 57%, 1) 90%, hsla(45, 100%, 50%, 1) 100%);
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#f425ff", endColorstr="#f754b0", GradientType=1 );
    }

    .navbar_button {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }

    .navbar_toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}

/* Hero Section */
.main {
    background-color: var(--background_black);
}

.googleDocWrapper {
    align-items: center;
    height: 75vh;
    max-width: 950px;
    width: 100%;
    max-height: 75vh;
    margin: 2rem auto 0 auto;
}

.googleDoc {
    align-items: center;
    height: 100%;
    width: 100%;
    max-height: 1056px;
    margin: 0 auto;
    overflow: hidden;
}

.main h1 {
    padding: 10px;
    font-size: 3rem;
}

.pageTitle {
    color: var(--text_white);
    background-color: var(--background_black);
    text-align: center;
    font-size: large;
}

.pageSubTitle {
    padding: 2rem 0;
    color: var(--text_white);
    background-color: var(--background_black);
    text-align: center;
    font-size: 1rem;
}

.footerLine {
    color: var(--text_white);
    background-color: var(--background_black);
    text-align: center;
    font-size: large;
    padding-top: 2rem;
}

.main_container {
    display: grid;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: auto;
    max-height: 75vh;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0rem 2.5rem;
    text-align: left;
}

.bio_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: auto;
    max-height: 75vh;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 2rem 2.5rem;
    text-align: center;
}

.infoContent {
    display: flex;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: auto;
    max-height: 75vh;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 2rem 2.5rem;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text_white);
}

.main_content {
    font-size: 2.75rem;
    background-image: var(--blue_gradient);
    background-size: 100%;
    text-align: left;
    border-color: white;
    border-width: 3px;
    width: 100%;
    padding: 0rem 2em;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main_content h2 {
    font-size: 2.75rem;
    background-image: var(--blue_gradient);
    background-size: 80%;
    text-align: left;
    width: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main_content p {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text_white);
}

.bio_content {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text_white);
    text-align: center;
}


/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */ 
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: none; /* Allow the user to vertically resize the textarea (not horizontally) */
  }
  
  /* Style the submit button with a specific background color etc */
  input[type=submit] {
    background-color: var(--button_blue);
    color: var(--text_white);
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* When moving the mouse over the submit button, add a darker green color */
  input[type=submit]:hover {
    background-color: var(--text_hover_blue);
  }
  
  /* Add a background color and some padding around the form */
  .contactContainer {
    margin: 2rem auto 0 auto;
    border-radius: 5px;
    outline: 2px var(--text_white);
    background-color: var(--background_black);
    color: var(--text_white);
    padding: 20px;
    max-width: 45rem;
  }

.main_container_flipped {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: auto;
    max-height: 75vh;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 2rem 2.5rem;
}

.main_content_flipped {
    padding-left: 20px;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text_white);
    text-align: center;
}

.main_content_flipped h1 {
    font-size: 2.75rem;
    background-image: var(--blue_gradient);
    background-size: 100%;
    text-align: center;
    border-color: white;
    border-width: 3px;
    width: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main_content_flipped h2 {
    font-size: 2.75rem;
    background-image: var(--blue_gradient);
    background-size: 80%;
    text-align: left;
    border-color: white;
    border-width: 3px;
    width: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main_content_flipped p {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text_white);
}

.main_button {
    font-size: 1rem;
    background-color: var(--button_blue);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
}

.main_button a {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-decoration: none;
}

.main_button:hover {
    background: var(--text_hover_blue);
    color: var(--text_white);
    transition: all 0.3s ease;
}

.main_image--container {
    display: grid;
    text-align: center;
    align-self: center;
    max-width: 80%;
    margin: auto auto;
}

.main_image--container_flipped {
    display: block;
    text-align: center;
    align-self: center;
    max-width: 80%;
    margin: auto auto;
}

.contactWindow {
    background-color: var(--background_black);
    padding: 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: var(--footer_gray);
    margin-top: 300px;
}

.contactWindowObjects {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
}

.contactWindow--wrapper {
    display: flex;
}

.contactWindow--items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: auto;
    box-sizing: border-box;
}

.contactWindow--items a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: auto;
    box-sizing: border-box;
    text-decoration: none;
    margin-bottom: 0.5rem;
    color: var(--footer_gray);
}

/* Mobile Responsive */
@media screen and (max-width: 768px){
    .googleDoc {
        align-items: center;
        max-width: 100%;
        max-height: 1056px;
        margin: 0 auto;
    }

    .main_container {
        display: inline;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 80%;
        margin: 0 auto;
        height: auto;
        max-height: 180vh;
    }

    .main_image--container {
        grid-row: 1;
    }

    .main_content {
        text-align: center;
        margin-bottom: 4rem;
    }

    .main_content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main_content h2 {
        font-size: 3rem;
    }

    .main_content p {
        margin-top: 1rem;
        font-size: 1.5rem;
    }

    .main_container_flipped {
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 80%;
        margin: 0 auto;
        height: auto;
        max-height: 180vh;
    }

    .main_content_flipped {
        text-align: center;
        margin-bottom: 4rem;
    }

    .main_content_flipped h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main_content_flipped h2 {
        font-size: 3rem;
    }

    .main_content_flipped p {
        margin-top: 1rem;
        font-size: 1.5rem;
    }

    .contactContainer {
        max-width: 70%;
      }
}

@media screen and (max-width: 480px) {
    .main_content h1 {
        font-size: 2rem;
        margin-top: 3rem;
    }

    .main_content h2 {
        font-size: 2rem;
    }

    .main_content p {
        margin-top: 2rem;
        font-size: 1.5rem;
    }

    .main_button {
        padding: 12px 36px;
        margin: 2.5rem 0;
    }
}


/* Footer CSS */
.footer_container {
    background-color: var(--background_black);
    padding: 0 0;
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: 0;
    position: relative;
}

#footer_logo {
    color: var(--footer_gray);
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.footer_links {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
}

.footer_link--wrapper {
    display: flex;
}

.footer_link--items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
}

.footer_link--items h2 {
    margin-bottom: 16px;
}

.footer_link--items > h2 {
    color: var(--footer_gray);
}

.footer_link--items a {
    color: var(--footer_gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer_link--items a:hover {
    color: var(--footer_hover_gray);
    transition: 0.3s ease-out;
}

.footer_link--items p {
    color: var(--footer_gray);
}

.map {
    width: 512px;
    display: block;
    margin: 0 auto;
}

/* Social Icons */
.social_icon--link {
    color: var(--footer_gray);
    font-size: 24px;
    margin: 0 10px;
}
.social_icon--link i:hover {
    color: var(--footer_hover_gray);
}

.social_media {
    max-width: 1000px;
    width: 100%;
}

.social_media--wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.social_icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
}

.social_logo {
    color: var(--footer_gray);
    justify-self: flex-start;
    margin-left: 20px;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.website_rights {
    color: var(--footer_gray);
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 820px) {
    .contactWindowObjects {
        padding-top: 2rem;
    }

    #footer_logo {
        margin-bottom: 2rem;
    }

    .website_rights {
        margin-bottom: 2rem;
    }

    .contactWindow--wrapper {
        flex-direction: column;
    }

    .social_media--wrap {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .footer_link--items {
        margin: 0;
        padding: 10px;
        width: 100%;
    }
}