/* ==========================================
   Gallery Page Styles
   ========================================== */

/* Page Hero */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--color-white);
    letter-spacing: 6px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Gallery Section */
.page-gallery-section {
    padding: 80px 5%;
    background-color: var(--color-white);
}

.page-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.page-gallery-grid .gallery-item {
    aspect-ratio: 1;
}

/* Back Link */
.back-link {
    text-align: center;
    margin-top: 60px;
}

/* Responsive */
@media (max-width: 1200px) {
    .page-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .page-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .page-gallery-section {
        padding: 40px 3%;
    }
}

@media (max-width: 480px) {
    .page-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
}
