﻿#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #EDE0D6;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

/* Main Content */
.content {
    padding: 0px 20px;
    text-align: center;
}

    .content h1 {
        font-size: 3rem;
        color: #EDE0D6;
        margin-bottom: 20px;
        animation: fadeIn 1s ease-in-out;
    }

    .content p {
        font-size: 1.25rem;
        color: #555;
    }

/* Header */
.main-header {
    background-color: #EDE0D6;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .main-header .logo {
        max-width: 150px;
        height: auto;
    }

    .main-header .nav-bar {
        display: flex;
        gap: 20px;
        list-style: none;
    }

    .main-header .nav-link {
        color: darkred;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 10px;
        border-radius: 5px;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

        .main-header .nav-link:hover {
            background-color: #FAF5EF;
            transform: translateY(-3px);
        }

/*footer*/
.main-footer {
    margin-top:20px;
    flex-shrink: 0;
    background-color: #8B0000;
    color: white;
    padding: 40px 20px 20px 20px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4.footer-brand {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #FF6F61; /* Your highlight color */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

/* Red underline for section headers */
.footer-section h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #FF6F61;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f2f2f2;
    margin-bottom: 10px;
}

/* Hours List Styling */
.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 8px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 5px;
}

/* Social Icon Circles */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-circle {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: background 0.3s ease;
    cursor: pointer;
}

.social-circle:hover {
    background: #FF6F61;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #ccc;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-footer {
        padding: 40px 20px 20px 20px;
        text-align: center;
    }

    .footer-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }

    .hours-list li {
        flex-direction: column;
        gap: 5px;
    }
}

.loading-progress {
    display: block;
    margin: 100px auto;
    width: 50px;
    height: 50px;
}

    .loading-progress circle {
        fill: none;
        stroke: #0078d7;
        stroke-width: 6;
        stroke-linecap: round;
        animation: spinner 1s linear infinite;
    }

@keyframes spinner {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}