/* Main Styles */

/* Common Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1280px;
    margin: 0 auto;
  }
  
  /* Hero Section */
  .hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  }
  
  /* Featured Sites */
  .featured-site {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .featured-site:hover {
    transform: translateY(-5px);
  }
  
  /* AR Guide */
  .video-play-button {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .video-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  }
  
  /* UNESCO Section */
  .unesco-section {
    background-color: #f0f7ff;
    border-top: 1px solid #e0e7ff;
    border-bottom: 1px solid #e0e7ff;
  }
  
  /* Interactive Map */
  #cultural-map {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }
  
  #cultural-map:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* Buttons */
  .btn {
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Cultural Experiences Cards */
  .experience-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
/* FAQ Section */
.faq-item {
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .faq-toggle {
    transition: background-color 0.2s ease;
  }
  
  .faq-toggle:hover {
    background-color: #f9fafb;
  }
  
  .faq-toggle i {
    transition: transform 0.3s ease;
  }
  
  .faq-toggle i.rotate-180 {
    transform: rotate(180deg);
  }
  
  .faq-content {
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 0;
    opacity: 0;
  }
  
  .faq-content.active {
    max-height: 200px;
    opacity: 1;
  }
  
  /* Map filter buttons */
  .map-filter {
    transition: all 0.2s ease;
  }
  
  .map-filter:hover {
    background-color: #ebf5ff;
    border-color: #3b82f6;
  }
  
  .map-filter.active {
    background-color: #dbeafe;
    border-color: #2563eb;
    color: #1e40af;
  }
  
  /* App download buttons */
  .app-download {
    transition: transform 0.2s ease;
  }
  
  .app-download:hover {
    transform: translateY(-2px);
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }
    
    h2 {
      font-size: 1.8rem;
    }
    
    .hero-content {
      padding: 2rem 1rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
    }
    
    .hero-buttons a {
      text-align: center;
    }
    
    .unesco-section .flex {
      flex-direction: column;
    }
    
    .unesco-section .md\:w-1\/3 {
      width: 100%;
      margin-bottom: 2rem;
    }
    
    .unesco-section .md\:w-2\/3 {
      width: 100%;
    }
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animate-fadeIn {
    animation: fadeIn 0.5s ease forwards;
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
  }