/*
Theme Name: EMS Plumbing Theme
Author: Gabe
Version: 1.0
*/

/* ===== GLOBAL ===== */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 
                 "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    background-color: #F3F4F6;
    color: #111827;
}

html {
    overflow-y: scroll;
}

body.menu-open .menu-toggle {
    opacity: 0;
    pointer-events: none;
}

p {
    margin-bottom: 16px;
    font-size: 16px;
    color: rgba(17,24,39,0.92);
}

@media (min-width: 1024px) {
    p {
        font-size: 17px;
    }
}

* {
    box-sizing: border-box;
}

a {
    transition: color 0.3s ease;
}

button {
    transition: background 0.3s ease,
                box-shadow 0.3s ease,
                transform 0.3s ease;
}

h1, h2, h3, h4 {
    color: #374151;
    font-weight: 600;
    letter-spacing: -0.3px;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 30px;
    margin-bottom: 20px;
    letter-spacing: -0.4px;
}

h3 {
    font-size: 22px;
}


main section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
    background: transparent;
}

@media (min-width: 1200px) {
    main section {
        padding: 50px 20px;
    }
}

main section:nth-child(even) {
    background: #f9f9f9;
}

/* ===== HEADER ===== */
header {
    background: #374151;
    color: white;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);

    /* Just enough clearance for sticky hamburger */
    padding: 60px 20px 30px 20px;
}

header p {
    color: white;
    margin: 8px 0;
    font-size: 18px;
}

header h1 {
    color: #3B82F6;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    margin: 0;
    font-size: 40px;
    line-height: 1.2;
}

/* ===== SHARED BLUE BUTTON STYLES ===== */

.menu-toggle,
.call-btn,
.request-form button,
.mobile-call-btn {
    background: linear-gradient(145deg, #2563EB, #3B82F6);
}

/* Hamburger */
.menu-toggle {
    position: fixed;
    top: 18px;
    left: 18px;
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 
    0 12px 28px rgba(0,0,0,0.35),
    0 0 0 3px rgba(255,255,255,0.95),
    0 0 0 6px rgba(59,130,246,0.28);
    backdrop-filter: blur(4px);
    z-index: 10003;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 28px rgba(0,0,0,0.35),
        0 0 0 3px rgba(255,255,255,0.95),
        0 0 0 6px rgba(59,130,246,0.28);
}

/* Call Button */
.call-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 13px 26px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 6px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
    letter-spacing: 0.5px;
}

.call-btn:hover {
    background: linear-gradient(145deg, #1D4ED8, #2563EB);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.header-tagline {
    font-size: 20px;
    font-weight: 500;
    margin-top: 12px;
}

.header-service-area {
    font-size: 17px;
    opacity: 0.9;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: #4B5563;
    color: #ffffff;
    padding: 8px 15px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 800px) {
    .business-split-bar {
        flex-direction: column;
        gap: 14px;
        text-align: center;
        font-size: 16px;
    }

    .split-divider {
        display: none;
    }
}


/* ===== SIDE MENU ===== */

.side-menu h3 {
    color: #2563EB;
    margin-bottom: 20px;
}

.side-menu a {
    color: white;
    text-decoration: none;
    margin-bottom: 15px;
}

.side-menu a.active {
    color: #2563EB;
    font-weight: 600;
    position: relative;
}

.side-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #2563EB;
}

.close-btn {
    font-size: 26px;
    color: white;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 20px;
}

.menu-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 10001;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 260px;
    height: 100%;
    background: #374151;
    padding: 30px 20px;
    box-shadow: 3px 0 10px rgba(0,0,0,0.3);
    transition: left 0.3s ease;
    z-index: 10002;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.menu-home {
    font-weight: bold;
    margin-bottom: 10px;
}

.menu-divider {
    border: 1px solid rgba(255,255,255,0.2);
    margin: 10px 0 20px 0;
}


/* ===== SERVICE PAGE LAYOUT ===== */
.service-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

.service-image,
.service-text {
    flex: 1;
    min-width: 300px;
}

.service-text {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.05);
    position: relative;
}

.service-flex img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ===== DUAL SERVICE SECTION (Homepage) ===== */

