/* static/css/style.css */
.hero-section {
    background: url("../img/hero.png") center/cover no-repeat;
    height: 60vh;
    width: 100%; /* Ensure it covers full width */
}


:root {
    --interior-color: #0B1D51;
    --text-color: #d4af37;
    --boundary-color: #1C1C1C;
}
/* then can use these with var(--interior-color) */



/* I would like to get a lighter blue, and then make the bootstrap primary color this blue */


.navbar .custom-btn {
    background-color: var(--interior-color);
    color: var(--text-color);
    border-radius: 20px;
    transition: background-color 0.3s ease;
}
.navbar .custom-btn:hover {
    background-color: #24356e;
    color: #d4af37;
}


/* Custom font size for navbar links */
.navbar-nav .nav-link {
    font-size: 1rem;
}
  
/* Custom font size for navbar brand */
.navbar-brand {
    font-size: 1.75rem;
}

body {
    padding-top: 70px; /* adjust to your navbar height */
}












.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* lighter opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(2px); /* nice subtle blur effect */
    padding: 20px;
}

.modal-content {
    background: rgba(0, 0, 0, 0.3) !important; /* dark grey background */
    color: #fff !important; /* text turns white for contrast */
    padding: 30px 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: popIn 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 24px;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: #000;
}

/* Smooth pop animation */
@keyframes popIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
