/* Responsive Styles for Feest Gids */

/* Tablet Styles (768px - 1024px) */
@media screen and (max-width: 1024px) {
  /* Base */
  .container {
    padding: 0 var(--space-3);
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* Hero */
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
  
  /* Events Slider */
  .event-slide {
    flex-direction: column;
    height: auto;
  }
  
  .events-slider {
    height: 700px;
  }
  
  .event-image img {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }
  
  .event-info {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
  }
  
  /* Inspiration */
  .inspiration-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }
  
  /* Timeline */
  .timeline-container::before {
    left: 40px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-icon,
  .timeline-item:nth-child(even) .timeline-icon {
    left: 20px;
  }
  
  /* About */
  .about-content {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .about-image, .about-text {
    flex: none;
    width: 100%;
  }
  
  /* Contact */
  .contact-container {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }
}

/* Mobile Styles (< 768px) */
@media screen and (max-width: 767px) {
  /* Navigation */
  .nav-desktop {
    display: none;
  }
  
  .nav-mobile {
    display: block;
  }
  
  /* Hero */
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  /* Events Slider */
  .events-slider {
    height: 600px;
  }
  
  /* Inspiration */
  .inspiration-grid {
    grid-template-columns: 1fr;
  }
  
  /* Testimonials */
  .testimonials-carousel {
    height: 350px;
  }
  
  /* Timeline */
  .timeline-container::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .timeline-item:nth-child(odd) .timeline-icon,
  .timeline-item:nth-child(even) .timeline-icon {
    left: 0;
  }
  
  /* Section Spacing */
  section {
    padding: var(--space-5) 0;
  }
  
  /* Footer */
  .footer-legal {
    flex-direction: column;
    gap: var(--space-1);
  }
}

/* Small Mobile Styles (< 480px) */
@media screen and (max-width: 479px) {
  /* Base */
  :root {
    --space-5: 32px;
    --space-6: 40px;
    --space-7: 48px;
    --space-8: 56px;
  }
  
  /* Header */
  .logo img {
    height: 40px;
  }
  
  /* Hero */
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  /* Events Slider */
  .events-slider {
    height: 550px;
  }
  
  .event-info {
    padding: var(--space-3);
  }
  
  .event-info h3 {
    font-size: 1.5rem;
  }
  
  /* Timeline */
  .timeline-content {
    padding: var(--space-2);
  }
  
  /* Contact Form */
  .form-group {
    margin-bottom: var(--space-2);
  }
  
  /* Scroll Top Button */
  #scrollTopBtn {
    width: 35px;
    height: 35px;
    bottom: 15px;
    right: 15px;
  }
}

/* Height-based Media Queries */
@media screen and (max-height: 700px) {
  .hero {
    height: 90vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--space-3);
  }
}

/* High Resolution Screens */
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
}