* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Quicksand', sans-serif;
    }

    body {
      background: linear-gradient(135deg, rgba(255,250,205,0.85), rgba(255,218,185,0.85)), url('static/BG.jpg') center/cover no-repeat fixed;
      color: #333;
      text-align: center;
      padding-bottom: 50px;
    }

    header {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 30px 0 10px 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      color: #5B2C6F; /* deep purple */
    font-family: 'Comic Neue', cursive; /* playful font */
    text-shadow: 2px 2px 6px rgba(166, 155, 155, 0.6); /* glow effect */
    }

    .header-content {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    header img {
      height: 120px;
      width: 120px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    header h1 {
      font-size: 2.5rem;
      color: #006D77;
      margin-bottom: 1px;
    }
    @font-face {
  font-family: 'Blackbones';
  src: url('fonts/blackbones.ttf') format('truetype');
}


    .command{
      font-size: 1.5em; 
      color: #6d0e9a;
      font-family: 'Blackbones', sans-serif;
      
    }
    

    /* Gallery */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
      padding: 20px;
      max-width: 1000px;
      margin: auto;
      height: auto !important;
      object-fit: contain;

    }

    .gallery img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: inherit;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .gallery img:hover {
      transform: scale(1.05);
    }

     .map-contact-wrapper {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  align-items: stretch;
}

/* Equal split for desktop */
.map-container, .contact {
  flex: 1;
  min-width: 300px;
}

/* Ensure map iframe fits nicely */
.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  .map-contact-wrapper {
    flex-direction: column;
  }
  
  .map-container iframe {
    min-height: 300px;
  }
}


.contact {
  background-color: #fff4eb;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(255, 111, 97, 0.1);
  justify-content: center;
  align-items: center;
  font-size: larger;
}

.contact h2 {
  color: #5B2C6F;
  margin-bottom: 15px;
}
.contactus {
  color: #5B2C6F;
  font-weight: bolder;
}
.contact a {
  color: #cc1100;
  text-decoration: none;
  font-weight: bold;
}
.address {
  color: #5B2C6F;
  font-weight: bolder;

}
.contact a:hover {
  text-decoration: underline;
}
footer {
  
  color: #5B2C6F;
  padding: 10px;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
}
footer p {
  margin: 0;
  font-size: 1.5em;
}
/* Mobile Responsiveness Fix */
@media (max-width: 768px) {
  header {
    flex-direction: column !important;
    text-align: center;
  }
  header img {
    max-width: 100% !important;
    height: auto !important;
  }
  .gallery {
    grid-template-columns: 1fr !important;
  }
  .map-contact-wrapper {
    flex-direction: column !important;
    align-items: center !important;
  }
  .map-container iframe {
    width: 100% !important;
    height: auto !important;
    min-height: 250px !important;
  }
  .contact {
    width: 100% !important;
    text-align: center !important;
  }
}
/* ---------- Mobile-only fixes (keep your current design) ---------- */
@media (max-width: 768px) {
  /* Header: keep layout neat on phones */
  header { flex-direction: column !important; text-align: center !important; }
  header img { width: min(48vw, 160px) !important; height: auto !important; }
  header h1 { font-size: clamp(1.4rem, 6vw, 2rem) !important; letter-spacing: 1px !important; }
  .command { font-size: clamp(1rem, 4.5vw, 1.4rem) !important; }

  /* Gallery: override the fixed 320x320 sizes from the inline <style> */
  .gallery { min-height: auto !important; gap: 16px !important; padding: 16px !important; }
  .gallery-row { flex-direction: column !important; gap: 16px !important; width: 100% !important; }
  .gallery-row img {
    width: 100% !important;
    height: auto !important;       /* show full image */
    max-width: 100% !important;
    border-radius: 16px !important;
    object-fit: contain !important; /* no cropping on mobile */
  }

  /* Map & Contact: stack vertically with comfy sizing */
  .map-contact-wrapper { flex-direction: column !important; align-items: stretch !important; }
  .map-container iframe { width: 100% !important; height: 50vh !important; min-height: 300px !important; }
  .contact { width: 100% !important; text-align: center !important; font-size: 1rem !important; padding: 20px !important; }
}

/* Optional: slightly wider phones/tablets */
@media (min-width: 769px) and (max-width: 992px) {
  .gallery-row img { width: 48% !important; height: auto !important; object-fit: cover !important; }
  .gallery-row { flex-wrap: wrap !important; justify-content: center !important; gap: 18px !important; }
}
.small-img {
  max-height: 350px; /* Reasonable height */
  width: 100%;
  object-fit: cover;
}
