.site-plan {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
  }
  
  .site-plan h1 {
    color: #f16d6f;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .site-plan img {
    max-width: 90vw;
    max-height: 90vh;
    cursor: zoom-in;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease-in-out;
  }
  
  .site-plan img.zoomed {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
    z-index: 10000;
    cursor: zoom-out;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
    transition: transform 0.4s ease;
  }
  
  .earth-link {
    margin-top: 1rem;
    text-align: center;
  }
  
  .earth-link a {
    background-color: #2c3e50;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }

  .zoom-controls {
    position: fixed;
    top: 80px; /* Adjust based on your navbar height */
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 9999;
  }
  
  .zoom-controls button {
    font-size: 1.5rem;
    padding: 10px 15px;
    border: none;
    background-color: #2c3e50;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .zoom-controls button:hover {
    background-color: #1a242f;
  }