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;
}


.hero-section {
    background-image: url('/images/bloomington1.jpg'); /* use your uploaded image */
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    padding: 275px 100px;
}

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 40, 80, 0.55); /* blue overlay for readability */
    }

    .hero-section * {
        position: relative; /* keeps text above overlay */
    }

.btn-coffee {
    background-color: #6B4A1E;
    border-color: #6B4A1E;
    color: #fff;
    padding: 1rem 2rem; /* bigger button */
    font-size: 1.25rem; /* bigger text */
    border-radius: 8px; /* optional: nicer shape */
}

}

    .btn-coffee:hover {
        background-color: #5A3E18;
        border-color: #5A3E18;
    }
.btn-outline-light {
    padding: 0.9rem 1.8rem; /* bigger button */
    font-size: 1.15rem; /* bigger text */
    border-width: 2px; /* stronger outline */
    border-radius: 8px; /* optional: smoother corners */
}


.why-section {
    background-color: #f8f9fa;
}

    .why-section img {
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .why-section h6 {
        letter-spacing: 1px;
    }

    .why-section ul li span {
        font-size: 1.1rem;
    }

.why-img {
    width: 100%; /* makes it fill the column */
    max-width: 950px; /* increase this number to make it bigger */
    border-radius: 50px; /* more rounded corners */
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.bg-coffee {
    background-color: #6B4A1E;
}

.units-section h2 {
    font-size: 2rem;
}

.units-section .card-img-top {
    height: 220px;
    object-fit: cover;
}

.units-section .badge {
    font-size: 0.8rem;
    padding: 0.4em 0.8em;
    border-radius: 20px;
}

.apply-section .bg-overlay {
    background-color: rgba(30, 58, 109, 0.75); /* navy overlay */
}

.btn-brown {
    background-color: #8B5E3C;
    border-color: #8B5E3C;
    color: #fff;
}

    .btn-brown:hover {
        background-color: #734c30;
        border-color: #734c30;
    }
section > *:first-child {
    margin-top: 0 !important;
}
footer {
    margin-top: 0 !important;
}
.footer-logo {
    padding-bottom: 20px;
}

.modal-dialog.modal-slim {
    max-width: 450px; /* Slimmer width */
}

.modal-content.modal-tall {
    min-height: 600px; /* Taller vertical space */
}


.team-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: start;
    padding: 2rem 1rem;
}



.team-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    padding: 1.5rem;
    max-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }

    .team-card img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 1rem;
    }


.footer-logo-box {
    background-color: white;
    padding: 12px 18px; /* balanced padding */
    border-radius: 8px; /* smooth corners */
    display: inline-block; /* prevents stretching full width */
}

.footer-logo-img {
    display: block;
    margin-bottom: 10px;
    height: 50px;
}
@media (max-width: 576px) {
    .btn-coffee {
        margin-bottom: 1rem; /* adds space under the top button */
    }
}
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-title div {
    line-height: 1.2;
}

@media (max-width: 576px) {
    .top-title small {
        display: block;
        margin-top: 2px;
    }
}

.flash-badge {
    animation: flash 1s infinite;
}

@keyframes flash {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}
.mySwiper img {
    width: 100%;
    height: 350px; /* pick the height you want */
    object-fit: cover; /* crops nicely */
    border-radius: 12px;
}

.pulse-dot {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(0, 200, 83, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
    }
}
