/* /css/pages/gallery/gallery-claim.css */
/* DEPRECATED: Use .gallery-hero__description from gallery-modern.css instead */
/* This file is kept for backward compatibility but should not be used in new code */

.claim-text {
    max-width: 700px;
    margin: 1rem auto 2rem auto;
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    text-align: center;
  }
/* /css/pages/gallery/gallery-covers.css */
/* Covers container */
.gallery-covers {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .cover-block {
    cursor: pointer;
    text-align: center;
    max-width: 300px;
  }
  
  .cover-block img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .cover-block img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2), 0 4px 12px rgba(0, 0, 0, 0.4);
  }
  
  .cover-title {
    margin-top: 0.5rem;
    font-weight: bold;
    color: white;
    font-size: 1.1rem;
  }
/* /css/pages/gallery/gallery-grid.css */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 0 1rem;
  }
  
  .gallery-grid img {
    max-width: 240px;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  .gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2), 0 4px 12px rgba(0, 0, 0, 0.4);
  }
/* /css/pages/gallery/gallery-lightbox.css */
#lightbox,
  .lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
  }

  #lightbox.show,
  #lightbox.active,
  .lightbox.show,
  .lightbox.active {
    display: flex;
    opacity: 1;
  }
  
  .lightbox-image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10000;
  }
  
  .lightbox-image-wrapper img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    border: 3px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
    object-fit: contain;
  }
  
  .lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: var(--accent-color);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.2s ease;
  }
  
  .lightbox-close:hover {
    transform: scale(1.2);
    background: var(--accent-color);
    color: black;
  }
  
  .lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.8rem;
    color: var(--accent-color);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    z-index: 10001;
  }
  
  .lightbox-arrow.left {
    left: 2%;
  }
  
  .lightbox-arrow.right {
    right: 2%;
  }
  
  .lightbox-arrow:hover {
    transform: translateY(-50%) scale(1.1);
  }
  
  /* Lightbox counter */
  .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    color: var(--accent-color);
    background: rgba(0,0,0,0.5);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 1rem;
    z-index: 10001;
  }

  /* Modern standardized close button (white circle, black X) */
  .lightbox__close--modern {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: #fff !important;
    border: none !important;
    color: #000 !important;
    font-size: 2.5rem !important;
    cursor: pointer !important;
    padding: 0 !important;
    border-radius: 50% !important;
    width: 45px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    z-index: 10001 !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    font-family: Arial, sans-serif !important;
  }

  .lightbox__close--modern:hover {
    background: #f0f0f0 !important;
    transform: scale(1.1) rotate(90deg) !important;
  }
/* /css/pages/gallery/gallery-modern.css */
/* =====================================================
   GALLERY MODERN - ENGAGEMENT FUNNEL 2026
   ONE THING AT A TIME - Contextual Discovery
   ===================================================== */

/* =====================================================
   BASE STYLES
   ===================================================== */

.gallery-hero {
  text-align: center;
  padding: 2rem 0 3rem;
}

/* Titoli gestiti da base.css (.page-title, .page-claim) */

.gallery-stats-compact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.stat-compact {
  font-size: 0.9rem;
  color: #a0a0a0;
}

.stat-compact strong {
  font-size: 1.5rem;
  color: #d4af37;
  margin-right: 0.3rem;
  font-weight: 600;
}

/* =====================================================
   MAIN GALLERY CARDS (3 sections)
   ===================================================== */

.gallery-sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-card {
  display: block;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.4);
}

.gallery-card__media {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-card__media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-card__media img {
  transform: scale(1.03);
}

.gallery-card__previews {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  display: flex;
  gap: 0.3rem;
}

.gallery-card__previews img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.gallery-card__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.7);
}

.gallery-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(26, 26, 26, 0.8));
  font-size: 4rem;
  color: #d4af37;
}

.gallery-card__count {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(212, 175, 55, 0.95);
  color: #000;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.gallery-card__content {
  padding: 1.5rem;
}

.gallery-card__content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.gallery-card__content p {
  font-size: 0.9rem;
  color: #a0a0a0;
  line-height: 1.5;
}

/* =====================================================
   WHAT'S NEXT CARD (Overview Page)
   ===================================================== */

.whatsnext-wrapper {
  margin: 3rem 0 2rem;
}

.whatsnext-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Grid for showing primary + secondary cards side-by-side */
.whatsnext-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .whatsnext-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

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

.whatsnext-card {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.whatsnext-card:hover {
  transform: translateY(-3px);
  border-color: #d4af37;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.whatsnext-card__media {
  width: 200px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
}

.whatsnext-card__media--small {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.whatsnext-card__media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.whatsnext-card__content {
  flex: 1;
}

.whatsnext-card__content--full {
  grid-column: 1 / -2;
}

.whatsnext-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #d4af37;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.whatsnext-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

.whatsnext-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #a0a0a0;
}

.whatsnext-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.whatsnext-card__excerpt {
  font-size: 0.95rem;
  color: #a0a0a0;
  line-height: 1.6;
  margin: 0;
}

.whatsnext-card__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #fff;
  margin: 0.5rem 0 1rem;
  line-height: 1.6;
}

