.navbar-toggler {
    border-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.default-rounded {
    border-radius: 1rem !important;
}

[data-bs-theme=light] {
    .header-border {
        border-bottom: 2px solid #e9ecef;
    }
    .footer-border {
        border-top: 2px solid #e9ecef;
    }
}
[data-bs-theme=dark] {
    .header-border {
        border-bottom: 2px solid #343a40;
    }
    .footer-border {
        border-top: 2px solid #343a40;
    }
}

.dropdown-item-hover:hover {
    background-color: transparent !important;
}

.btn:focus-visible {
    outline: none !important;
}

[data-bs-theme=dark] {
    .white-image-dark {
        filter: brightness(0) invert(1);
    }
}

.hero {
    background: url(../images/hero.jpg) no-repeat center center / cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 6rem;
    font-weight: 700 !important;
    letter-spacing: -.02em;
    line-height: .9;
    text-shadow: 0 0 40px rgba(139, 92, 246, .3);
}

@media (max-width: 768px) {
    .hero {
        justify-content: center;
        padding: 0 5%;
    }

    .hero .container {
        text-align: center;
    }

    .hero-title {
        font-size: 4rem;
        font-weight: 700 !important;
        letter-spacing: -.02em;
        line-height: .9;
        text-shadow: 0 0 40px rgba(139, 92, 246, .3);
    }
}

.blur {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.card-img-top {
    border-radius: 1rem 1rem 0 0;
}
