.body {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 300;
  }
.nav{
    font-family: "Roboto Mono", monospace;
    background-color: white;
    color: black;
    padding:0;
}

/* .navTop{
    font-family: "Roboto Mono", monospace;
    background-color: white;
    display: flex;
    padding: 0;
    align-items: center;
    justify-content: space-between ;
    border: none;
} */
/* .message{
    display: flex;
    align-items: center;
    background-color: rgb(184, 184, 184);
    padding:0;
    border-radius: 30px;
    flex-grow: 1; /* Allow the input boxes to take up more space 
    margin-left: 0.5rem;

}
.messageInput{
    border: 10;
    border-color: black;
    border-radius: 30;
}
.search{
    display: flex;
    align-items: center;
    background-color: rgb(184, 184, 184);
    padding:0;
    border-radius: 30px;
}

.searchInput{
    border: 10;
    border-color: black;
    border-radius: 30;
    }*/

/* Center the container with a background image */
/* General Styles */
/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Wrapper for Full-Page Sections */
.page {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Each page takes full viewport height */
    overflow: hidden;
}

/* NavTop Section */
.navTop {
    flex: 1; /* Take up the entire viewport height */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: top center;
    justify-content: center;
    background-color: rgba(253,251,179,255);
    background-image: url('/img/viewimage2.png'); 
    background-size: contain; /* Ensure the entire image is shown */
    background-position: bottom center; /* Align the image to the bottom and center it horizontally */
    background-repeat: no-repeat; /* Prevent tiling */
    height: 100vh; /* Full viewport height */
    width: 100%; /* Full container width */
}
/* Styling the Search Box */
.searchBox {
    font-family: "Roboto Mono", monospace;
    width: 80%; /* Full width on larger screens */
    max-width: 500px; /* Limit the width */
}

.searchInput {
    font-family: "Roboto Mono", monospace;
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent background */
}

/* Styling the Message Box */
.messageBox {
    width: 80%;
    max-width: 500px;
}

.messageInput {
    width: 100%;
    height: 150px; /* Larger height for message box */
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    resize: none; /* Disable resizing */
}

/* Styling the Submit Button */
.submitButton {
    width: 100%; /* Full width for easier tapping on mobile */
    max-width: 300px; /* Adjust for larger screens */
    padding: 15px; /* Increased padding for touch accessibility */
    font-size: 1.2rem; /* Responsive font size */
    font-weight: bold;
    border: none;
    border-radius: 5px;
    background-color: #89CFF0;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    touch-action: manipulation; /* Ensure proper touch handling */
    display: block; /* Ensure it is treated as a block-level element */
    margin: 10px auto; /* Centered and spaced */
}
/* .submitButton {
    width: 80%;
    max-width: 200px;
    padding: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    background-color: #89CFF0;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
} */

.submitButton:hover {
    background-color: #0056b3;
}

/* NavBottom and Content Section */
.content {
    flex: none; /* Don't stretch to fit height */
    padding: 20px;
    background-color: #fff; /* Replace with your desired background */
    color: #000;
}

/* Full Width for Bottom Navigation */
.navBottom {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for items */
    justify-content: center;
    gap: 10px; /* Spacing between items */
    padding: 22px;
    background-color: rgba(253,251,179,255);
}

/* Individual Menu Items */
.menuItem {
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

/* Content Below NavBottom */
.content {
    padding: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Slider Section */
.slider {
    display: flex;
    overflow-x: hidden; /* Hide content that overflows horizontally */
    width: 100%; /* Full container width */
    height: 100vh; /* Full viewport height */
    position: relative; /* Position for inner elements */
    background-color: #eee; /* Optional background color */
}

.sliderWrapper {
    display: flex; /* Make items align horizontally */
    flex-direction: row; /* Default row direction (horizontal flow) */
    width: 100%; /* Full container width */
    height: 100%; /* Full container height */
    transition: transform 0.5s ease-in-out; /* Smooth transitions */
}

.sliderItem img {
    width: 100%; /* Make the image take up the full width of its container */
    height: auto; /* Maintain the image's aspect ratio */
    max-width: 100vw; /* Ensure the image doesn't exceed the viewport width */
    max-height: 100vh; /* Ensure the image doesn't exceed the viewport height */
    object-fit: contain; /* Ensure the entire image is visible */
    display: block; /* Prevent inline spacing issues */
    margin: 0 auto; /* Center the image horizontally */
}

.sliderItem img {
    width: 100vh; /* Shrink the image width to 80% of its container */
    height: 100; /* Shrink the image height to 80% of its container */
    object-fit: contain; /* Ensure the image scales proportionally */
    margin: 0 auto; /* Center the image horizontally */
    display: block; /* Prevent inline spacing issues */
}

@media (max-width: 768px) {
    .sliderImage {
        max-width: 100vw; /* Ensure the image fits the viewport width */
        height: auto; /* Maintain the aspect ratio */
        object-fit: contain; /* Ensure the entire image is visible within the container */
    }
}

