body {
    margin: 0;
    padding: 0;
    background: #ffffff; /* Change this for the body background color */
    color: #000000; /* Text is now black */
    font-family: 'Arial', sans-serif;
    overflow-x: hidden; /* Prevent content shifting */
}

/* Menu Button */
#menuButton {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: #d3d3d3; /* Change this for the menu button background */
    color: #000000; /* Change this for the menu button text color */
    border: none;
    border-radius: 5px;
    padding: 12px 24px;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Change shadow color here */
}

#menuButton:hover {
    background-color: #b0b0b0; /* Change this for the hover effect */
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px; 
    width: 250px;
    height: 100vh;
    background-color: #f0f0f0; /* Sidebar background */
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.8); /* Change shadow color here */
    transition: left 0.3s ease;
    z-index: 10;
}

.sidebar.active {
    left: 0;
}

.sidebar nav {
    padding-top: 60px;
}

.sidebar nav a {
    display: block;
    padding: 15px 20px;
    color: #000000; /* Sidebar text color */
    text-decoration: none;
    border-bottom: 1px solid #c0c0c0; /* Change this for sidebar link dividers */
    transition: background 0.3s;
}

.sidebar nav a:hover {
    background-color: #d3d3d3; /* Sidebar hover effect */
}

/* Main Content Styling */
.content {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 60px;
}

.hero {
    text-align: center;
    padding: 40px 0;
    background: #e0e0e0; /* Change this for hero background */
    border-radius: 12px;
    border: 3px solid #b0b0b0; /* Change this for hero border */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Change this for hero shadow */
}

h1 {
    color: #000000; /* Main heading color */
}

.gallery {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.gallery-item {
    background: #f5f5f5; /* Change this for gallery item background */
    border-radius: 10px;
    text-align: center;
    padding: 15px;
    width: 30%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Change this for gallery shadow */
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    border-bottom: 3px solid #b0b0b0; /* Change this for gallery image border */
    border-radius: 10px 10px 0 0;
}

.gallery-item a {
    display: block;
    margin-top: 10px;
    color: #000000; /* Change this for gallery link text */
    text-decoration: none;
    font-weight: bold;
}