/* Responsive design */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  
  .burger {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2.3rem;
  }
  
  .content-section {
    margin: 60px 20px;
    padding: 40px 25px;
  }
  
  header {
    padding: 15px 30px;
  }
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 1.5rem 1rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }
  
  .cookie-text h3 {
    font-size: 1.1rem;
  }
  
  .cookie-text p {
    font-size: 0.9rem;
  }
  
  .faq-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .services-columns {
    flex-direction: column;
  }
  
  .booking form {
    padding: 0 10px;
  }
  
  .form-success h2 {
    font-size: 1.6rem !important;
  }
  
  .form-success p {
    font-size: 1rem !important;
  }
  
  .content-section h2 {
    font-size: 1.8rem;
  }
  
  header {
    padding: 15px 20px;
  }
  
  .fade-in.js-fade {
    transform: translateY(30px);
  }
  
  .cookie-notice {
    padding: 40px 25px;
  }
  
  .cookie-notice .notice-icon {
    font-size: 3rem;
  }
  
  .cookie-notice h3 {
    font-size: 1.5rem;
  }
  
  .cookie-notice p {
    font-size: 0.95rem;
  }
  
  .btn-accept-cookies {
    width: 100%;
    padding: 16px 30px;
  }
  
  .faq-category {
    padding: 20px;
  }
  
  .faq-category h3 {
    font-size: 1.2rem;
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus-visible {
  outline: 2px solid #d4a373;
  outline-offset: 2px;
}

body.dark-theme *:focus-visible {
  outline-color: #cda679;
}

.booking select option:checked {
  background: #d4a373;
  color: white;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .fade-in.js-fade {
    opacity: 1;
    transform: none;
  }
  
  .portfolio-grid img {
    opacity: 1;
    transform: none;
  }
}