.whatsnext-card__source {
  display: block;
  font-size: 0.9rem;
  color: #a0a0a0;
  font-style: normal;
}

.whatsnext-card__arrow {
  font-size: 1.5rem;
  color: #d4af37;
  transition: transform 0.3s ease;
}

.whatsnext-card:hover .whatsnext-card__arrow {
  transform: translateX(5px);
}

/* =====================================================
   COLLECTIONS PAGE
   ===================================================== */

.gallery-header {
  margin-bottom: 2rem;
}

.gallery-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  transition: color 0.2s ease;
}

.gallery-back-link:hover {
  color: #d4af37;
}

/* Titoli gestiti da base.css (.page-title, .page-claim) */

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.collection-card {
  position: relative;
}

.collection-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.collection-card__link:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.4);
}

.collection-card__image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-card__image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.collection-card__link:hover .collection-card__image img {
  transform: scale(1.03);
}

.collection-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(212, 175, 55, 0.95);
  color: #000;
  padding: 0.3rem 0.7rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.collection-card__count {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.collection-card__content {
  padding: 1.2rem;
}

.collection-card__content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.collection-card__content p {
  font-size: 0.85rem;
  color: #a0a0a0;
  line-height: 1.4;
}

/* =====================================================
   DISCOVERY CARD INLINE (Collections - Every 4)
   Full-width banner style for better readability
   ===================================================== */

.discovery-card-inline {
  grid-column: 1 / -1; /* Span full width */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 26, 26, 0.95) 100%);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-left: 4px solid #d4af37;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.discovery-card-inline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #d4af37 0%, rgba(212, 175, 55, 0.3) 100%);
}

.discovery-card-inline:hover {
  transform: translateX(5px);
  border-color: #d4af37;
  box-shadow: -5px 5px 20px rgba(212, 175, 55, 0.15);
}

/* Header row: label + media (if present) */
.discovery-card-inline__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.discovery-card-inline__media {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.discovery-card-inline__media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.discovery-card-inline__content {
  flex: 1;
  min-width: 250px;
}

.discovery-card-inline__content--full {
  width: 100%;
}

.discovery-card-inline__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d4af37;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 4px;
  margin-bottom: 0.8rem;
}

.discovery-card-inline__label i {
  font-size: 1rem;
}

.discovery-card-inline h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.8rem 0;
  line-height: 1.3;
}

.discovery-card-inline__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.9rem;
  color: #b0b0b0;
  margin-top: 0.5rem;
}

.discovery-card-inline__meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.discovery-card-inline__excerpt {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.7;
  margin: 0.5rem 0 0 0;
  max-width: 800px;
}

.discovery-card-inline__count {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #d4af37;
  font-weight: 600;
  margin-top: 0.5rem;
}

.discovery-card-inline__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #fff;
  margin: 0.8rem 0;
  line-height: 1.6;
  max-width: 700px;
}

.discovery-card-inline cite {
  display: block;
  font-size: 0.9rem;
  color: #a0a0a0;
  font-style: normal;
  margin-top: 0.5rem;
}

.discovery-card-inline__arrow {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  font-size: 2rem;
  color: rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.discovery-card-inline:hover .discovery-card-inline__arrow {
  transform: translateY(-50%) translateX(5px);
  color: #d4af37;
}

/* =====================================================
   DETAIL PAGE - NEXT STEP CTA
   ===================================================== */

.nextstep-wrapper {
  margin: 4rem 0 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nextstep-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}

.nextstep-card {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.nextstep-card:hover {
  transform: translateY(-3px);
  border-color: #d4af37;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.nextstep-card__media {
  width: 180px;
  height: 130px;
  border-radius: 8px;
  overflow: hidden;
}

.nextstep-card__media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.nextstep-card__content {
  flex: 1;
}

.nextstep-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #d4af37;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.nextstep-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

.nextstep-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #a0a0a0;
}

.nextstep-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nextstep-card__count {
  font-size: 0.9rem;
  color: #a0a0a0;
  margin: 0;
}

.nextstep-card__arrow {
  font-size: 1.5rem;
  color: #d4af37;
  transition: transform 0.3s ease;
}

.nextstep-card:hover .nextstep-card__arrow {
  transform: translateX(5px);
}

.nextstep-explore {
  text-align: center;
  margin-top: 1.5rem;
}

.nextstep-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.nextstep-explore-link:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
  color: #d4af37;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */

@media (max-width: 900px) {
  .whatsnext-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .whatsnext-card__media {
    margin: 0 auto;
  }

  .whatsnext-card__arrow {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
  }

  .discovery-card-inline {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .discovery-card-inline__media {
    margin: 0 auto;
  }

  .discovery-card-inline__arrow {
    grid-column: 1;
    margin-top: -2rem;
    justify-self: end;
  }

  .nextstep-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nextstep-card__media {
    margin: 0 auto;
  }

  .nextstep-card__arrow {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
  }
}

@media (max-width: 768px) {
  .gallery-sections-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .collections-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .gallery-hero {
    padding: 1.5rem 0 2rem;
  }

  .gallery-stats-compact {
    flex-direction: column;
    gap: 0.8rem;
  }

  .whatsnext-card,
  .discovery-card-inline,
  .nextstep-card {
    padding: 1.2rem;
  }

  .whatsnext-card__media,
  .discovery-card-inline__media,
  .nextstep-card__media {
    width: 100%;
    height: 140px;
  }

  .whatsnext-card__media--small {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   AUDIO ITEMS - Optimized for Bandcamp Embeds (300x420)
   ===================================================== */

.gallery-items--audio {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.gallery-item--audio {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item--audio:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.audio-embed {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 440px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.8) 0%, #0a0a0a 100%);
}

/* Bandcamp iframe container - RESPONSIVE */
.audio-embed iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 420px;
  aspect-ratio: 350 / 470; /* aspect ratio tipico album con tracklist */
  border: none !important;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Adatta aspect ratio in base all'altezza originale dell'embed */
@supports (aspect-ratio: 1) {
  .audio-embed iframe[style*="height:470"] {
    aspect-ratio: 350 / 470;
  }
  .audio-embed iframe[style*="height:588"] {
    aspect-ratio: 350 / 588;
  }
  .audio-embed iframe[style*="height:786"] {
    aspect-ratio: 350 / 786;
  }
  .audio-embed iframe[style*="height:42"] {
    aspect-ratio: 350 / 42;
    min-height: 42px;
  }
}

/* Fallback link style when no embed */
.audio-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.95) 100%);
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  min-height: 420px;
  transition: all 0.3s ease;
}

.audio-link:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(26, 26, 26, 0.95) 100%);
}

