﻿*:hover, *:focus, *:active {
    outline: none;
    box-shadow: none !important;
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
}


body {
    font-family: "Roboto"
}

header {
    background-color: #011c38;
}

header {
    font-weight: 500;
}

    header .navbar-brand img {
        max-height: 60px;
    }

section#about-us .carousel-item .slide {
    text-align: center;
}

    section#about-us .carousel-item .slide > div.image {
        height: 250px;
        width: 100% !important;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        background-color: #011c38cc;
        border-radius: 15px;
        margin-bottom: 10px;
    }

section#videos {
    background-color: #011c38cc;
}

    section#videos .v-wrapper {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
    }

        section#videos .v-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }


footer {
    background-color: #000;
    text-align: center;
    color: #eaeaea;
}

    footer ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: inline-flex;
    }

        footer ul li {
            display: flex;
            text-align: center;
        }

            footer ul li a {
                display: block;
                margin: 0px 20px;
                color: #fff;
            }

            footer ul li:not(:last-child):after {
                content: '|';
                color: #ffffffcc;
            }

.sidebar {
    background-color: #011c38cc;
    border-radius: 10px;
    padding: 20px;
    color:#fff;
}
    .sidebar,
    .sidebar a {
        color:#fff;
    }

    .sidebar ul {
        padding: 0px;
        margin: 0px;
        list-style: none;
    }

        .sidebar ul li {
            padding:10px 10px;
            border-bottom:1px dashed #ccc;
        }
            .sidebar ul li:last-child {
                border-bottom:none;
            }

            section#breadcrumbs {
                padding: 50px 0px;
                background-image: url('/assets/images/bg-breadcrumbs.webp');
                background-position: center center;
                background-repeat: no-repeat;
                position: relative;
                color: #fff;
            }

    section#breadcrumbs::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.6);
        z-index:1;
    }

    section#breadcrumbs .container {
        z-index: 2;
        position:relative;
    }

section#breadcrumbs ul {
    list-style:none;
    padding:0;
    margin:0;
}

    section#breadcrumbs ul li {
       display:inline-flex;
    }

        section#breadcrumbs ul li span,
        section#breadcrumbs ul li a {
            padding: 0px 10px;
            display:block;
        }

        section#breadcrumbs ul li:not(:first-child):before {
            content: "→"
        }


        section#page {
            padding: 50px 0px;
        }

            section#page.alumni-association .member-image,
            section#page.alumni-cell .member-image {
                width: 100px !important;
            }





#lightbox-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    justify-items: center;
    align-items: center;
    padding: 20px 0;
}

    #lightbox-gallery a {
        display: block;
        width: 100%;
        aspect-ratio: 4 / 3; /* Keeps all thumbs same shape */
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        #lightbox-gallery a:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
        }

    #lightbox-gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


.form-control {
    padding: 15px 15px;
}

.form-control.input-validation-error {
    border-color: var(--bs-danger) !important;
}
    .form-control.valid {
        border-color: var(--bs-success) !important;
    }

