/* Responsive Styles */
/* Base responsive layout */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hotels-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

/* Tablet layout */
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .about-text {
    padding-right: 0;
    order: 2;
  }
  
  .about-images {
    order: 1;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form {
    order: 1;
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .footer-logo {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
}

/* Mobile layout */
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  /* Mobile Navigation */
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--color-secondary);
    flex-direction: column;
    align-items: center;
    gap: 0;
    overflow: hidden;
    transition: height var(--transition-normal);
    z-index: 99;
  }
  
  .nav-links.active {
    height: calc(100vh - 80px);
    padding: var(--space-4) 0;
    box-shadow: var(--shadow-md);
  }
  
  .nav-links li {
    margin: var(--space-3) 0;
  }
  
  .nav-links li a {
    font-size: 1.2rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  /* Hero Adjustments */
  .hero-content {
    width: 95%;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  /* Grid layouts */
  .hotels-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .about-images {
    grid-template-columns: 1fr;
  }
  
  .about-images .image:first-child {
    transform: translateY(0);
  }
  
  /* Footer adjustments */
  .footer-links {
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .footer-column {
    width: 100%;
  }
  
  /* Cookie consent */
  .cookie-content {
    display: flex;
    flex-direction: column;
  }
  
  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-actions button {
    width: 100%;
    margin-bottom: var(--space-1);
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-2);
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  section {
    padding: var(--space-5) 0;
  }
  
  .hero-content {
    width: 100%;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: var(--space-3);
  }
  
  .review-header {
    flex-direction: column;
    text-align: center;
  }
  
  .review-avatar {
    margin: 0 auto var(--space-2);
  }
  
  .about-text h3 {
    text-align: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .section-header {
    margin-bottom: var(--space-4);
  }
  
  .form-group {
    margin-bottom: var(--space-2);
  }
  
  .social-links {
    justify-content: center;
  }
  
  #header {
    height: 70px;
  }
  
  .logo img {
    height: 32px;
  }
  
  .nav-links.active {
    height: calc(100vh - 70px);
  }
}