@font-face {
    font-family: 'Room Black';
    src: url('fonts/Room-Black.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Room Black', sans-serif;
}

.card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.card:hover {
    transform: scale(1.03);
    box-shadow:
        0 0 0 2px #144c2c,
        0 0 20px rgba(20, 76, 44, 0.6) !important;
}

.navbar:first-of-type {
    background-color: #144c2c;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar:first-of-type .navbar-brand h5 {
    font-family: 'Room Black', sans-serif;
    letter-spacing: 1px;
    margin: 0;
}

.navbar-expand-lg {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-link {
    font-family: 'Room Black', sans-serif;
    color: #144c2c;
    letter-spacing: 1px;
    padding: 10px 18px;
    position: relative;
    transition: all 0.3s ease;
}


.navbar-nav .nav-link:hover {
    color: #144c2c;
}


.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #144c2c;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

.navbar-nav .nav-link.active {
    color: #144c2c;
    font-weight: 600;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .navbar-nav {
        gap: 10px;
    }

    .navbar-nav .nav-link {
        padding: 12px;
    }
}

.card-img-fixed {
    height: 220px;
    object-fit: cover;
}