.audio-link i {
  font-size: 3rem;
  transition: transform 0.3s ease;
}

.audio-link:hover i {
  transform: scale(1.1);
}

/* Audio item info section */
.gallery-item--audio .gallery-item__info {
  padding: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item--audio .gallery-item__info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.gallery-item--audio .gallery-item__info p {
  font-size: 0.9rem;
  color: #a0a0a0;
  line-height: 1.5;
}

/* =====================================================
   VIDEO ITEMS
   ===================================================== */

.gallery-items--videos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.gallery-item--video {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.gallery-item--video:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.4);
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Video badge for upcoming/scheduled */
.video-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(135deg, #d4af37 0%, #c9a135 100%);
  color: #1a1a1a;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.4);
}

.gallery-item--video .gallery-item__info {
  padding: 1.5rem;
}

.gallery-item--video .gallery-item__info h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.gallery-item--video .gallery-item__info p {
  font-size: 0.95rem;
  color: #a0a0a0;
  line-height: 1.5;
}

/* =====================================================
   RESPONSIVE - Audio & Video
   ===================================================== */

@media (max-width: 768px) {
  .gallery-items--photos {
    grid-template-columns: 1fr;
  }

  .gallery-item--photo {
    aspect-ratio: unset;
    min-height: 200px;
  }

  .gallery-item--photo img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .lightbox__prev,
  .lightbox__next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .lightbox__prev {
    left: 1rem;
  }

  .lightbox__next {
    right: 1rem;
  }

  .lightbox__close {
    top: 1rem;
    right: 1rem;
  }

  .gallery-items--audio {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-item--audio {
    max-width: 100%;
  }

  .audio-embed {
    min-height: auto;
    padding: 0.75rem;
  }

  .audio-link {
    min-height: 200px;
    padding: 1.5rem 1rem;
  }

  .gallery-items--videos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .gallery-items--audio {
    padding: 0 0.5rem;
  }

  .audio-embed iframe {
    min-height: 350px;
    aspect-ratio: 1 / 1.4; /* proporzione più compatta su mobile */
  }
}

/* =====================================================
   PHOTO ITEMS
   ===================================================== */

.gallery-items--photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item--photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item--photo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.gallery-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item--photo:hover .gallery-item__overlay {
  transform: translateY(0);
}

.gallery-item__overlay h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.gallery-item__credits {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* =====================================================
   LIGHTBOX
   ===================================================== */

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

.lightbox.active {
  display: flex;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: #d4af37;
  border-color: #d4af37;
  color: #000;
  transform: scale(1.1);
}

.lightbox__close {
  top: 2rem;
  right: 2rem;
}

.lightbox__prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

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

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

.lightbox__content {
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.lightbox__content img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox__info {
  text-align: center;
  color: white;
  padding: 1rem;
}

.lightbox__info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.lightbox__info p {
  font-size: 1rem;
  opacity: 0.8;
}

.lightbox__counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* =====================================================
   MIXED COLLECTION LAYOUT
   ===================================================== */

.gallery-mixed {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gallery-mixed__section {
  position: relative;
}

.gallery-mixed__badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* Media card for video/audio in mixed collections */
.gallery-mixed__media-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  max-width: 800px;
}

.gallery-mixed__media-card .video-embed {
  border-radius: 12px 12px 0 0;
}

.gallery-mixed__media-card .audio-embed {
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.gallery-mixed__media-card .audio-embed iframe {
  max-width: 100% !important;
  border-radius: 8px;
}

.gallery-mixed__media-info {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-mixed__media-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0 0.4rem;
}

.gallery-mixed__media-info p {
  font-size: 0.9rem;
  color: #a0a0a0;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .gallery-mixed {
    gap: 1.5rem;
  }

  .gallery-mixed__media-card {
    max-width: 100%;
  }
}

/* =====================================================
   EMPTY STATE
   ===================================================== */

.gallery-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: #a0a0a0;
}

.gallery-empty p {
  font-size: 1rem;
}

/* =====================================================
   GALLERY PAGE - ALL COLLECTIONS GRID
   ===================================================== */

.gallery-page {
  padding: 2rem 0 4rem;
  min-height: 60vh;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Titolo unificato - eredita da .page-title in base.css */
.gallery-title {
  /* Stili aggiuntivi specifici per gallery se necessari */
}

/* Sottotitolo unificato - eredita da .page-claim in base.css */
.gallery-description {
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Filter Pills ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-pill i {
  font-size: 0.85rem;
}

.filter-pill__count {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  margin-left: 0.25rem;
  color: #e0e0e0;
}

.filter-pill:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: #fff;
}

.filter-pill--active {
  background: rgba(212, 175, 55, 0.25);
  border-color: #d4af37;
  color: #f0d77a;
}

.filter-pill--active i {
  color: #f0d77a;
}

.filter-pill--active .filter-pill__count {
  background: rgba(212, 175, 55, 0.35);
  color: #f0d77a;
}

/* Card filtering states */
.collection-card[data-hidden="true"] {
  display: none;
}

/* Collections Grid */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Collection Card - NEVER crop images */
.collection-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

/* Cover image - CONTAIN, never crop */
.collection-card__cover {
  position: relative;
  width: 100%;
  height: 160px;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.collection-card__cover img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.collection-card:hover .collection-card__cover img {
  transform: scale(1.05);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    transparent 50%
  );
  pointer-events: none;
}

/* Placeholder for collections without covers */
.collection-card__cover--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  height: 160px;
}

.collection-card__cover--placeholder i {
  font-size: 4rem;
  color: #d4af37;
  opacity: 0.4;
}

/* Info block - below image */
.collection-card__info {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.collection-card__type {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d4af37;
}

.collection-card__type i {
  font-size: 0.7rem;
}

.collection-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}

.collection-card__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
  margin: 0.25rem 0;
  /* Truncate to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.collection-card__count {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: auto;
}

/* Featured badge */
.collection-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  padding: 0.35rem 0.75rem;
  background: rgba(212, 175, 55, 0.9);
  color: #0a0a0a;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

/* Type-specific accents */
.collection-card--video .collection-card__cover--placeholder i {
  color: #ef4444;
}

.collection-card--audio .collection-card__cover--placeholder i {
  color: #8b5cf6;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-page {
    padding: 1.5rem 0 3rem;
  }

  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 0.75rem;
  }

  .collection-card__cover,
  .collection-card__cover--placeholder {
    height: 120px;
  }

  .collection-card__info {
    padding: 0.75rem 1rem 1rem;
  }

  .collection-card__title {
    font-size: 1.1rem;
  }

  .collection-card__desc {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
  }

  .collection-card__count {
    font-size: 0.7rem;
  }
}

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

  .collection-card__cover,
  .collection-card__cover--placeholder {
    height: 140px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* /css/pages/gallery/gallery-subcategories.css */
/* Gallery Subcategories (overview mode) */
.gallery-subcategories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.subcategory-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--_news-panel, #121212);
  border: 1px solid var(--accent-color, #d4af37);
  border-radius: 14px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: white;
  overflow: hidden;
  min-height: 400px;
}

.subcategory-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color, #d4af37), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.subcategory-card:hover::before {
  opacity: 1;
}

.subcategory-card:hover {
  transform: translateY(-4px);
  background: var(--_news-panel, #141414);
  border-color: color-mix(in srgb, var(--accent-color, #d4af37) 30%, var(--accent-color-light, #f0d478) 70%);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 0 1px color-mix(in srgb, var(--accent-color, #d4af37) 20%, transparent);
}

/* Preview Images */
.subcategory-preview {
  position: relative;
  width: 100%;
  flex-shrink: 0;
}

.subcategory-preview--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 280px;
  background: #000;
}

.preview-image {
  position: relative;
  overflow: hidden;
}

.preview-image--1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.preview-image--2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.preview-image--3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.subcategory-card:hover .preview-image img {
  transform: scale(1.05);
}

.subcategory-preview--single {
  height: 280px;
  background: #000;
}

.subcategory-preview--single img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.subcategory-card:hover .subcategory-preview--single img {
  transform: scale(1.05);
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.subcategory-card:hover .preview-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.preview-overlay i {
  font-size: 4rem;
  color: white;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.subcategory-card:hover .preview-overlay i {
  transform: scale(1.15);
  color: var(--accent-color, #d4af37);
}

/* Fallback icon (when no images) */
.subcategory-icon {
  font-size: 3rem;
  color: var(--accent-color, #d4af37);
  margin: 2rem 0 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.subcategory-card:hover .subcategory-icon {
  transform: scale(1.1);
  color: var(--accent-color-light, #f0d478);
}

/* Content section */
.subcategory-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 2rem 2rem;
  position: relative;
}

.subcategory-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: white;
}

.subcategory-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 0;
}

.subcategory-count {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color, #d4af37);
  color: black;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-subcategories {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .subcategory-card {
    min-height: 350px;
  }

  .subcategory-preview--grid,
  .subcategory-preview--single {
    height: 220px;
  }

  .subcategory-content {
    padding: 1.25rem 1.5rem 1.5rem;
  }

  .subcategory-icon {
    font-size: 2.5rem;
    margin: 1.5rem 0 1rem;
  }

  .subcategory-title {
    font-size: 1.25rem;
  }

  .subcategory-description {
    font-size: 0.9rem;
  }

  .preview-overlay i {
    font-size: 3rem;
  }
}

/* /css/pages/gallery/gallery-tabs.css */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
  }
  
  .gallery-tabs button {
    position: relative;
    width: 140px;
    height: 100px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    color: var(--accent-color);
    font-weight: bold;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
    user-select: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  
  .gallery-tabs button span {
    position: relative;
    width: 100%;
    background: rgba(0,0,0,0.5);
    padding: 0.3rem 0.5rem;
    box-sizing: border-box;
    color: var(--accent-color);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    transition: color 0.3s ease;
  }
  
  .gallery-tabs button:hover,
  .gallery-tabs button.active {
    background-color: var(--accent-color);
    color: black;
    border-color: var(--accent-color);
  }
  
  .gallery-tabs button:hover span,
  .gallery-tabs button.active span {
    color: black;
  }
/* /css/pages/gallery/gallery-responsive.css */
/* ====== MEDIA QUERY GALLERY ====== */
@media (max-width: 768px) {
    .claim-text {
      font-size: 1rem;
      margin: 1rem 1rem 1.5rem 1rem;
    }
  
    .gallery-tabs {
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 1rem;
    }
  
    .gallery-tabs button {
      flex: 0 0 auto;
      width: 120px;
      height: 80px;
    }
  
    .gallery-grid {
      gap: 0.6rem;
      padding: 0 0.4rem;
    }
  
    .gallery-grid img {
      max-width: 140px;
      border-radius: 6px;
    }
  }
  
  @media (max-width: 480px) {
    .gallery-tabs button {
      width: 100px;
      height: 70px;
      font-size: 0.8rem;
    }
  
    .gallery-grid img {
      max-width: 110px;
    }
  }
/* /css/components/layout.css */
/* Sticky layout baseline: caricato globalmente via cssGlobal */
html, body { height: 100%; }

/* In alcuni browser mobile usare anche 100dvh può aiutare */
.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1 0 auto;
  min-height: 1px;
}

/* Evita che il footer si comprima */
footer,
.site-footer { flex-shrink: 0; }

/* === Reservations (CSS-only, no JS) === */
:root {
  --navbar-h: 52px;  /* altezza barra fissa in alto (slim) */
  --footer-h: 32px;  /* altezza una riga in basso  */
}

/* Spazio per navbar fissa (anche su responsive) + safe area iOS */
#main_content {
  padding-top: var(--navbar-h);
  padding-top: max(var(--navbar-h), env(safe-area-inset-top));
  padding-bottom: var(--footer-h);
  padding-bottom: max(var(--footer-h), env(safe-area-inset-bottom));
}

/* Mobile/tablet: navbar leggermente più bassa */
@media (max-width: 1024px){
  :root { --navbar-h: 48px; }
}

/* /css/components/navbar.css */
/* navbar.css — Navbar fissa e responsive (modulare, senza inline) */

/* BASE */
nav.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 6px 12px;
  min-height: var(--navbar-h, 52px);
  box-sizing: border-box;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 999;
}

/* Stato fisso (desktop e mobile) */
nav.navbar.navbar--fixed{
  position: fixed;
  top: 0; left: 0; right: 0;
}

/* Logo */
.nav-left .logo {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--accent-color);
  text-decoration: none;
}

/* Centro: menu desktop */
.nav-center { flex: 1; display: flex; justify-content: center; }

.menu {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.menu a { color: #fff; font-weight: 300; transition: color 0.2s; font-family: var(--font-ui); }
.menu a:hover,
.menu a.active,
.menu a.nav-active { color: var(--accent-color); font-weight: 600; }

/* Active state indicator - underline */
.menu a.nav-active {
  position: relative;
}

.menu a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-color);
  border-radius: 1px;
}

/* Logo active state */
.nav-left .logo.nav-active {
  position: relative;
}

.nav-left .logo.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-color);
  border-radius: 1px;
}

/* Destra: toggle lingua + hamburger */
.nav-right { display: flex; align-items: center; gap: .75rem; }

/* Language switch */
.lang-switch button{
  background: none;
  border: none;
  color: var(--accent-color);
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: .95rem;
  cursor: pointer;
  padding: 0 .25rem;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.lang-switch button:hover:not([aria-checked="true"]) { color: var(--light-accent); }
.lang-switch button[aria-checked="true"] { color: #fff; font-weight: 600; text-decoration: underline; cursor: default; pointer-events: none; }

/* ===== Responsive: hamburger e pannello mobile ===== */
.nav-toggle{ position:absolute; left:-9999px; }

/* L'hamburger di default è nascosto (desktop) */
.hamburger{ display:none; }

@media (max-width: 1199px){
  /* Navbar più sottile su mobile */
  nav.navbar{ padding: 4px 10px; min-height: var(--navbar-h, 48px); letter-spacing: 0.05em; }
  .nav-right{ gap: .5rem; }
  .nav-left .logo{ font-size: 1rem; }
  .lang-switch button{ font-size: .85rem; padding: 0 .2rem; }

  /* Su mobile/tablet: nascondo il menu inline e mostro l'hamburger */
  .nav-center{ display:none; }
  .hamburger{ display:inline-flex; line-height: 1; }

  /* ===== PANNELLO MOBILE MODERNO (2025 Best Practices) ===== */
  .nav-toggle:checked ~ .nav-center{
    display:block;
    position:fixed;
    top: 56px;
    right: 0;
    width: min(240px, 75vw);
    max-height: calc(100vh - 56px - 16px);
    overflow-y: auto;
    overflow-x: hidden;

    /* Glassmorphism moderno */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.92) 100%);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);

    /* Bordi e ombre sofisticate */
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 16px;
    box-shadow:
      -6px 6px 32px rgba(0, 0, 0, 0.6),
      inset 1px 1px 0 rgba(255, 255, 255, 0.05);

    z-index: 998;
    padding: 16px 14px;

    /* Animazione entrata fluida */
    animation: slideInFromRight 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  @keyframes slideInFromRight {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Menu items container */
  .nav-toggle:checked ~ .nav-center .menu{
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
  }

  /* Tutti i link - stile unificato e allineato a destra */
  .nav-toggle:checked ~ .nav-center .menu > li {
    width: 100%;
    text-align: right;
  }

  .nav-toggle:checked ~ .nav-center .menu a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: right;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  /* Dropdown toggle button - STESSO allineamento dei link */
  .nav-toggle:checked ~ .nav-center .menu .nav-dropdown-toggle {
    display: flex;
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  /* Hover effect con shimmer */
  .nav-toggle:checked ~ .nav-center .menu a:hover,
  .nav-toggle:checked ~ .nav-center .menu .nav-dropdown-toggle:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    transform: translateX(-4px);
    box-shadow: inset 0 0 12px rgba(212, 175, 55, 0.15);
  }

  /* Active state */
  .nav-toggle:checked ~ .nav-center .menu a.active,
  .nav-toggle:checked ~ .nav-center .menu a.nav-active,
  .nav-toggle:checked ~ .nav-center .menu .nav-dropdown-toggle.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-color);
    font-weight: 500;
  }

  /* Remove desktop underline on mobile - use background instead */
  .nav-toggle:checked ~ .nav-center .menu a.nav-active::after {
    display: none;
  }

  /* ===== DROPDOWN MOBILE (Accordion style) ===== */
  .nav-toggle:checked ~ .nav-center .nav-item-dropdown {
    width: 100%;
  }

  .nav-toggle:checked ~ .nav-center .nav-dropdown-menu {
    position: static;
    transform: none;
    left: auto;
    right: auto;
    top: auto;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    min-width: auto;

    /* Accordion animation */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: visible;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-toggle:checked ~ .nav-center .nav-item-dropdown.dropdown-open .nav-dropdown-menu {
    max-height: 500px;
    opacity: 1;
    padding: 8px 0 4px 0;
    margin-top: 4px;
  }

  /* Dropdown items - indentati leggermente e allineati a destra */
  .nav-toggle:checked ~ .nav-center .nav-dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 16px 10px 12px;
    margin: 2px 0;
    text-align: right;
    font-size: 0.9em;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid transparent;
  }

  .nav-toggle:checked ~ .nav-center .nav-dropdown-item:hover {
    background: rgba(212, 175, 55, 0.12);
    transform: translateX(-2px);
    border-left-color: rgba(212, 175, 55, 0.5);
  }

  .nav-toggle:checked ~ .nav-center .nav-dropdown-item.active {
    background: rgba(212, 175, 55, 0.18);
    color: var(--accent-color);
    font-weight: 500;
    border-left-color: var(--accent-color);
  }

  /* Chevron icon animation */
  .nav-toggle:checked ~ .nav-center .nav-dropdown-toggle i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-toggle:checked ~ .nav-center .nav-item-dropdown.dropdown-open .nav-dropdown-toggle i {
    transform: rotate(180deg);
  }

  /* Scrollbar styling per menu lungo */
  .nav-toggle:checked ~ .nav-center::-webkit-scrollbar {
    width: 6px;
  }

  .nav-toggle:checked ~ .nav-center::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
  }

  .nav-toggle:checked ~ .nav-center::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
  }

  .nav-toggle:checked ~ .nav-center::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
  }
}

