@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700;800&family=Roboto:wght@100;300;400;500;700;900&display=swap');

body{
    font-family: 'Open Sans', sans-serif;
}

.title-gradient{
    background: var(--bs-primary);
    background: linear-gradient(to right, var(--bs-primary) 39%, var(--bs-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient{
    /* Generated via https://mycolor.space/gradient */
    background-image: linear-gradient(to right top, var(--bs-primary) 39%, var(--bs-secondary) 100%) !important;
}

.fs-large{
    font-size: 3em;
}

.fs-larger{
    font-size: 4em;
}

.vh-75{
    height: 75vh;
}

.btn-outline-secondary:hover{
    color: white !important;
}

.navbar {
    transition: border-color 0.3s ease; /* Transition border color */
    border-color: transparent; /* Set initial border color to transparent */
}

/* Custom CSS for hover behavior */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Optional: Hide the dropdown menu by default */
.dropdown-menu {
    display: none;
}

.navbar-logo{
    height: 30px;
}

.aspect-ratio-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.aspect-ratio-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container */
}

.circle {
    width: 70px; /* Adjust this value as needed */
    height: 70px; /* Adjust this value as needed */
    border-radius: 50%;
    overflow: hidden;
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the circle */
}

.grayscale {
    filter: grayscale(100%);
}