/**
 * Festify - Scroll indicator styles
 * Animated down arrow for indicating more content
 */

/* Scroll indicator container */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 10;
  }
  
  .scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  /* Single arrow styling */
  .scroll-arrow {
    width: 30px;
    height: 30px;
    display: inline-block;
    transform: rotate(45deg);
    border-radius: 50%;
    position: relative;
  }
  
  .scroll-arrow::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-right: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    top: 2px;
    left: 8px;
  }
  
  /* Animation for single arrow */
  .scroll-arrow {
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      opacity: 0;
      transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: rotate(45deg) translate(20px, 20px);
    }
  }
  
  /* Button color fixes for dark mode */
  [data-theme="dark"] .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
  }
  
  [data-theme="dark"] .btn-outline-primary:hover,
  [data-theme="dark"] .btn-outline-primary:focus {
    color: #212529; /* Dark text on light background */
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  /* Fix for primary button hover text color */
  .btn-primary:hover,
  .btn-primary:focus {
    color: white !important; /* Force white text on hover */
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
  }
  
  /* Make hero section position relative for scroll indicator */
  .hero-section {
    position: relative;
    min-height: 80vh; /* Reduced from 90vh to make content more visible */
    display: flex;
    align-items: flex-start; /* Changed from center to push content higher */
    justify-content: center;
    padding-top: 3vh; /* Add specific top padding based on viewport height */
  }