/* ===== Dropdown Menu ===== */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: inherit;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  color: var(--accent-color);
  font-weight: 600;
}

.nav-dropdown-toggle i {
  font-size: 0.75em;
  transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .nav-dropdown-toggle i,
.nav-item-dropdown.dropdown-open .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  list-style: none;
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.dropdown-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.625rem 1.25rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 300;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.nav-dropdown-item:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-color);
  border-left-color: var(--accent-color);
}

/* Mobile dropdown styles - ACCORDION STYLE */
@media (max-width: 1199px) {
  .nav-item-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    display: flex !important;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0 !important;
    text-align: left;
    margin: 0 !important;
    position: static;
    color: #fff;
    font-weight: 300;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    min-width: auto;
    width: 100%;
    box-sizing: border-box;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .nav-item-dropdown.dropdown-open .nav-dropdown-menu {
    opacity: 1;
    max-height: 500px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    margin: 0.25rem 0;
  }

  .nav-dropdown-item {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.85em;
    text-align: right;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    border: none;
  }

  .nav-dropdown-item:hover {
    color: var(--accent-color);
  }
}

/* Accessibilità focus */
.lang-switch button:focus-visible,
.hamburger:focus-visible,
.nav-dropdown-toggle:focus-visible{ outline:2px solid var(--accent-color); outline-offset:2px; }

