/* Mobile-specific styles */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    padding: 0;
    margin: 0;
  }

  /* Header adjustments */
  .site-header {
    padding: 1rem !important;
  }

  .site-header h1 {
    font-size: 1.5rem !important;
  }

  #homeNavButton {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    margin: 0.5rem auto !important;
    display: inline-block !important;
  }

  /* Hamburger menu button */
  .mobile-menu-btn {
    display: block !important;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    background: #3b5e3c;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.8rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  /* Mobile navigation menu */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #f4f9e7;
    z-index: 999;
    padding: 5rem 1rem 1rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    overflow-y: auto;
  }

  .mobile-nav.active {
    display: block;
  }

  .mobile-nav a {
    display: block;
    background: #e1ecc5;
    color: #1e3b2f;
    padding: 0.8rem 1rem;
    margin-bottom: 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
  }

  .mobile-nav a:hover {
    background: #f7d44a;
  }

  /* Layout adjustments */
  .home-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 1rem !important;
  }

  .page-layout {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 1rem !important;
  }

  /* Navigation buttons row */
  .nav-buttons-row {
    flex-direction: column !important;
    gap: 0.5rem !important;
    padding: 0.8rem !important;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
    padding: 0.8rem !important;
  }

  /* Left column */
  .left-appointment {
    position: static !important;
    padding: 1rem !important;
  }

  .left-nav {
    position: static !important;
    display: none; /* Hide left nav on mobile, use hamburger */
  }

  /* Middle stack */
  .middle-stack {
    width: 100% !important;
    gap: 1rem !important;
  }

  .area-card {
    flex-direction: column !important;
    padding: 1rem !important;
  }

  .area-image {
    flex: 0 0 auto !important;
    width: 100% !important;
  }

  /* Carousel */
  .carousel-slide {
    height: 180px !important;
  }

  /* Contact text */
  .contact-text {
    padding: 1rem !important;
    font-size: 0.9rem !important;
  }

  /* Content text */
  .content-text {
    padding: 1rem !important;
  }

  /* Picture placeholders */
  .right-pictures {
    gap: 0.8rem !important;
  }

  .picture-placeholder {
    height: 180px !important;
  }

  /* Footer */
  footer {
    padding: 0.8rem !important;
    font-size: 0.9rem !important;
  }
}