.site-header {
  background: #415a77;
}

.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 80px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: larger;
  font-family: Arial, Helvetica, sans-serif;
}

.main-nav a:hover {
  color: slategray;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem; /* space between logo and contact */
}

.header-contact {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.header-contact-title {
  font-size: 1.1rem;
  font-weight: bold;
}

.header-contact-details {
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

/* Header left group */
.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-contact {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.header-contact-title {
  font-weight: bold;
  font-size: 1rem;
}

.header-contact-details {
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

/* Hamburger button */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 900px) {
  .container {
    flex-wrap: wrap;
  }

.menu-toggle {
    display: block;
  }

  .main-nav {
    width: 100%;
    display: none;
  }

  .main-nav ul {
    flex-direction: column;
    background: #415a77;
    padding: 1rem 0;
    margin-top: 1rem;
  }

  .main-nav li {
    text-align: center;
    padding: 0.75rem 0;
  }

  .main-nav.show {
    display: block;
  }

  .header-contact {
    text-align: right;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }


  .slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  /* Set the slideshow height based on your image aspect ratio */
  .slideshow::before {
    content: "";
    display: block;
    padding-top: 66.66%; /* ← adjust this to match your images */
  }

  .slideshow img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fade 12s infinite;
  }


  .slideshow img:nth-child(1) { animation-delay: 0s; }
  .slideshow img:nth-child(2) { animation-delay: 4s; }
  .slideshow img:nth-child(3) { animation-delay: 8s; }

  @keyframes fade {
    0%   { opacity: 1; }
    25%  { opacity: 1; }
    33%  { opacity: 0; }
    100% { opacity: 0; }
  }

.gallery-section {
  background-color: #e0e1dd;
  padding: 4rem 2rem;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.gallery-section h2 {
  color: black;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.gallery-item p {
  color: black;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.25rem;
  font-family: Arial, Helvetica, sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-description {
    background-color: #e0e1dd;
    padding: 5px;
    text-align: center;
    font-size: large;
    font-family: Arial, Helvetica, sans-serif;
}

.site-footer {
  background-color: #778da9;
  padding: 1.5rem 1rem;
  color: #ffffff;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr 2fr;
  gap: 3rem;
  align-items: start;
}

.footer-logo img {
  max-width: 160px;
}

.footer-info p,
.footer-hours p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-info span {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-hours strong {
  font-size: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer-copyright{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #1b263b;
    color: #ffffff;
    padding: 1px;
}