/* /css/components/hamburger.css */
/* hamburger.css - Stili base Hamburger */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }
  
  .hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
    display: block;
  }
/* /css/components/footer.css */
/* ===== Footer (component) — fixed, single line, CSS-only ===== */
.site-footer{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 32px; /* Altezza compatta che funziona */
    background: #000;
    color: #fff;
    border-top: 1px solid #cba135;
    font-family: var(--font-ui, "Montserrat", sans-serif);
    z-index: 900;
}

.site-footer .footbar-inner{
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 8px; /* solo orizzontale */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    flex-wrap: nowrap; /* una sola riga */
    overflow: visible; /* evita clipping */
}

/* LEFT: Copyright (must never shrink/clip) */
.footer-left, .foot-left{
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    min-width: max-content;
    height: 100%;
    color: #fff;
}

/* Copyright assoluto: visibile e centrato verticalmente */
.footer-copyright{
    position: absolute !important;
    top: 0 !important;
    left: 8px !important; /* allinea al padding del container */
    height: 32px !important; /* uguale all'altezza del footer */
    display: flex !important;
    align-items: center !important;
    color: #fff;
    font-size: .75rem;
    line-height: 1;
    white-space: nowrap;
    text-indent: 0;
    pointer-events: none; /* non intercetta i click sopra i link */
}

