/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.filter-btn {
    background-color: var(--light-color);
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 3/2;
    cursor: pointer;
}

.gallery-item.vertical {
    aspect-ratio: 2/3 !important;
    grid-row: span 2;
    /* Will take up more vertical space due to image dimensions */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
    text-align: center;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay h3 {
    margin-bottom: 0.5rem;
}

.gallery-item .vertic

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 2rem;
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 5px solid white;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
}

/* Print info section */
.print-info {
    background-color: var(--light-color);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0;
}

.print-info h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.print-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.print-option {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.print-option h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.print-option ul {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.print-option ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.print-option ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Season Tabs - Specific to seasonal.html */
.season-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--neutral-color);
    flex-wrap: wrap;
}

.season-tab {
    padding: 1rem 2rem;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.season-tab.active {
    color: var(--primary-color);
}

.season-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.season-tab:hover {
    color: var(--accent-color);
}

.season-info {
    display: none;
}

.season-info.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.season-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.season-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.season-image img {
    width: 100%;
    height: auto;
    display: block;
}

.season-description {
    flex: 1;
    min-width: 300px;
}

.season-description h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.season-description p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Season-specific styles */
.spring-accent {
    color: #78A371; /* Spring green */
}

.summer-accent {
    color: #3D9BE9; /* Summer blue */
}

.fall-accent {
    color: #E67E22; /* Fall orange */
}

.winter-accent {
    color: #5D8CAE; /* Winter blue */
}