/*Index page*/
.app-carousel-footer {
    left: 0;
    right: 0;
    bottom: 0;
}

.app-carousel {
    z-index: -1;
}

.app-navLink {
    padding-top: 15px;
    padding-bottom: 15px;
    min-width: 100px;
    color: white;
    margin-right: 10px;
}

.app-nav-bar {
    z-index: 1050;
}

.app-selected-navLink {
    background-color: rgba(102, 0, 0, 1);
    color: white;
}

.app-section-2 {
    min-height: 300px;
}

.app-section-3 {
    min-height: 600px;
}

.app-section-4 {
    background-image: url('../images/home/section-4-bg-img.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    min-height: 500px;
}

.app-title-font {
    color: rgba(102, 0, 0, 1);
}

.app-button {
    color: rgba(102, 0, 0, 1);
    border: rgba(102, 0, 0, 1) groove thin;
}

.app-button:hover {
    background-color: rgba(102, 0, 0, 1);
    color: white;
    outline: white;
}

.active {
    background: white;
    color: black;
}

.app-sponsors-section {
    min-height: 150px;
}

.app-workshop-section {
    min-height: 500px;
}

.app-workshop-cards {
    min-height: 300px;
}

.square {
    opacity: 0;
}

.square-transition {
    opacity: 1;
}

/*About us page*/
.app-about-committee {
    min-height: 400px;
}

.app-about-committee-divider {
    border-bottom: #1a1e21 groove medium;
    min-height: 250px;
    display: none;
}

.app-det-img {
    width: 360px;
}

.dropdown {
    float: left;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.navbar-button-hover{
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important
}

.dropdown .navbar-button-hover{
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important
}

.navbar-button-hover:hover {
    background-color: white;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}


.app-hover-rotate:hover{
    rotation: 180deg;
    offset-rotate: 180deg;
}

.active{
    --bs-text-opacity: 1;
    color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

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

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media only screen and (min-width: 1200px) {
    .app-about-committee {
        background-image: url('../images/about/committee-section/commitee-section-bg.png');
        background-repeat: no-repeat;
        background-attachment: revert;
        background-size: 100% 100%;
        min-height: 400px;
    }

    .app-about-committee-divider {
        border-right: #1a1e21 groove thin;
        min-height: 250px;
        display: block;
    }

    .app-det-img {
        width: 450px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .square-animation {
        animation: opacityChange 2.5s 1;
    }

    .square {
        transition: opacity 2.5s ease
    }
}

/* The animation code */
@keyframes opacityChange {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
