body{
    font-family: "helvetica-neue-lt-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.is-size-7-5 {
    font-size: .87rem !important;
}
.theme-toggle {
    cursor: pointer;
}
.bg-blue{background-color: #3092c0;}
.text-blue{color: #3092c0;}
.overlay-container {
    position: absolute;
    width: 347px;
    display: inline-block;
    top:0;
    right:0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 999;
}
.is-scrolled .overlay-container {
    transform: translateY(-100%);
    opacity: 0;
}
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 99;
}
.logo-img {
    transition: max-height 0.3s ease;
    max-height: 150px; /* Default size */
}
.is-scrolled .logo-img {
    max-height: 50px; /* Smaller size when scrolled */
}
.overlay-text {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    white-space: nowrap;
}
.hero{
    background-image: url('https://www.ryangmw.com/img/panoramic-view-exterior-2025-optimized.jpg');
    background-size: cover;
    background-position: center;
}
#reviews{
    background-image: url('https://www.ryangmw.com/img/bg-Coupon.jpg');
    background-size: cover;
    background-position: center;
}
.navbar-burger{color: black}
/* Custom Navbar Hover Effects */
.navbar-item.has-text-light:hover,
.navbar-link.has-text-light:hover {
    background-color: rgba(0, 0, 0, 0.1) !important;
    color: #ffffff !important; /* Keep it light */
}
/* For the dropdown link when it's open/hovered */
.navbar-item.has-dropdown:hover > .navbar-link.has-text-light {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

/* Desktop Spacing */
@media screen and (min-width: 1024px) {
    .hours-banner{display: none;}
    #hours-banner {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, transform 0.3s ease;
        transform: translateY(10px);
    }
    .is-scrolled #hours-banner {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .navbar-item, .navbar-link {
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
    }
}

/* Mobile Navbar Background */
@media screen and (max-width: 1023px) {
    .overlay-column{display: none;}
    .navbar.bg-blue {
        background-color: #3092c0 !important;
    }
    .navbar-menu {
        background-color: #2e333d !important;
        box-shadow: none;
        display: block !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .navbar-menu.is-active {
        max-height: 100vh; /* Adjust if menu is very long, or use a large enough value */
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .navbar-item{
        color:#ffffff !important;
        background-color: #2e333d !important;
        text-align: left !important;
        justify-content: flex-start !important;
    }
    .navbar-link {
        color: #ffffff !important;
        text-align: left !important;
    }
    /* Ensure dropdowns are collapsed on mobile and only show when is-active is added */
    .navbar-item.has-dropdown .navbar-dropdown {
        display: block !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        border: none;
    }
    .navbar-item.has-dropdown.is-active .navbar-dropdown {
        max-height: 1000px; /* Large enough for content */
    }
}
/* FAQ Styles */
.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-item.is-active .faq-answer {
    max-height: 500px; /* Adjust as needed */
    transition: max-height 0.5s ease-in;
}
.faq-item .faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item .faq-question .icon {
    transition: transform 0.3s ease;
}
.faq-item.is-active .faq-question .icon {
    transform: rotate(180deg);
}