/* RIGHT: Legal/utility (takes remaining space) */
.footer-links{
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.footer-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.footer-links a,
.footer-links button,
.footer-list a,
.footer-list button{
    color: inherit;
    text-decoration: none;
    font-size: .75rem;
    line-height: 1;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
}

.footer-links a:hover,
.footer-links button:hover,
.footer-list a:hover,
.footer-list button:hover{
    text-decoration: underline;
}

/* a11y focus */
.footer-links a:focus-visible,
.footer-links button:focus-visible{
    outline: 2px solid #cba135;
    outline-offset: 2px;
}

/* Checkbox controller (hidden) */
.foot-toggle{
    position: absolute;
    left: -9999px;
}

/* Three-dot trigger */
.foot-trigger{
    display: none;
}

.foot-dot{
    display: block;
    width: 3px;
    height: 3px;
    background: currentColor;
    border-radius: 50%;
    margin: 0 1px;
}

@media (max-width: 767px){
    .foot-trigger{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        cursor: pointer;
    }

    .footer-links{
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 100%;
        background: #000;
        border-top: 1px solid #cba135;
        padding: 6px 8px;
        box-shadow: 0 -8px 24px rgba(0,0,0,.35);
        z-index: 901; /* sopra al testo assoluto */
    }

    .footer-list{ gap: 6px; }

    #foot_toggle:checked ~ .footer-links{
        display: flex;
        justify-content: flex-end;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
/* /css/components/continue-exploring.css */
/* ===== CONTINUE EXPLORING - Premium Widget Style ===== */

.continue-exploring {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(10, 10, 10, 0.95) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.continue-exploring::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Widget container - glass morphism */
.explore-widget {
  position: relative;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Animated border glow */
.explore-widget::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.4) 0%,
    transparent 30%,
    transparent 70%,
    rgba(212, 175, 55, 0.2) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.explore-widget:hover::before {
  opacity: 1;
}

/* Header section */
.explore-widget__header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
}

/* Decorative line under header */
.explore-widget__header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 2px;
}

.explore-widget__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

.explore-widget__title i {
  font-size: 1.1em;
  color: #d4af37;
  animation: compass-pulse 3s ease-in-out infinite;
}

@keyframes compass-pulse {
  0%, 100% {
    transform: rotate(0deg) scale(1);
    opacity: 0.8;
  }
  25% {
    transform: rotate(15deg) scale(1.1);
    opacity: 1;
  }
  75% {
    transform: rotate(-10deg) scale(1.05);
    opacity: 0.9;
  }
}

.explore-widget__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* Cards grid - horizontal on desktop */
.explore-widget__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Individual card */
.explore-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Card hover glow effect */
.explore-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg,
    rgba(212, 175, 55, 0.15) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.explore-card:hover {
  background: linear-gradient(180deg,
    rgba(212, 175, 55, 0.12) 0%,
    rgba(212, 175, 55, 0.03) 100%
  );
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(212, 175, 55, 0.15);
}

.explore-card:hover::before {
  opacity: 1;
}

/* Icon container */
.explore-card__icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(212, 175, 55, 0.05) 100%
  );
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.explore-card__icon i {
  font-size: 1.8rem;
  color: #d4af37;
  transition: all 0.4s ease;
}

