
.gallery {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery-item {
    display: flex;
    align-items: center;
    gap: 20px;  
    border: 2px solid #000;
    border-radius: 12px;
    padding: 20px;
    background-color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    transition: background-color 0.3s;
}

.gallery-item:hover {
    background-color: #e0e0e0;  /* Highlight effect on hover */
}

.side-image {
    width: 250px;
    height: auto;
    border-radius: 8px;
}

.text-content {
    flex: 1;
}

h2, p {
    margin: 10px 0;
}

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 */
}