.dual-services {
    padding: 60px 40px;
    max-width: 1100px;
    margin: 60px auto;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

.dual-services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.dual-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box h3 {
    margin-top: 0;
    font-size: 22px;
    margin-bottom: 20px;
}

.service-box {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform 0.2s ease;
    border-top: 4px solid #2563EB; /* Gold accent for both */
}


.service-box ul {
    padding-left: 20px;
    margin-bottom: 20px;
}



/* ===== WHY CHOOSE ===== */
.why-choose ul {
    list-style: none;
    padding: 0;
}

.why-choose li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.why-choose li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: bold;
}

.about-highlights {
    margin-top: 25px;
    list-style: none;
    padding-left: 0;
}

.about-highlights li {
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
    font-weight: 500;
}

.about-highlights li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: bold;
}

/* ===== FORM ===== */
.request-form form {
    max-width: 500px;
    margin: 15px auto 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.request-form label {
    font-weight: bold;
    margin-top: 2px;
    margin-bottom: 2px;
}

.request-form small {
    font-size: 12px;
    color: #555;
    margin-top: -6px;
}

/* ===== SUBMIT BUTTON (Premium + Shine) ===== */

.request-form button {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 14px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;

    transition: transform 0.15s ease,
                box-shadow 0.15s ease;

    box-shadow: 0 8px 18px rgba(0,0,0,0.18);

    -webkit-tap-highlight-color: transparent;
}

/* Shine sweep layer */
.request-form button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.12) 50%,  /* reduced from 0.25 */
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
}

.request-form button:hover::before {
    animation: shineSweep 1.2s ease forwards;
}

@keyframes shineSweep {
    100% {
        left: 125%;
    }
}

.request-form button:hover {
    background: linear-gradient(145deg, #1D4ED8, #2563EB);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.request-form button:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.request-form button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.4);
}

.request-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 60px 30px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
    max-width: 900px;
    margin: 60px auto;
}

.request-form h2 {
    text-align: center;
    margin-bottom: 10px;
}

.request-form p {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

/* ===== CONTACT PREMIUM LAYOUT ===== */

.contact-info {
    background: #4B5563;
    color: white;
    padding: 70px 20px;
    text-align: center;
}
.contact-heading {
    font-size: 28px;
    margin-bottom: 50px;
    color: white;
}

.contact-dual {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    max-width: 1000px;
    margin: auto;
}

.contact-box {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    padding: 35px 30px;
    border-top: 4px solid #2563EB;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: fadeUp 0.8s ease forwards;
    background: rgba(255,255,255,0.20);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.contact-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    background: rgba(255,255,255,0.28);
}

.contact-category {
    color: #DBEAFE;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.contact-category::after {
    content: "";
    display: block;
    width: 100%;
    max-width: 180px;
    height: 2px;
    background: #2563EB;
    margin: 10px auto 0;
    opacity: 0.6;
}

.contact-person {
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 500;
}

.contact-title {
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.contact-divider {
    height: 2px;
    background: #2563EB;
    margin: 25px 0;
    opacity: 0.6;
}

.contact-phone {
    margin-top: 60px;
    text-align: center;
}

.contact-phone p {
    margin: 6px 0;
}

.contact-phone a {
    color: white;
    text-decoration: underline;
    font-size: 18px;
}

/* Subtle fade animation */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-person a {
    position: relative;
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding-bottom: 2px;
}

.contact-person a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #2563EB;
    transition: width 0.3s ease;
}

.contact-person a:hover::after {
    width: 100%;
}

.contact-person a:hover {
    color: #2563EB;
}

.contact-phone-link {
    position: relative;
    display: inline-block;
    color: white;
    font-size: 18px;
    text-decoration: none;
    padding-bottom: 3px;
}

@media (min-width: 769px) {
    .contact-phone-link {
        font-size: 22px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
}

.contact-phone-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #2563EB;
    transition: width 0.3s ease;
}

.contact-phone-link:hover::after {
    width: 100%;
}

.contact-phone-link:hover {
    color: #2563EB;
}

/* ===== FOOTER ===== */
footer {
    background: #1F2937;
    color: white;
    padding: 35px 20px 50px 20px; /* increase bottom padding */
    border-top: 2px solid #2563EB;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

footer h3 {
    color: #F3F4F6;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 14px;
}

footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #2563EB;
    opacity: 0.75;
}

footer p {
    color: #F3F4F6;
}

@keyframes emergencyPulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.emergency-active {
  color: #2563EB;
  animation: emergencyPulse 1.5s infinite;
}

.footer-emergency {
    font-weight: 600;
    color: #ffffff;
    background: rgba(255,255,255,0.08);
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
    margin: 6px 0 10px 0;
    letter-spacing: 0.5px;
}

footer a {
    color: #2563EB;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #3B82F6;
    transition: width 0.25s ease;
}

footer a:hover {
    color: #3B82F6;
}

footer a:hover::after {
    width: 100%;
}
/* ===== MOBILE STICKY ===== */
.mobile-call-btn { 
    display: none; 
}

@media (max-width:768px){

  .mobile-call-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    position:fixed;
    left:16px;
    right:16px;
    bottom:calc(12px + env(safe-area-inset-bottom));
    color:#ffffff;
    padding:12px 18px;
    min-height:50px;
    font-weight:bold;
    font-size:16px;
    text-decoration:none;
    border-radius:999px;

    z-index:9999;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.35),
        0 0 0 3px rgba(255,255,255,0.9);
  }

  body{
    padding-bottom:0px;
  }

}

