/* Hero Buttons Fix for Small Screens */

/* Additional styles for mobile hero buttons */
@media (max-width: 768px) {
  .hero-features {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 2rem;
    padding: 0 1rem;
  }
  
  .feature-item {
    width: 100%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Add animation for smoother appearance */
  .feature-item.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Small mobile screens - increase spacing, add borders for clarity */
@media (max-width: 480px) {
  .hero-features {
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
  
  .feature-item {
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  
  /* Extra spacing class */
  .hero-features.small-screen-spacing {
    gap: 1.5rem;
  }
  
  .hero-features.small-screen-spacing .feature-item {
    margin-bottom: 1.5rem;
  }
}

/* Extra small screens - maximum spacing, simpler visuals */
@media (max-width: 360px) {
  .hero-section {
    min-height: calc(100vh + 60px);
  }
  
  .hero-content {
    padding-bottom: 6rem;
  }
  
  .hero-features {
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .feature-item {
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* First button should stand out more */
  .feature-item:first-child {
    background-color: rgba(255, 177, 0, 0.25);
    border-color: rgba(255, 177, 0, 0.4);
  }
  
  /* Fixed position TripAdvisor/WhatsApp buttons */
  .floating-social {
    position: fixed;
    bottom: 6rem;
    right: 1rem;
    z-index: 98;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  /* Make sure fixed "Book Now" button is clear and positioned properly */
  .sticky-book-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    font-weight: 600;
    z-index: 99;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  }
} 