

/* MORE UNIFORMED */

.photo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Adjust the gap between photos as needed */
}

.photo-grid .photo-card {
    flex: 1 1 calc(33.333% - 10px); /* Three items per row with gaps */
    box-sizing: border-box;
    position: relative; /* Needed for absolute positioning of img */
    overflow: hidden;
    background-color: #f5f5f5; /* Add a background color for visual appeal */
    height: 200px; /* Uniform height for all photo cards */
}

.photo-grid .photo-card .card {
    height: 100%; /* Ensure card takes full height */
    display: flex;
    align-items: center; /* Center image vertically */
    justify-content: center; /* Center image horizontally */
}

.photo-grid .photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the card area */
    cursor: pointer;
}

/* for when picture is clicked it expands */
.photo-grid .photo-card img:hover {
    opacity: 0.8; /* Optional: add a hover effect */
}

.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 2em;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Dark background */
    z-index: 1000; /* Ensure it’s on top */
    justify-content: center; /* Center image horizontally */
    align-items: center; /* Center image vertically */
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain; /* Ensure image fits inside modal */
}

.modal.active {
    display: flex; /* Show modal when active */
}

.modal-close {
    position: absolute;
    top: 1em;
    right: 2em;
    color: #FFB23E ;
    font-size: 4em;
    cursor: pointer;
}
/*  */
/*  */

@media (max-width: 768px) {
    .photo-grid .photo-card {
        flex: 1 1 calc(50% - 10px); /* Two items per row on smaller screens */
    }

    .modal-close {
        position: absolute;
        top: 0.5em;
        right: 0.5em;
        color: #FFB23E ;
        font-size: 4em;
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .photo-grid .photo-card {
        flex: 1 1 100%; /* One item per row on very small screens */
    }
}





@font-face{
    font-family: myFont;
    src: url(/Images/brand.ttf);
}

body {
    /* background-image: url("https://previews.123rf.com/images/cyrustr/cyrustr1707/cyrustr170700255/82266228-ice-background-texture-ice-with-different-shapes-and-cracks.jpg");  */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
    /* background-color: black; */
    font-weight: bold;
    background-size: cover;
    -webkit-background-size: cover;
    background-position: center center;
    min-height: 100vh;
    font-family: myFont;
    /* background-color: #00b4ff !important; */
}


/* NAV BAR ICY LOOK & BUTTONS */
.nav-bar {
    background-color: #00b4ff;
    position: relative;
    isolation: isolate;  /*creates stacking context*/ 
    opacity: 1; 
}



#btn-brand{
    background-color: #94bfe7;
    border:0.1em solid #192857;
}

#btn-brand:hover{
    background-color: #192857;
    border: 0.1em solid #94bfe7;
}

#btn-brand-primary{
    background-color: #192857;
    border: 0.1em solid #94bfe7;
}

#tableHead{
    background-color: #192857;
    color: #f2f2f2;
    /* border: 3px solid #94bfe7; */
    padding: 1rem 0 1rem 1rem;
    /* border-radius: 15%; */
}



.tableTitle{
    color: #192857;
}

.table-container{
    width: 100%;
}

#roster-table {
    opacity: 0.85;
}

#roster-header {
    border: 5px solid #192857;
    background-color: #192857;
    color: white;
    opacity: .85;
}

.helloWorld{
    margin-bottom: 5em;
}

#nav-buttons{
    gap: 1em;
}

#brandName{
    color: #192857;
}



.nav-span-d{
    display: none;
}
.sectionOne-M{
    display: none;
}
.sectionOne-D{
    display: block;
}

/* .tableFont{
    font-family: Arial, Helvetica, sans-serif;;
} */

.tableMaybe{
    /* background-color: yellow !important; */
    opacity: 0.4 !important;
    
}
.note{
    font-size: 0.7rem;
}

@media (max-width: 1366px) {

    /* TOP PAGE */
    #brand-logo{
        height: 50%;
        width: 50%;
    }

    .featurette-img{
        width: 100%; 
    }

    #detailsHeader{
        color: #192857;
    }

    .btn-group-lg>.btn, .btn-lg {
        --bs-btn-font-size: 1rem !important;
    }

    /* NAV BAR */
    .nav-span-d{
        display: block;
    }
    .nav-span-m{
        display: none;
    }
    .sectionOne-D{
        display: none;
    }
    .sectionOne-M{
        display: block;
    }




}