body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* Light background for warmth */
}

#wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    background-color: #ffebcd; /* Blanched Almond for a warm feel */
    width: 250px;
    height: 100vh;
    padding: 20px;
    position: sticky;
    top: 0;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

#content {
    background-color: #ffffff; /* White for content area */
    width: calc(100% - 250px);
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Soft shadow for content */
    border-radius: 8px; /* Rounded corners for a softer look */
}

.heading {
    width: 100vw;
    height: 10vh;
    margin-top: 0;
    background: #ffebcd;
    text-align: center;
}

.heading h1 {
    vertical-align: middle;
    line-height: 10vh;
}

.heading h1 a {
    text-decoration: none;
    font-family: "Comic Sans MS";
    color: #4a4a4a;
    transition: 0.3s ease-in-out;
}

.heading h1 a:hover {
    font-size: 2vw;
    color: #5a5a5a;
}

.sidebar-menu {
    list-style-type: none;
    padding: 0;
}

.sidebar-menu li {
    margin: 10px 0;
}

.sidebar-menu a {
    text-decoration: none;
    color: #5a5a5a; /* Darker gray for text */
    padding: 10px;
    display: block;
    border-radius: 4px; /* Rounded corners for links */
    transition: background-color 0.3s, color 0.3s;
}

.sidebar-menu a:hover {
    background-color: #ffcc99; /* Light orange on hover */
    color: #333; /* Darker text on hover */
}

h1 {
    color: #4a4a4a; /* Dark gray for headings */
}

p {
    line-height: 1.6;
    color: #666; /* Softer gray for paragraph text */
}

p q {
    font-style: italic;
}

div.gallery {
    border: 1px solid #e0e0e0; /* Light gray border */
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 16px;
    border-radius: 8px; /* Rounded corners for galleries */
    transition: transform 0.3s; /* Smooth scaling on hover */
}
  
div.gallery:hover {
    transform: scale(1.02); /* Slight zoom effect on hover */
}

div.gallery img {
    width: 100%;
    height: auto;
    max-height: 34vh;
    transition: transform 0.3s ease;
}

div.gallery img:hover {
    cursor: pointer;
}
  
div.desc {
    padding: 15px;
    text-align: center;
    font-style: italic;
    color: #555; /* Soft gray for description text */
}

.responsive {
    padding: 0 6px;
    float: left;
    width: calc(25% - 12px); /* 4 galleries per row accounting for margins */
}

@media only screen and (max-width: 1200px) {
    .responsive {
        width: calc(33.3333% - 12px); /* 3 galleries per row */
    }
}

@media only screen and (max-width: 900px) {
    .responsive {
        width: calc(50% - 12px); /* 2 galleries per row */
        margin: 6px 0;
    }
}
  
@media only screen and (max-width: 600px) {
    .responsive {
        width: 100%; /* 1 gallery per row */
    }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