.explore-card:hover .explore-card__icon {
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.25) 0%,
    rgba(212, 175, 55, 0.1) 100%
  );
  border-color: #d4af37;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.explore-card:hover .explore-card__icon i {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Content */
.explore-card__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.explore-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.explore-card:hover .explore-card__title {
  color: #f0d478;
}

.explore-card__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.5;
  font-weight: 300;
}

/* Arrow indicator */
.explore-card__arrow {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  color: rgba(212, 175, 55, 0.6);
  font-size: 0.9rem;
  transition: all 0.4s ease;
  margin-top: 0.5rem;
}

.explore-card:hover .explore-card__arrow {
  background: #d4af37;
  border-color: #d4af37;
  color: #0a0a0a;
  transform: translateY(4px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Section-specific colors */
.explore-card[href*="bio"] .explore-card__icon { border-color: rgba(139, 92, 246, 0.4); }
.explore-card[href*="bio"] .explore-card__icon i { color: #a78bfa; }
.explore-card[href*="bio"]:hover .explore-card__icon { border-color: #a78bfa; box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25); }

.explore-card[href*="concerts"] .explore-card__icon { border-color: rgba(239, 68, 68, 0.4); }
.explore-card[href*="concerts"] .explore-card__icon i { color: #f87171; }
.explore-card[href*="concerts"]:hover .explore-card__icon { border-color: #f87171; box-shadow: 0 8px 24px rgba(239, 68, 68, 0.25); }

.explore-card[href*="gallery"] .explore-card__icon { border-color: rgba(34, 197, 94, 0.4); }
.explore-card[href*="gallery"] .explore-card__icon i { color: #4ade80; }
.explore-card[href*="gallery"]:hover .explore-card__icon { border-color: #4ade80; box-shadow: 0 8px 24px rgba(34, 197, 94, 0.25); }

.explore-card[href*="repertoire"] .explore-card__icon { border-color: rgba(59, 130, 246, 0.4); }
.explore-card[href*="repertoire"] .explore-card__icon i { color: #60a5fa; }
.explore-card[href*="repertoire"]:hover .explore-card__icon { border-color: #60a5fa; box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25); }

.explore-card[href*="news"] .explore-card__icon { border-color: rgba(251, 146, 60, 0.4); }
.explore-card[href*="news"] .explore-card__icon i { color: #fb923c; }
.explore-card[href*="news"]:hover .explore-card__icon { border-color: #fb923c; box-shadow: 0 8px 24px rgba(251, 146, 60, 0.25); }

.explore-card[href*="press"] .explore-card__icon { border-color: rgba(236, 72, 153, 0.4); }
.explore-card[href*="press"] .explore-card__icon i { color: #f472b6; }
.explore-card[href*="press"]:hover .explore-card__icon { border-color: #f472b6; box-shadow: 0 8px 24px rgba(236, 72, 153, 0.25); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .explore-widget__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .explore-card {
    flex-direction: row;
    text-align: left;
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .explore-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .explore-card__icon i {
    font-size: 1.5rem;
  }

  .explore-card__content {
    align-items: flex-start;
  }

  .explore-card__arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
  }

  .explore-card:hover .explore-card__arrow {
    transform: translateY(-50%) translateX(4px);
  }

  .explore-card:hover {
    transform: translateX(8px);
  }
}

@media (max-width: 600px) {
  .continue-exploring {
    padding: 3.5rem 1rem;
  }

  .explore-widget {
    padding: 1.75rem 1.25rem;
    border-radius: 18px;
  }

  .explore-widget__header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
  }

  .explore-widget__title {
    font-size: 1.4rem;
    gap: 0.75rem;
  }

  .explore-widget__subtitle {
    font-size: 0.9rem;
  }

  .explore-card {
    padding: 1.25rem;
  }

  .explore-card__icon {
    width: 52px;
    height: 52px;
  }

  .explore-card__icon i {
    font-size: 1.3rem;
  }

  .explore-card__title {
    font-size: 1.15rem;
  }

  .explore-card__desc {
    font-size: 0.8rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .explore-widget__title i {
    animation: none;
  }

  .explore-card,
  .explore-card__icon,
  .explore-card__icon i,
  .explore-card__arrow {
    transition: none !important;
  }

  .explore-card:hover,
  .explore-card:hover .explore-card__icon {
    transform: none;
  }
}

