/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/
/* ========= Custom Header Layout Styling ========= */

.header-grid-layout {
    align-items: center;
    padding: 20px 0;
}

.contact-info p {
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
}

.logo-center img {
    max-height: 80px;
    margin: 0 auto;
}

.header-nav a {
    margin: 0 8px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    color: #000;
}

.header-nav a:hover {
    color: #e74c3c;
}

.header-hours {
    font-size: 13px;
    margin-top: 5px;
    line-height: 1.4;
}

.header-hours .status.closed {
    color: red;
    font-weight: bold;
}

.social-icons a {
    font-size: 16px;
    color: #111;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #e74c3c;
}

@media (max-width: 991.98px) {
    .header-grid-layout {
        text-align: center;
        row-gap: 15px;
    }

    .header-nav, .social-icons {
        justify-content: center !important;
    }
}
/*Header Left*/
.contact-info {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #222;
}

.contact-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: #8B1E24; /* Deep red matching the logo */
    font-size: 16px;
}

 /* Center the logo and menu */
.logo-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#logo img {
    max-height: 80px;
    height: auto;
    width: auto;
    display: block;
    margin: 0 auto;
}

.logo-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.logo-menu a {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding: 5px 8px;
    transition: color 0.3s ease;
}

.logo-menu a:hover {
    color: #e74c3c;
}

@media (max-width: 768px) {
    .logo-menu {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}