.tabitem {
    text-shadow: 0px 2px 3px rgba(0,0,0,0.51);
    font-family: 'Arbutus Slab';
    font-weight: bold;
    color: #ffffff!important;
    background: #317c8c!important;
    border-radius: 0px!important;
  }
  
  .tabitem.active {
    background: linear-gradient(82deg, #317c8c, #95b5bd 79%, #317c8c 100%)!important;
  }
  
  .footer-social {
    text-align: center;
    padding: 20px 0;
    background-color: #f8f8f8;
  }
  
  .footer-title {
    font-family: 'Abhaya Libre', serif;
    color: #000000;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .social-icons {
    font-size: 24px;
    display: flex;
    flex-direction: row;
  }
  
  .social-link {
    color: #317c8c;
    margin: 0 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .social-link:hover {
    color: white;
    background-color: #317c8c;
  }


  .welcome-text {
    font-size: 22px;
    margin-bottom: 0;
  }

  .salon-title {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 32px;
    padding-top: 10px;
    line-height: 1.6;
    margin-top: 0;
  }

  .highlight-letter {
    font-size: 45px;
  }


.home-container {
    max-width: 470px!important;
    text-align: left;
}


@media (max-width: 600px) {
    .home-container {
        max-width: 300px!important;
        text-align: right;
    }
}

/* Promotion Styles */
.promotion-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.promotion-content h5 {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promotion-content p {
    font-style: italic;
}

/* Loading spinner customization */
.spinner-border.text-primary {
    color: #317c8c !important;
}

/* Responsive promotion grid */
@media (max-width: 768px) {
    .promotion-card {
        margin-bottom: 20px;
    }
    
    .promotion-content {
        padding: 10px !important;
    }
    
    .promotion-content h5 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .promotion-card img,
    .promotion-card video {
        height: 200px !important;
    }
}

/* GLightbox Integration Styles */
.play-overlay {
    transition: opacity 0.3s ease;
}

.promotion-card:hover .play-overlay {
    opacity: 1 !important;
}

.promotion-card .play-overlay {
    opacity: 0.6;
}

/* GLightbox custom styling */
.glightbox-clean .gslide-description {
    background: rgba(49, 124, 140, 0.9);
    color: white;
    padding: 15px;
    border-radius: 5px;
}

.glightbox-clean .gslide-title {
    color: #317c8c;
    font-family: 'Abhaya Libre', serif;
    font-weight: bold;
}

/* Video play button styling */
.promotion-card a[data-glightbox*="video"] {
    position: relative;
    display: block;
}

.promotion-card a[data-glightbox*="video"]:hover .play-overlay {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Fallback for play icon */
.play-overlay i.fas {
    display: inline-block;
}

.play-overlay i.fas:before {
    content: "▶";
    font-style: normal;
    font-family: Arial, sans-serif;
    font-size: 48px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* If Font Awesome loads properly, override the fallback */
.fa-play-circle:before {
    content: "\f144" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

/* GLightbox overlay - soften darkness and ensure proper stacking */
.glightbox-open .goverlay {
    background: rgba(0, 0, 0, 0.7) !important; /* default is ~0.92; too dark for promos */
}

/* Prevent page shift/scroll bleed when lightbox is open */
body.glightbox-open {
    overflow: hidden;
}

/* If any overlay nodes linger after close, make them non-interactive */
body:not(.glightbox-open) .goverlay {
    opacity: 0 !important;
    pointer-events: none !important;
}