@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Jost:wght@300;400;500;600&display=swap');


body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    margin: 0;
    padding-top: 90px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Jost', sans-serif;
}

.site-footer {
    background-color: var(--dark-teal);
    color: var(--white);
    font-size: 1rem;
}

.footer-top {
    background-color: var(--orange);
    color: var(--white);
}

.site-footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: var(--orange);
}

.site-footer .social-icon {
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
    border-radius: 0.25rem;
    color: var(--white);
    background: transparent;
    text-decoration: none !important;
    transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-footer .social-icon:hover {
    background-color: var(--white);
    color: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Footer heading underline */
.footer-border {
    border-bottom: 1px solid var(--orange);
}


.site-footer .quick-link-button {
    display: block;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid transparent;
    color: var(--white);
    transition: background-color 0.35s ease, border-color 0.35s ease;
    z-index: 1;
    pointer-events: auto;
}

.site-footer .quick-link-button:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--orange);
}

/* Gallery Images */
.img-fluid.rounded {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.img-fluid.rounded:hover {
    transform: scale(1.05);
}


@media (max-width: 992px) {
.footer-top, .main-footer{
    padding: 0px 20px;
}
}