/* static/css/gallery.css */
:root {
    --sh-gold: #D4AF37;
    --sh-dark: #1A1A1A;
    --sh-light: #F8F6F2;
}

.sh-hero {
    height: calc(100vh - 70px); /* Adjust for navbar height */
    position: relative;
    overflow: hidden;
}

.sh-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.sh-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.77, 0, 0.175, 1), 
                transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
    transform: scale(1.1);
    background-size: cover;
    background-position: center;
}

.sh-slide.active {
    opacity: 1;
    transform: scale(1);
}

.sh-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.sh-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.sh-hero-logo {
    font-size: 5vw;
    font-weight: 300;
    letter-spacing: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--sh-gold);
}

.sh-hero-logo strong {
    font-weight: 700;
    display: block;
    font-size: 1.2em;
}

.sh-divider {
    width: 100px;
    height: 2px;
    background: var(--sh-gold);
    margin: 30px auto;
}

.sh-book-btn {
    background: transparent;
    color: white;
    border: 2px solid var(--sh-gold);
    padding: 15px 40px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sh-book-btn:hover {
    background: var(--sh-gold);
    color: var(--sh-dark);
}

.sh-book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--sh-gold);
    transition: all 0.3s ease;
    z-index: -1;
}

.sh-book-btn:hover::before {
    left: 0;
}

.sh-nav-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.sh-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sh-dot.active {
    background: var(--sh-gold);
    border-color: var(--sh-gold);
    transform: scale(1.2);
}

/* Custom cursor for interactive elements */
.sh-hero a, 
.sh-hero button {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23D4AF37" stroke="%23D4AF37" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/></svg>'), pointer !important;
}

/* static/css/gallery.css */

/* Ensure first slide is visible while loading */
.sh-carousel .sh-slide:first-child {
    opacity: 1 !important;
    transform: scale(1) !important;
    z-index: 1;
}

/* Loading indicator */
.sh-carousel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--sh-gold);
    animation: spin 1s ease-in-out infinite;
    z-index: 10;
}

.sh-carousel.loaded::before {
    display: none;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 768px) {
    .sh-hero-logo {
        font-size: 8vw;
        letter-spacing: 5px;
    }
}

  .sh-carousel {
    position: relative;
  }
  
  .sh-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .sh-nav-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
  }
  
  .sh-nav-arrow-left {
    left: 20px;
  }
  
  .sh-nav-arrow-right {
    right: 20px;
  }
  
  .sh-nav-arrow i {
    color: white;
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .sh-nav-arrow {
      width: 40px;
      height: 40px;
    }
    
    .sh-nav-arrow i {
      font-size: 18px;
    }
  }