/* Global styles */

        
        
body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 1.4rem; /* Adjust the base font size as needed */
}

.container-fluid {
    padding: 1.0rem;
}

/* Top header styles */
.top-header {
    background-color: #f8f9fa;
    padding: 1.25rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    flex-shrink: 0;
    height: 100%;
    margin-right: 1.25rem;
}

.logo img {
    height: auto;
    max-width: 100%;
    max-height: 75%; /* Adjust the max-height as needed */
}

.website-details {
    text-align: left;
}

.website-name {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.3125rem;
}

.tagline {
    font-size: 2rem;
    color: #666;
    margin-top: 0.3125rem;
}

.menu-wrapper {
    text-align: center;
    padding-top: 1.25rem;
}

.menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li {
    display: flex;
    align-items: center;
    margin-bottom: 0.625rem;
}

.menu-item {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.625rem;
    padding: 0.3125rem 0.625rem;
    border-radius: 1.25rem;
    background-color: #fff;
    border: 0.125rem solid transparent;
    white-space: nowrap;
    font-size: 2rem;
    flex-grow: 1;
}

.menu-item i {
    margin-right: 0.3125rem;
}

.menu-item-title {
    margin-left: 0.3125rem;
}

.menu-item:hover {
    color: #007bff;
}

.menu-item.active {
    border-color: royalblue;
}

.menu-item.active .menu-item-title {
    display: inline;
}

.content {
    padding: 2rem;
    margin-top: 1.0rem;
    font-size: 2rem;
}

.section {
    display: none;
}

.section.active {
    display: block;
}

.footer {
    background-color: #f8f9fa;
    padding: 1.25rem;
    position: sticky;
    bottom: 0;
    text-align: center;
    font-size: 1.5rem;
}

@media (max-width: 36rem) {
    
    
    .custom-mb-mobile {
      margin-bottom: 20px;
    }
    
    .logo img {
        max-height: 75%; /* Adjust the max-height as needed */
    }

    .website-name {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.75rem;
    }

    .menu-item {
        font-size: 1.75rem;
    }

    .content {
        margin-top: 1.0rem;
        font-size: 1.75rem;
        padding: 1.5rem;
    }
}

@media (max-width: 48rem) {
    .custom-mb-mobile {
      margin-bottom: 20px;
    }
    
    .website-name {
        font-size: 2.75rem;
    }

    .tagline {
        font-size: 2rem;
    }

    .menu-item {
        font-size: 2rem;
    }

    .content {
        font-size: 2rem;
        padding: 2rem;
    }
}

@media (min-width: 64rem) {
    .custom-mb-mobile {
      margin-bottom: 20px;
    }
    
    body {
        font-size: 0.8rem;
    }

    .website-name {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1.25rem;
    }

    .menu-item {
        font-size: 1.25rem;
    }

    .content {
        font-size: 1.25rem;
        padding: 3rem;
    }
}
