/* Labels Page Styles */

.page-labels header.site-header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.page-labels .hero {
  min-height: 400px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-labels .hero {
    margin-top: 90px;
  }
}

@media (min-width: 1024px) {
  .page-labels .hero {
    margin-top: 100px;
  }
}

/* Introduction Section */
.intro-section {
    padding: var(--section-padding-mobile) 0;
}

@media (min-width: 768px) {
    .intro-section {
        padding: var(--section-padding-desktop) 0;
    }
}

.intro-content {
    max-width: 800px;
    margin: 0 auto var(--space-16);
    text-align: center;
}

.intro-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.intro-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* Gallery Section */
.gallery-section {
    padding: var(--section-padding-mobile) 0;
}

@media (min-width: 768px) {
    .gallery-section {
        padding: var(--section-padding-desktop) 0;
    }
}

.section-heading {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-8);
}

.labels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-6);
}

.label-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    background: white;
}

.label-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.label-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.label-item:hover .label-image {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding-mobile) 0;
}

@media (min-width: 768px) {
    .cta-section {
        padding: var(--section-padding-desktop) 0;
    }
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-4);
}

.cta-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--space-6);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: var(--space-4) var(--space-8);
    font-size: 1.125rem;
}

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

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    line-height: 1;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .labels-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: var(--space-4);
    }
    
    .label-image {
        height: 250px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .labels-grid {
        grid-template-columns: 1fr;
    }
}
