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%;
}

body {
  margin-bottom: 60px;
}







/************************************** My Style **************************************/

.hero-container {
    position: relative;
    background-color: black;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10% 0;
}

    /* Image should scale properly */
    .hero-container img {
        width: 75%;
        height: auto;
    }

/* Text Styling */
.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: clamp(1.5rem, 3vw, 3.5rem);
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
}

/* Button Styling */
.centered-btn {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f8c761;
    color: black;
    padding: 23px 40px;
    border-radius: 0;
    cursor: pointer;
    font-size: 1vw;
}

    /* Button text adjustment */
    .centered-btn p {
        margin: 0;
        width: fit-content;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        padding: 35% 0;
    }

    .centered-text {
        font-size: clamp(1.2rem, 4vw, 2rem);
        width: 80%;
    }

    .centered-btn {
        padding: 10px 20px;
    }
}




@keyframes fadeOutBorder {
    0% {
        border-bottom-style: solid;
        border-color: #b08d44;
        border-width: thick;
        border-radius: 20px;
        opacity: 1;
    }

    100% {
        border-bottom-style: solid;
        border-color: #b08d44;
        border-width: thick;
        border-radius: 20px;
        opacity: 0;
    }
}

.fading-border {
    border-bottom-style: solid;
    border-color: #b08d44;
    border-width: thick;
    border-radius: 20px;
    animation: fadeInBorder 2s ease-out forwards;
}
