/* Responsive Styles for Yenarinn Casino Hotel */

/* Base Mobile First Approach */
.container {
  width: 90%;
  padding: 0 15px;
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
  /* Header & Navigation */
  .main-nav {
    flex-direction: column;
    padding: 10px;
  }
  
  .nav-left ul, .nav-right ul {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }
  
  .nav-left, .nav-right {
    width: 100%;
  }
  
  .nav-left ul li, .nav-right ul li {
    margin: 8px 0;
  }
  
  .logo {
    margin: 10px 0;
  }
  
  .logo h1 {
    font-size: 1.8rem;
  }
  
  .logo p {
    font-size: 0.7rem;
  }
  
  /* Hero Section */
  .hero {
    height: 90vh;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  /* About, Dining, Spa Sections */
  .about-content, .dining-content, .spa-content {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .about-image, .dining-image, .spa-image {
    order: -1; /* Images appear first on mobile */
  }
  
  /* Services & Adventures Grids */
  .services-grid, .adventure-cards {
    grid-template-columns: 1fr;
  }
  
  /* Awards Section */
  .awards-content {
    flex-direction: column;
  }
  
  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: 4px;
  }
  
  .newsletter-form button {
    margin-top: 10px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .footer-logo {
    text-align: center;
    margin-bottom: var(--spacing-md);
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--spacing-md);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 577px) and (max-width: 991px) {
  /* Header & Navigation */
  .main-nav {
    padding: 15px;
  }
  
  .logo h1 {
    font-size: 2rem;
  }
  
  /* About, Dining, Spa Sections */
  .about-content, .dining-content, .spa-content {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
  
  /* Services & Adventures Grids */
  .services-grid, .adventure-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Footer */
  .footer-links {
    gap: var(--spacing-md);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
  /* Services & Adventures Grids */
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .adventure-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    width: 85%;
    max-width: 1400px;
  }
  
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  .hero h1 {
    font-size: 4.5rem;
  }
  
  .hero p {
    font-size: 1.8rem;
  }
}

/* Menu Responsiveness */
@media (max-width: 991px) {
  #main-header {
    position: relative;
  }
  
  .main-nav {
    padding: 10px 0;
  }
  
  .nav-left ul, .nav-right ul {
    justify-content: center;
  }
  
  .nav-left ul li, .nav-right ul li {
    margin: 0 10px;
  }
  
  .logo {
    padding: 15px 0;
  }
  
  /* Make the header menu expandable/collapsible for mobile */
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
  }
  
  .nav-left, .nav-right {
    display: none;
  }
  
  .nav-open .nav-left, 
  .nav-open .nav-right {
    display: block;
    width: 100%;
  }
}

/* Ensure touch targets are large enough */
@media (max-width: 767px) {
  .main-nav a,
  .btn-primary,
  .btn-secondary,
  .btn-tertiary,
  .btn-book,
  .newsletter-form input,
  .newsletter-form button {
    padding: 12px 20px;
    min-height: 44px;
    min-width: 44px;
  }
  
  .footer-column ul li {
    margin-bottom: 12px;
  }
}