/* /Layout/Footer.razor.rz.scp.css */
/* Footer Container */
.footer[b-85wh9aehvv] {
    display: flex;
    flex-wrap: wrap; /* Allows the elements to wrap on smaller screens */
    justify-content: space-between;
    padding: 40px 20px;
    background-color: #333; /* Dark background */
    color: white; /* White text */
    gap: 20px;
}

/* Contact Info Section */
.contact-info[b-85wh9aehvv] {
    flex: 1;
    min-width: 250px;
}

    .contact-info h3[b-85wh9aehvv] {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .contact-info p[b-85wh9aehvv] {
        margin: 5px 0;
        color: green;
        font-weight: 600;
    }

    .contact-info h4[b-85wh9aehvv] {
        margin-top: 10px;
    }

/* Map Section */
.map[b-85wh9aehvv] {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
}

    .map iframe[b-85wh9aehvv] {
        width: 100%;
        border: 0;
    }

/* Responsive Styling for Smaller Screens */
@media (max-width: 768px) {
    .footer[b-85wh9aehvv] {
        flex-direction: column; /* Stack the sections vertically on mobile */
        align-items: center; /* Center content */
    }

    .map iframe[b-85wh9aehvv] {
        height: 300px; /* Adjust height for mobile view */
    }
}

.socials[b-85wh9aehvv] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fab[b-85wh9aehvv] {
    font-size: 30px;
}

.social-icon[b-85wh9aehvv] {
    font-size: 2rem;
    color: #3b5998; /* Facebook's blue color */
    margin: 0 0;
    transition: color 0.3s ease;
}

    .social-icon:hover[b-85wh9aehvv] {
        color: #1877f2; /* Hover color */
    }
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-71jfp3wbap] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-71jfp3wbap] {
    flex: 1;
}

.sidebar[b-71jfp3wbap] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-71jfp3wbap] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-71jfp3wbap]  a, .top-row[b-71jfp3wbap]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-71jfp3wbap]  a:hover, .top-row[b-71jfp3wbap]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-71jfp3wbap]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-71jfp3wbap] {
        justify-content: space-between;
    }

    .top-row[b-71jfp3wbap]  a, .top-row[b-71jfp3wbap]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-71jfp3wbap] {
        flex-direction: row;
    }

    .sidebar[b-71jfp3wbap] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-71jfp3wbap] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-71jfp3wbap]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-71jfp3wbap], article[b-71jfp3wbap] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* Navbar Base Styles */
.navbar[b-18xvyb4khe] {
    background-color: white; 
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-container[b-18xvyb4khe] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.navbar-links[b-18xvyb4khe] {
    gap: 1rem;
}

/* Hamburger Menu */
.nav-toggle[b-18xvyb4khe] {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle-icon[b-18xvyb4khe] {
    font-size: 1.5rem;
    color: black;
}

/* Responsive Styles */
@media (max-width: 920px) {
    .navbar-container[b-18xvyb4khe]{
        display: flex;
        flex-direction: column;
    }
    
    .nav-toggle[b-18xvyb4khe] {
        display: block;
    }

    .navbar-links[b-18xvyb4khe] {
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: white;
        padding: 1rem;
        border-radius: 0.25rem;
        transform: translateY(-200%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-open[b-18xvyb4khe] {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-closed[b-18xvyb4khe] {
        transform: translateY(-200%);
        opacity: 0;
        visibility: hidden;
    }
}


.sub-menu[b-18xvyb4khe] {
    /*margin-top: 2.75rem;
    margin-right: 2rem;*/
}

.top-buttons[b-18xvyb4khe] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 1rem;
    margin-right: 1rem;
}

.booknow[b-18xvyb4khe], .callnow[b-18xvyb4khe] {
    color: #28a745;
    border: none;
    padding: 2px 5px;
    font-size: 14px;
    cursor: pointer;
    background: none;
    font-weight: 700;
    text-decoration: none;
}

    .booknow:hover[b-18xvyb4khe], .callnow:hover[b-18xvyb4khe] {
        color: #218838;
        text-decoration: underline;
    }

    .callnow i[b-18xvyb4khe] {
        margin-right: 8px;
        color: black;
    }
