/* Base styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
  background-color: #333;
  color: white;
  padding: 1em;
  position: relative;
}

nav {
  display: none;
  flex-direction: column;
  background-color: #444;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
}

nav a {
  color: white;
  padding: 1em;
  text-decoration: none;
  border-top: 1px solid #555;
}

nav a:hover {
  background-color: #555;
}

.menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.5em;
  cursor: pointer;
}

#menu:checked + nav {
  display: flex;
}

section {
  padding: 2em;
}

.logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh;
  background-color: #eaeaea;
}

.logo-section img {
  max-height: 100%;
  max-width: 100%;
}

.services {
  position: relative;
  background-image: url('images/paralax.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  overflow: hidden;
}

.services-content {
  position: relative;
  z-index: 2;
  padding: 2em;
  background-color: rgba(0, 0, 0, 0.557);
  border-radius: 12px;
  text-shadow: 1px 1px 2px #000;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  padding: 0.5em 0;
  cursor: pointer;
}

.gallery {
  background-color: #ffffff;
}

.gallery-content {
  display: flex;
  justify-content: center;
}

.gallery .fb-post {
  display: inline-block;
}

.contact {
  background-color: #ab906d; /* CMYK 0 30 62 59 */
  color: #05191A;            /* CMYK 85 44 0 90 */
  padding: 2em;
}

.contact a {
  color: #05191A;        /* Match the section text color */
  text-decoration: none; /* Remove underline */
}

.contact a:hover {
  text-decoration: underline; /* Optional: underline on hover for clarity */
}


/* Gallery styling */
.gallery-row {
  margin-top: 1em;
  overflow-x: auto;
  white-space: nowrap;
}

.gallery-row.hidden {
  display: none;
}

.gallery-track {
  display: flex;
  gap: 1em;
  scroll-behavior: smooth;
}

.gallery-track img {
  height: 500px;
  width: auto;
  border-radius: 8px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  section {
    padding: 1em;
  }

  h1, h2 {
    font-size: 1.5em;
  }

  .gallery-track img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .gallery-track img {
    height: 200px;
  }

  nav a {
    font-size: 0.9em;
    padding: 0.8em;
  }

  .menu-toggle {
    font-size: 1.2em;
  }
}

.contact img {
  height: 1.2em;
}


.site-footer {
  background-color: #f8f8f8;
  color: #000;
  text-align: center;
  padding: 10px;
  font-size: 0.9em;
}

.footer-link {
  color: #000;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}
