.blue-link {
    color: blue;
    text-decoration: underline; /* Optional: Makes the link look like a typical hyperlink */
}

.blue-link:hover {
    color: darkblue; /* Optional: Changes color on hover */
}

/* Hero Background Image */
.background-image-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 250px;
}

/* Mobile responsive background height */
@media (min-width: 640px) {
    .background-image-hero {
        min-height: 300px;
    }
}

@media (min-width: 768px) {
    .background-image-hero {
        min-height: 350px;
    }
}

@media (min-width: 1024px) {
    .background-image-hero {
        min-height: 400px;
    }
}

/* Welcome Message Positioning */
#welcome-message {
    position: absolute;
    bottom: 0;
    margin: -25px;
    left: 55%;
    transform: translateX(-50%);
    z-index: 10;
    width: 90%;
    max-width: 350px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: normal;
}

/* Mobile responsive welcome message */
@media (min-width: 640px) {
    #welcome-message {
        margin: -35px;
        width: 85%;
        max-width: 400px;
    }
}

@media (min-width: 768px) {
    #welcome-message {
        margin: -45px;
        width: 80%;
        max-width: 450px;
    }
}

@media (min-width: 1024px) {
    #welcome-message {
        margin: -20px;
        width: 80%;
        max-width: 550px;
        max-height: 100px;
    }
}

/* Override Tailwind classes for welcome message box */
#welcome-message .bg-white {
    border-radius: 0 !important; /* Make border square, override rounded-lg */
}

/* Override font size for welcome message text */
#welcome-message p {
    font-size: 13px !important; /* Smaller for mobile */
    font-family: Helvetica, Arial, sans-serif !important;
    font-weight: bold !important;
    line-height: 18px;
    padding: 8px !important;
}

/* Responsive font sizes */
@media (min-width: 640px) {
    #welcome-message p {
        font-size: 14px !important;
        line-height: 20px;
        padding: 12px !important;
    }
}

@media (min-width: 768px) {
    #welcome-message p {
        font-size: 15px !important;
        line-height: 22px;
        padding: 16px !important;
    }
}

@media (min-width: 1024px) {
    #welcome-message p {
        font-size: 16px !important;
        line-height: 24px;
        padding: 20px !important;
    }
}

#welcome-message .border-2{
    border-width: 2px;
}

/* Mobile responsive border */
@media (min-width: 640px) {
    #welcome-message .border-2{
        border-width: 3px;
    }
}

#main-content {
    margin-top: 20px;
}