.gallery-page {
    background-color: #f8f9fa;
    }
    
    .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    }
    
    .gallery-hero {
    background-image: url("assets/img/spice-about-page.jpg");
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    }
    
    .gallery-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    }
    
    .gallery-hero .hero-content {
    position: relative;
    z-index: 1;
    }
    
    .gallery-hero .hero-title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 16px;
    }
    
    .gallery-hero .hero-description {
    font-size: 20px;
    color: #f0f0f0;
    }
    
    .gallery-intro {
    padding: 60px 0 40px;
    background-color: #fff;
    }
    
    .intro-text {
    font-size: 18px;
    color: #1b2b4d;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    }
    
    .gallery-filter {
    padding: 0 0 40px;
    background-color: #fff;
    }
    
    .filter-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    }
    
    .filter-btn {
    padding: 10px 24px;
    background-color: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 16px;
    color: #1b2b4d;
    cursor: pointer;
    transition: all 0.3s ease;
    }
    
    .filter-btn:hover {
    background-color: #e5e7eb;
    }
    
    .filter-btn.active {
    background-color: #35419c;
    color: white;
    border-color: #35419c;
    }
    
    .gallery-grid {
    padding: 0 0 80px;
    background-color: #fff;
    }
    
    .gallery-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    }
    
    .gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 300px;
    }
    
    .gallery-item:hover {
    transform: translateY(-5px);
    }
    
    .gallery-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    }
    
    .gallery-item img, 
    .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }
    
    .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    opacity: 0;
    }
    
    .gallery-item:hover .overlay {
    opacity: 1;
    }
    
    .overlay h3 {
    font-size: 20px;
    margin-bottom: 8px;
    }
    
    .overlay p {
    font-size: 14px;
    opacity: 0.8;
    }
    
    .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    }
    
    .play-btn svg {
    width: 24px;
    height: 24px;
    stroke: white;
    margin-left: 4px;
    }
    
    .play-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
    }
    
    /* Lightbox styles */
    .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: 2000;
    }
    
    .lightbox.active {
    display: flex;
    }
    
    .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    }
    
    .lightbox-media-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    }
    
    .lightbox-media-container img,
    .lightbox-media-container video {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    }
    
    .lightbox-caption {
    color: white;
    text-align: center;
    padding: 16px;
    font-size: 18px;
    }
    
    .close-lightbox,
    .lightbox-prev,
    .lightbox-next {
    position: absolute;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 16px;
    z-index: 2001;
    }
    
    .close-lightbox {
    top: 20px;
    right: 20px;
    }
    
    .close-lightbox svg,
    .lightbox-prev svg,
    .lightbox-next svg {
    width: 24px;
    height: 24px;
    stroke: white;
    }
    
    .lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    }
    
    .lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    }
    
    /* Responsive styles */
    @media (max-width: 768px) {
    .gallery-hero .hero-title {
        font-size: 36px;
    }
    
    .gallery-hero .hero-description {
        font-size: 16px;
    }
    
    .intro-text {
        font-size: 16px;
        padding: 0 16px;
    }
    
    .filter-buttons {
        padding: 0 16px;
    }
    
    .gallery-items {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .overlay h3 {
        font-size: 18px;
    }
    
    .overlay p {
        font-size: 12px;
    }
    
    .play-btn {
        width: 50px;
        height: 50px;
    }
    
    .play-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 8px;
    }
    
    .lightbox-prev svg,
    .lightbox-next svg {
        width: 20px;
        height: 20px;
    }
    }