html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

.navbg {
    background-color: white
}

@font-face {
    font-family: 'ArcadeFont';
    src: url('/fonts/Arcade.ttf') format('truetype')
}

.navfont{
    font-family: 'ArcadeFont', sans-serif !important;
    font-size:2.4vw;
}

@media (max-width: 992px) {
    .navfont {
        font-size: 2vw; 
    }
}

@media (max-width: 576px) {
    .navfont {
        font-size: 4vw; 
    }
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-item {
        margin: 10px 0;
    }

    .dropdown-menu {
        position: static;
        float: none;
        background-color: transparent;
        border: none;
        box-shadow: none;
    }

        .dropdown-menu .dropdown-item {
            color: #0d6efd;
            padding: 8px 0;
        }
}

.navbar {
    position: relative;
    z-index: 1030; 
}

.dropdown-menu {
    z-index: 1050;
    position: absolute;
}

body {
    height: 100vh; 
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1.5s ease-in-out forwards; 
}

.custom-dropdown {
    background-color: white !important; 
    border: 1px solid black;
    transition: opacity 0.3s ease, transform 0.3s ease; 
}

.custom-dropdown .dropdown-item {
    color: black !important; 
    text-align: center;
}

.custom-dropdown .dropdown-item:hover {
    background-color: primary !important; 
    color: white !important;
}

.dropdown-menu {
    opacity: 0;
    transform: translateY(-10px); 
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block; 
    visibility: hidden;
}

.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.bg-blur {
    
    width: 100%;
    height: 100%; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-blur::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/bgphoto.jpeg") no-repeat center center/cover;
    filter: blur(15px) grayscale(30%) contrast(50%); 
    z-index: -1; 
}

.photo-frame {
    position: relative;
    padding: 10px;
    background: linear-gradient(45deg, #ff416c, #ff4b2b); 
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    
}

.photo-frame img {
    display: block;
    width: 100%;
    border-radius: 10px;
    border: 5px solid white;
}