/*HEADER*/
/* Sticky Header */

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.876);
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin: 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

/* Logo and Tagline */
.logo-container {
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
    margin-left: 95px; 
}

.logo {
    max-height: 80px; 
    display: block;
    margin-left: 80px;
    margin-bottom: 5px; 
}

.tagline {
    font-size: 14px;
    color: #6a1b9a;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    text-align: center;
    margin-left: 20px; 
}

/* Quick Links Navigation */
.quick-links .nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin-right: 15px; 
}

.quick-links .nav-item {
    margin-left: 1px; 
    /*margin-left: 2px; */
}

.quick-links .nav-link {
    font-size: 15px;
    color: #6a1b9a;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 5px;
    margin-right: 20px;
    font-family: 'Roboto', sans-serif; 
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-links .nav-link:hover {
    color: #c2743f; 
}

body, html {
    margin: 0;
    padding: 0;
}

.hamburger-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 20px; /* Adjust as needed */
}

.hamburger-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #6a1b9a;
    margin: 4px 0;
    margin-left: 250px;
    transition: 0.3s;
}


/* Adjustments for Mobile */
@media (max-width: 768px) {
    .header-wrapper {
        padding: 0 15px; /* Add padding to keep elements within the view */
        flex-wrap: nowrap;
    }

    .logo-container {
        margin-left: 0; /* Adjust margins for better spacing */
        flex-grow: 1;
    }

    /* Adjust position and size of hamburger icon */
    .hamburger-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        margin-right: 15px; /* Ensure there is space between the edge */
    }

    .hamburger-icon span {
        width: 25px;
        height: 3px;
        background-color: #6a1b9a;
        margin: 4px 0;
        transition: 0.3s;
    }

    /* Navigation Menu Styles */
    .quick-links .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust as needed to align below the header */
        right: 15px; /* Adjust to align with hamburger */
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        width: 80%; /* Adjust width for better usability */
        border-radius: 8px;
        padding: 10px 0;
        gap: 10px;
        z-index: 999; /* Ensure it appears above other elements */
    }

    .quick-links .nav.active {
        display: flex;
    }

    .quick-links .nav-link {
        padding: 15px 20px;
        text-align: left;
        border-bottom: 1px solid #ddd;
        font-size: 18px;
        color: #6a1b9a;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .quick-links .nav-link:last-child {
        border-bottom: none;
    }

    .quick-links .nav-link:hover {
        color: #c2743f;
    }
}


/**/

.footer {
    background-color: #1e0346;
    padding: 40px 20px;
    color: white;
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
    margin-left: 160px;
}

.footer-motto {
    font-style: italic;
    margin-bottom: 20px;
    margin-left: 100px;
}

.social-icons {
    margin-left: 160px;
    margin-top: 10px;
}

.social-icon {
    font-size: 34px;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #c16625;
}

.contact-list, .active-links {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 20px;
}

.contact-list li, .active-links li {
    margin-bottom: 10px;
    font-size: 19px;
}

.active-links li {
    margin-bottom: 15px;
    margin-right: 20px;
}

.contact-list li {
    margin-left: -80px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-list li i {
    margin-right: 8px;
    color: white;
}

.active-links a {
    color: white;
    text-decoration: none;
    font-size: 19px;
}

.active-links a:hover {
    text-decoration: underline;
}
.footer iframe {
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    width: 100%;
    height: 250px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-logo {
        margin-left: 0;
    }

    .footer-motto,
    .social-icons,
    .contact-list li {
        margin-left: 0;
    }

    .footer .container-fluid {
        padding: 0 10px;
    }

    .footer .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .active-links,
    .contact-list {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-logo {
        width: 120px;
    }

    .footer-motto {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .social-icon {
        font-size: 28px;
    }

    .active-links li,
    .contact-list li {
        font-size: 16px;
    }

    .contact-list li {
        justify-content: center;
    }

    .footer iframe {
        height: 200px;
    }
}
@media (max-width: 768px) {
    .contact-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .contact-list li {
        margin-bottom: 15px;
        display: flex;
        justify-content: center;
        font-size: 19px;
    }
}
li.nav-item.btn.btn-primary {
    background-color: #364682;
    padding: 10px;
}