/* 
* TouristAtt - Poland Tourism Website
* Responsive Stylesheet
*/

/* Laptop/Large screens */
@media screen and (max-width: 1200px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .hero h1 {
    font-size: 3rem;
  }
}

/* Tablets */
@media screen and (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image, 
  .about-text {
    width: 100%;
  }
  
  .services-grid,
  .destinations-grid,
  .blog-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .contact-form-container {
    order: -1;
  }
}

/* Mobile devices */
@media screen and (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--color-white);
    box-shadow: var(--shadow-large);
    transition: right var(--transition-normal);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-xl) var(--spacing-md);
    z-index: 1001;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    width: 100%;
  }
  
  .main-nav li {
    width: 100%;
    margin-bottom: var(--spacing-sm);
  }
  
  .main-nav a {
    display: block;
    width: 100%;
    padding: var(--spacing-xs) 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .services-grid,
  .destinations-grid,
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .testimonial-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .newsletter-form {
    padding: 0 var(--spacing-xs);
  }
  
  .cookie-content {
    padding: var(--spacing-sm);
  }
  
  .cookie-options {
    grid-template-columns: 1fr;
  }
}
