/* Navbar styling */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 70px; /* Fixed height for navbar */
}

/* Page Header positioning */
.page-header {
    padding-top: 120px; /* Increased padding to account for fixed navbar */
    padding-bottom: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-bottom: 40px;
}

/* Gallery section adjustment */
.gallery-section {
    padding-top: 20px;
}

/* Keep your existing gallery grid styles */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px;
}

.gallery-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        padding-top: 100px; /* Slightly less padding on mobile */
    }
}