/* Reset & General Styles */
body, html {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: transparent;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    overflow-y: auto; /* Allow vertical scrolling */
}

/* Header */
.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(51, 51, 51, 1); /* Solid grey background */
    padding: 15px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 300; /* Ensure header is above everything */
}

/* Logo */
.mobile-logo {
    max-width: 120px;
    height: auto;
    margin-left: 15px;
}

/* Hamburger Menu */
#menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    left: 320px;
    top: 15px;
    z-index: 400;
}

/* Mobile Menu */
#mobile-menu {
    display: none;
    background: rgba(51, 51, 51, 1); /* Solid grey background */
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 60px; /* Below the header */
    left: 0;
    z-index: 350; /* Ensure menu is above all content */
    text-align: center;
}

#mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobile-menu ul li {
    padding: 15px;
    border-bottom: 1px solid #777;
}

#mobile-menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    display: block;
}

/* Slideshow */
#slideshow {
    position: fixed !important;
    top: 0px !important;
    left: 0px !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 50 !important;
    display: block !important;
    overflow: hidden;
    background: transparent !important;
}

#slideshow img {
    width: 100vw !important; /* Ensure full width */
    height: 100vh !important; /* Ensure full height */
    object-fit: cover !important; /* Cover entire space without distortion */
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    left: 0 !important;
    top: 0 !important;
}

#slideshow img.active {
    opacity: 1;
    position: relative;
}

/* Main Content - Ensures Scrolling Below Header & Footer */
#main-content {
    position: absolute !important;
    z-index: 100 !important; /* Ensure content is above the slideshow */
    background: rgba(255, 255, 255, 0.9); /* Slight transparency for readability */
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black !important;
    text-align: center;
}

/* Footer */
.mobile-footer {
    background-color: rgba(51, 51, 51, 1); /* Solid grey background */
    color: white;
    padding: 10px;
    width: 100%;
    position: fixed;
    bottom: 0;
    text-align: center;
    z-index: 300; /* Ensure it's always visible */
}

<!-- Mobile Footer -->
<footer class="mobile-footer">
    <p>&copy; 2025 Champion City Concrete | Call us: 
        <a href="tel:+19377299104" class="phone-link">937-729-9104</a>
    </p>
</footer>


.mobile-footer a:hover {
    text-decoration: underline;
}