#emergencyNotice{
    color:#2563EB;
}

.form-error {
    color: #ff4d4d;
    font-size: 13px;
    margin-top: -6px;
    margin-bottom: 8px;
}

button.loading {
    opacity: 0.7;
    pointer-events: none;
}
.service-text h2 {
    font-size: 34px;
    margin-bottom: 18px;
}

.service-text li {
    margin-bottom: 8px;
}
.request-form input,
.request-form textarea,
.request-form select {
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;

    transition: border 0.25s ease,
                box-shadow 0.25s ease,
                background 0.25s ease;
}

.request-form textarea {
    resize: vertical;
}

/* Hover state (desktop only devices) */
@media (hover: hover) {
    .request-form input:hover,
    .request-form textarea:hover,
    .request-form select:hover {
        border-color: rgba(59,130,246,0.7);
        box-shadow: 0 0 0 2px rgba(59,130,246,0.08);
        background: #fafafa; /* very subtle warm tint */
    }
}

.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
    outline: none;
}

@media (max-width: 768px) {
    header {
        padding-top: calc(90px + env(safe-area-inset-top));
    }

    header h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    main section {
        padding: 40px 18px;
    }

    .dual-services {
        padding: 40px 18px;
    }

    .contact-info {
        padding: 50px 18px;
    }

    .why-choose ul {
        margin-top: 10px;
    }

    .why-choose li {
        margin-bottom: 6px;
    }
}


/* ===== SHARED GALLERY IMAGE STYLES ===== */

.before-after img,
.single-image img,
.heating-gallery .single-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}
/* ===== MULTIPLE BEFORE/AFTER GROUPS ===== */

.comparison-set {
    margin-bottom: 35px;
}

.comparison-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
    color: #374151;
}

.before-after {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: nowrap;
}

.before-after img {
    max-width: 300px;
}

.image-label {
    margin-top: 8px;
    font-weight: 600;
    color: #374151;
}

/* Mobile adjustments */

@media (max-width: 768px) {

    .before-after {
        flex-direction: column;
        align-items: center;
    }

    .before-after img {
        max-width: 240px;
    }

    .comparison-set {
        margin-bottom: 25px;
    }

}

/* ===== WATER SOFTENER IMAGE BLOCK ===== */

.single-image {
    display: flex;
    justify-content: center;
}

.single-image img {
    max-width: 380px;
}

/* Mobile sizing */

@media (max-width: 768px) {
    .single-image img {
        max-width: 260px;
    }
}

/* ===== MOBILE CENTERING FOR IMAGE BLOCKS ===== */

@media (max-width: 768px) {

    /* Center maintenance + water section titles */
    .comparison-title {
        text-align: center;
    }

    /* Center before/after containers */
.before-after {
    justify-content: center;
}

    /* Center each image block */
    .before-after div {
        text-align: center;
    }

    /* Ensure images themselves are centered */
    .before-after img,
    .single-image img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

}

