/* Global Styles */
body {
    background-color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
}

.company-phone, .company-email {
    color: green;
    padding-right: 5px;
}

.company-phone a, .company-email a {
    color: #f0f0f0;
}

.company-email {
    padding-left: 0.5rem;
}
.nav-top {
    background-color: #1f392f;
    color: #fff;
    height: 2.2rem; width: 100%;
}


/* Navbar */
.navbar {
    background-color: #2c5042;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-item, .navbar-burger span {
    color: #fff;
}

.navbar-white {
    color: white;
}

a.navbar-link {
    background: #2c5042 !important;
}

.navbar-link:hover {
    color: #fff;
}

.no-scroll {
    overflow: hidden;
    height: 100%;
}

/* Ensure dropdown arrows are visible */
.navbar-link::after {
    border-color: white !important;
}

a.navbar-item:hover {
    color: white;
    background-color: #1f392f;
}

.navbar-item:not(.has-dropdown),
.navabr-item:not(.has-dropdown):hover {
    color: white !important;
    background-color: transparent !important;
}

div.navbar-dropdown a.navbar-item:hover {
    color: #fff;
    background: #1f392f;
}
.navbar-link:hover {
    background-color: #1f392f;
}

.navbar-dropdown {
    border-top: 2px solid #1f392f !important;
    background-color: #2c5042;
}



/* Hero Section */
.hero {
    background: url('https://source.unsplash.com/1600x900/?garbage-truck') center center/cover no-repeat;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.hero-body {
    position: relative;
    z-index: 2;
}
.hero .title,
.hero .subtitle {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2C3E50;
    margin-bottom: 1rem;
}

/* Service Boxes */
.box {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: none;
    transition: transform 0.3s;
}

.box:hover {
    transform: scale(1.03);
}

/* Testimonials */
.testimonial {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Footer */
.footer {
    background-color: #2C3E50;
    color: #fff;
    padding: 2rem 1.5rem;
}

.has-text-highlight {
    color: #27ae60;
}

/* Video Background Styles */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: 0;
}

/* Dark Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust darkness as needed */
    z-index: 1;
}

/* Black Diamond Pattern Overlay */
.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Example diamond pattern from Transparent Textures */
    background-image: url('../images/arabesque.png');
    opacity: 0.2; /* Adjust opacity for desired effect */
    z-index: 2;
}

/* Ensure Hero Content is Above Overlays */
.hero .hero-body {
    position: relative;
    z-index: 3;
}

/* CONTENT: residential */
.hero-background {
    background: transparent !important;
    background-image: url('../images/truck.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

#services .column .card {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.9) !important;
}

#services .column .card:hover {
    box-shadow: 0 2px 14px rgba(0,0,0,0.5) !important;
    cursor: pointer;
}

#services .column .card .card-content {
    background-color: #1f392f;
}

#services .column .card .card-content p.title {
    color: #fff;
}

/* CONTENT: garbage-pickup */
#garbage-service .service-box {
    border-radius: 5px;
    border: 2px solid #ddd;
}

#garbage-service .service-title {
    background-color: rgb(5, 88, 5);
    padding: 5px 0 5px 10px;
}

#garbage-service .service-locations {
    padding-left: 10px; 
    padding-top: 10px;
}

#garbage-service .service-locations ul li {
    list-style-type: disc;
    list-style-position: inside;
}

#garbage-service .service-locations ul ul {
    margin-left: 1.5rem;
    padding-left: 0;
    padding-bottom: 5px;
}

#garbage-service .service-footer {
    border-top: 1px solid #ccc;
}

#garbage-service-info {
    background: #f7f7f7;
    padding: 3rem 1.5rem;
}

#garbage-service-info .has-text-centered {
    margin-bottom: 2rem;
}

#garbage-service-info ul {
    list-style-type: disc;
    list-style-position: inside;
    padding-bottom: 15px;
}

.pricing-card {
    border: 1px solid #ddd;
    box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.locations-box {
    background: #fff;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #15760d; /* Bulma primary color */
}


.contact-box {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.call-to-action .button {
    margin-top: 1rem;
}


.navbar-end .navbar-link {
    color: white !important;
    background-color: #2c5042 !important;
}

@media (max-width: 768px) {
    #garbage-service-info .has-text-centered {
        text-align: center;
    }
}

@media screen and (max-width: 1023px) {
    /* Remove white space around mobile menu */
    .navbar-menu {
        padding: 0;
        box-shadow: none;
    }
    
    .navbar-menu.is-active .navbar-dropdown {
        display: none;
    }
    
    .navbar-menu.is-active .navbar-item.has-dropdown.is-active .navbar-dropdown {
        display: block;
    }
    
    .navbar-menu.is-active .navbar-item.has-dropdown:not(.is-active) > .navbar-link:after {
        transform: rotate(-135deg);
    }
    
    .navbar-menu.is-active .navbar-item.has-dropdown.is-active > .navbar-link:after {
        transform: rotate(45deg);
    }

    .navbar-item {
        color: white !important;
        padding: 0.75rem 1rem;
        background-color: #1f392f !important;
    }

    .navbar-item:hover {
        background-color: #1c684b !important;
    }


    /* Make dropdown items clearly visible */
    .navbar-dropdown {
        padding: 0;
        border: none !important;
    }
    
    .navbar-dropdown .navbar-item {
        padding-left: 2rem;
        background-color: #1f392f;
    }
    
    .navbar-end .navbar-link {
        color: white !important;
        background-color: #153b2d !important;
    }

    .navbar-link::after {
        display: none;
    }

    /* Active state for mobile menu */
    .navbar-burger.is-active {
        background-color: #1f392f;
    }
    
    /* Remove extra spacing in mobile menu */
    .navbar-start, .navbar-end {
        padding: 0;
    }
}

/* Force white text for all navbar items */
.navbar-end .navbar-item {
    color: white !important;
    background-color: #2c5042 !important;
}

/* Hover states */
.navbar-end .navbar-item:hover {
    background-color: #1c684b !important;
}

/* Remove any inherited styles that might be causing invisibility */
.navbar-item {
    color: white !important;
}

.announcement-image {
    height: 200px;
    object-fit: cover;
    object-position: center;
}

/* Maintain card height consistency */
.announcement-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.announcement-card .card-content {
    flex-grow: 1;
}