/* General settings for content boxes and hover effects */
.info-box, .gallery-box {
    background-color: #ffffff; /* White background */
    border-left: 5px solid #006600; /* Green left border */
    border-top: 5px solid #006600; /* Green top border */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.info-box:hover, .gallery-box:hover {
    transform: translateY(-5px); /* Raise the box on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
}

/* Header styles within boxes */
.info-box h2, .gallery-box h2 {
    color: #004400; /* Darker green text */
    font-size: 200%; /* Increase font size to double */
    margin-bottom: 15px; /* Space between title and content */
}

/* Gallery item styles */
.gallery-box .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Adjust minmax for your preferred size */
    grid-gap: 15px;
}

.gallery-box .gallery-item {
    overflow: hidden; /* Optional for controlling image overflow */
    box-shadow: 0 4px 6px rgba(0,0,0,0.2); /* Consistent shadow */
    position: relative;
}

.gallery-box .gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.gallery-box .gallery-item:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.gallery-box .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
    color: #ffffff;
    text-align: center;
    padding: 5px;
    font-size: 0.9em;
}

/* Header style for post title and author */
h1.post-title {
    color: #000000; /* Black text color */
    margin-bottom: 10px;
}

.author-name {
    font-size: 16px;
    color: #666; /* Gray text color */
    margin-bottom: 20px;
}

/* Styles for H2 sections */
.info-box h2.section-title {
    color: #004400; /* Darker green text */
    font-size: 200%; /* Increase font size to double */
    margin-bottom: 15px; /* Space between title and content */
    border: none; /* Remove border */
}

.info-box .content {
    margin-top: 15px;
}

/* Styles for image descriptions under images */
.info-box img {
    max-width: 100%; /* Ensure images fit within the container */
    display: block;
    margin: 0 auto; /* Center images */
}

.info-box p.gallery-caption {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    font-weight: bold;
}

/* Ensure sidebar is on the right */
.sidebar-right {
    float: right;
}