/* ===== FORCE IMAGE COLUMN CENTER ON MOBILE ===== */

@media (max-width: 768px) {

    .service-flex {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 10px;
}

    .service-text {
        order: 1;
    }

    .service-image {
        order: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .maintenance-gallery {
        margin-bottom: -60px;
}

}
/* ===== HEATING PAGE IMAGE ===== */

.about {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 50px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.05);
    margin: 30px auto;
}

main section:first-of-type {
    padding-top: 15px;
}
/* ===== SUCCESS PAGE ===== */

.success-container {
    text-align: center;
    padding: 80px 20px;
}

.success-box {
    background: white;
    max-width: 650px;
    margin: auto;
    padding: 60px 40px;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    border-top: 5px solid #2563EB;
}

.success-box h2 {
    margin-bottom: 15px;
}

.success-box p {
    margin-bottom: 20px;
    font-size: 17px;
}

.call-now {
    font-weight: bold;
    font-size: 18px;
    color: #374151;
}

.return-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #374151;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s ease;
}

.return-btn:hover {
    background: #2563EB;
    color: #ffffff;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 16px;
    font-size: 15px;
}

/* ===== MAINTENANCE DROPDOWN (FINAL CLEAN) ===== */

.maintenance-columns {
    display: flex;
    gap: 40px;
    flex-wrap: nowrap;

    width: 100%;
    max-width: 100%;
    margin: 8px 0;

    padding: 10px 0;

    position: relative; /* ← ADD THIS */
}

.maintenance-col {
    flex: 1;
    min-width: 0;
    padding: 16px 16px;

    background: #f9fafb; /* very light gray */
    border-radius: 10px;
}

@media (max-width: 768px) {

    .maintenance-columns {
        flex-direction: column;
        align-items: center;   /* centers columns */
        gap: 20px;
    }

    .maintenance-col {
        width: 100%;
        max-width: 500px;     /* keeps it visually centered */
    }

}

.maintenance-col h4 {
    text-decoration: underline;
    margin-bottom: 12px;
}

.heating h4 {
    color: #dc2626;
}

.cooling h4 {
    color: #2563EB;
}

.expand-trigger {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    cursor: pointer;
    font-weight: 500;
    color: #111827;
    position: relative;
    padding: 6px 0;
}

.expand-trigger:hover {
    color: #2563EB;
}

.expand-trigger:hover .expand-icon {
    color: #2563EB;
    transform: translateY(-1px) scale(1.05);
}

.expand-label {
    position: relative;
}

.expand-label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: #2563EB;
    transition: width 0.25s ease;
}

.expand-trigger:hover .expand-label::after {
    width: 100%;
}

.service-text > ul > li {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 10px; /* only affects top-level bullets */
}

.expand-icon {
    font-size: 16px;     /* smaller */
    margin-left: 0;
    color: #111827;      /* force black */
    display: inline-block;
    line-height: 1;
    transition: transform 0.25s ease;
}

.expand-trigger.active .expand-icon {
    transform: rotate(180deg);
}

.expand-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.4s ease,
        opacity 0.25s ease;
}

.expand-content.open {
    max-height: none;   /* ← THIS is the key fix */
    opacity: 1;
    overflow: visible;  /* ← allows full content display */
}

/* ===== MAINTENANCE LAYOUT FIXES ===== */

/* Center dropdown content on mobile */
@media (max-width: 768px) {

    .maintenance-columns {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-text {
        padding-left: 18px;
        padding-right: 18px;
    }

}
/* ===== FIX DROPDOWN WIDTH PROPERLY ===== */

.service-text > ul {
    padding-left: 26px;
}

.service-text ul ul {
    padding-left: 10px;
}

/* ===== FINAL WIDTH FIX ===== */

.maintenance-col ul {
    padding-left: 6px;
}

.service-area-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-area-list li {
    margin-bottom: 6px;
}

#emergencyNotice {
    display: none;
    font-weight: bold;
    margin-top: 10px;
}

.menu-toggle,
.close-btn {
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.close-btn {
    background: none;
}
