/* WEB ELEMENT CLASSES */

.button-primary {
    color: #C5A811 !important;
    border-color: #C5A811 !important;
}

.button-primary:hover {
    color: white !important;
    border-color: white !important;
}

.icon-btn {
    color: white;
}

.icon-btn:hover {
    color: #C5A811;
}

.link-primary {
    color: #C5A811 !important;
    text-decoration-color: #C5A811 !important;
}

.link-primary:hover {
    color: white !important;
    text-decoration-color: white !important;
}

.link-highlighted {
    color: white !important;
    text-decoration-color: white !important;
}

.link-highlighted-primary:hover {
    color: white !important;
    text-decoration-color: white !important;
}

.link-no-underline {
    text-decoration: none;
}

.link-secondary {
    color: white !important;
    text-decoration-color: white !important;
}

.link-secondary:hover {
    color: #C5A811 !important;
    text-decoration-color: #C5A811 !important;
}

.content-header {
    text-align: center;
    border-bottom: 2px solid #C5A811;
    border-radius: 5%;
    margin-bottom: 10px;
}

.primary-input {
    background-color: black;
    border: 2px solid #C5A811;
    color: white;
    border-radius: 5px;
    padding-left: 5px;
}

body {
    background-color: black;
    color: white;
    font-family: 'Audiowide', sans-serif;
}

hr {
    border-color: #C5A811;
}

.home-body {
    overflow: hidden;
}

.spacer {
    padding-top: 50px;
}

html {
    scroll-behavior: smooth;
}

#footer-container {
    width: 100%;
    border-top: 5px solid #C5A811;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 15px;
    background-color: black;
}

.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    margin-top: 0;
}

.form-row {
    padding-bottom: 10px;
    padding-top: 10px;
}

.form-error-text{
    color: red;
}

.form-success-text {
    color: green;
}

.form-error-input {
    border: red 1px;
}



.link-red {
    color: red;
}

.link-red:hover {
    color: white;
}

#footer-container a  {
    color: white;
}

@media (max-width: 600px)
{
    #footer-container {
        display: none;
    }
}

.card {
    border: 1px solid white;
    background-color: black;
    color: white;
    margin-bottom: 20px;
}

.container-border-primary {
    border-radius: 15px;
    border: 2px solid #C5A811;
    padding: 4px;
}

.avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

/* ABOUT PAGE CARD CLASSES */

.about-content .card-img-top {
    max-height: 100%;
    max-width: 100%;
}

/* PROJECTS PAGE CARD CLASSES */

.projects-content .card {
    min-height: 700px;
}

.projects-content .card-img-top {
    max-height: 450px;
    max-width: 450px;
}

.projects-content .card-body {
    height: 15rem;
}

/* JOIN PAGE CLASSES */
.form-container {
    height: 75vh;
}

/* NAVBAR CLASSES */

.navbar {
    border-bottom: 2px solid #C5A811;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1030;
}

#header-container {
    position: -webkit-sticky;
    position: sticky;
    overflow: visible;
    background-color: black;
    top: 0;
    z-index: 1030;
}
.nav-link {
    font-size: 1.2rem;
}

.nav-dropdown-menu {
    background-color: black;
    border: 1px solid #C5A811;
}

.nav-dropdown-menu a:hover {
    background-color: black;
}

.nav-dropdown-menu .dropdown-divider {
    background-color: #C5A811;
}

/* SCROLL SECTION CLASSES */
.section {
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

#primary { 
    background-image: url("media/reflection-pond-streak.1344221fb951.png");
    text-shadow: 
        1px 1px 0 black,
        -1px -1px 0 black,  
        1px -1px 0 black,  
        -1px 1px 0 black;
}

#primary img {
    aspect-ratio: 1 / 1;
    width: 20vh;
    height: auto;
}

#projects .img-container {
    position: absolute;
    top: 190vh;
    right: 0vw;
    width: 50vw;
    clip-path: inset(16vh 0 0 0);
    overflow: hidden;
    z-index:-1030;
}

#projects .content {
    z-index: 1;
}

/* SECTION CONTROL BUTTON CLASSES */

.scroll-btn {
    border: none;
    background-color: transparent;
    color: white;
    width: 50px;
    height: 50px;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* MODAL CLASSES */

.modal-content {
    background-color: black;
}

.modal-btn-cancel {
    color: white;
}

.modal-btn-cancel:hover {
    color: red;
}