/* Reset default styles */
body, h1, p {
    margin: 0;
    padding: 0;
}

/* Style for the thick black line */
.black-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 120px; /* Adjusted height */
    background-color: black;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Style for the logo container */
.logo {
    display: flex;
    flex-direction: column; /* Stack logo and text vertically */
    align-items: center; /* Center align logo and text */
    justify-content: center; /* Center align vertically */
}

/* Style for the logo image */
.logo img {
    max-height: 60px; /* Adjust as needed to create space for the "Menu" text */
}

/* Style for the menu text under the logo */
.menu-text {
    font-size: 16px; /* Font size for the menu text */
    font-family: Arial, sans-serif;
    margin-top: 5px; /* Space between logo and menu text */
    color: white;
    text-align: center;
    font-weight: bold; /* Set text to bold */
}

/* Style for the title */
.title-wrapper {
    flex: 1; /* Take remaining space */
    text-align: center;
}

.title {
    font-size: 48px;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none; /* Remove underline for the anchor tag */
    color: white; /* Ensure color matches the black-line */
    font-weight: bold; /* Make the title bold */
}

/* Style for the phone number */
.phone {
    font-size: 24px;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.bold {
    font-weight: bold;
}

/* Main content adjustment */
.content {
    text-align: center;
    padding-top: 180px; /* Increased padding to create space for the top bar */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Style for the main content text */
.content h1,
.content p {
    color: white;
}

/* Style for the image row */
.image-row {
    display: flex;
    flex-wrap: wrap; /* Allow images to wrap to next line */
    justify-content: space-around;
    margin-top: 40px;
    margin-left: 20px;
    margin-right: 20px;
}

/* Style for each image container */
.image-container {
    text-align: center;
    margin-bottom: 20px; /* Add space between each image-container */
    width: calc(20% - 40px); /* Adjust the width of each image-container */
    position: relative; /* Ensure position for absolute description */
    border: 6px solid #555; /* Thicker and slightly darker gray border around each image */
    border-radius: 16px; /* Rounded corners */
    overflow: hidden; /* Hide overflow from description */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /* Darker shadow */
}

/* Style for images within the row */
.image-container img {
    width: 100%; /* Ensure image fills its container */
    height: auto;
    display: block; /* Remove any default inline styling */
}

/* Style for image descriptions */
.image-info {
    color: white;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 0 0 16px 16px; /* Match image's rounded corners */
}

/* Ensure description is visible */
.image-info p {
    margin: 5px 0; /* Add margin to separate paragraphs */
    font-size: 14px; /* Adjust font size for description */
    line-height: 1.5; /* Adjust line height for readability */
    text-align: left; /* Align text to the left */
}

.image-info .label {
    font-weight: bold; /* Make labels bold */
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    /* Adjust title size */
    .title {
        font-size: 24px;
    }

    /* Adjust phone number size */
    .phone {
        font-size: 16px;
    }

    /* Adjust image container width */
    .image-container {
        width: calc(50% - 20px);
        margin: 10px;
    }

    /* Adjust content padding */
    .content {
        padding-top: 220px; /* Increased padding to create space below the black bar */
    }

    /* Open state for the side menu on mobile devices */
    .side-menu.open {
        width: 75%; /* Make the side menu cover 75% of the screen on mobile */
    }
}

/* Additional styles for smaller screens */
@media (max-width: 480px) {
    /* Adjust image container width for smaller screens */
    .image-container {
        width: calc(100% - 20px);
        margin: 10px;
    }

    /* Adjust title and phone number size */
    .title {
        font-size: 20px;
    }

    .phone {
        font-size: 14px;
    }

    /* Adjust content padding */
    .content {
        padding-top: 200px; /* Increased padding to create space below the black bar */
    }
}

/* Style for the side menu */
.side-menu {
    width: 0; /* Initial width is 0, so it's hidden */
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #2b2b2b; /* Darker gray color */
    overflow-y: auto; /* Allow vertical scrolling */
    overflow-x: hidden; /* Hide horizontal scroll */
    transition: 0.3s; /* Smooth transition for opening and closing */
    z-index: 999; /* Ensure it's above other content */
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.7); /* Darker shadow effect */
    padding-top: 100px; /* Space at the top to avoid covering */
    padding-bottom: 50px; /* Added bottom padding for more scrolling space */
}

.side-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.side-menu ul li {
    padding: 15px 30px;
    text-align: left;
    border: 1px solid lightgray; /* Light gray outline */
    margin: 5px 0; /* Space between menu items */
    border-radius: 4px; /* Optional: Rounded corners */
}

.side-menu ul li a {
    color: white; /* Text color */
    text-decoration: none;
    font-size: 18px;
    display: block;
}

.side-menu ul li a:hover {
    background-color: #333; /* Highlight on hover */
}

/* Open state for the side menu */
.side-menu.open {
    width: 30%; /* Adjust width as needed for desktop */
}

/* Open state for the side menu on mobile devices */
@media (max-width: 768px) {
    .side-menu.open {
        width: 75%; /* Make the side menu cover 75% of the screen on mobile */
    }
}

/* Phone Number Underline */
.underline {
    text-decoration: underline;
}