/* css/responsive.css — 响应式适配 */

/* 平板: 768px - 1199px */
@media (max-width: 1199px) {
  .hero {
    background-size: cover !important;
  }

  .hero-slide {
    background-size: cover !important;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .hero-arrow-prev {
    left: 10px;
  }

  .hero-arrow-next {
    right: 10px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .event-card {
    grid-template-columns: 1fr;
  }
  
  .event-image {
    min-height: 200px;
  }
}

/* 手机: < 768px */
@media (max-width: 767px) {
  :root {
    --nav-height: 60px;
  }

  .logo-image {
    height: 35px;
    width: auto;
  }
  
  .navbar-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  }
  
  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .navbar-toggle {
    display: flex;
  }
  
  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
    padding-top: 10px;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }
  
  .hero {
    height: auto !important;
    min-height: auto !important;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide {
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  .hero-arrow {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .hero-arrow-prev {
    left: 8px;
  }

  .hero-arrow-next {
    right: 8px;
  }

  .hero-indicators {
    bottom: 15px;
  }

  .hero-indicator {
    width: 10px;
    height: 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .event-card {
    grid-template-columns: 1fr;
  }
  
  .event-content {
    padding: 25px;
  }
}
