@import url("https://fonts.googleapis.com/css2?family=Bangers&family=Karla:ital,wght@0,200..800;1,200..800&display=swap");

:root {
  --textColor: white;
  --invertColor: black;
  --font: "Karla", sans-serif;
}

html {
  font-family: var(--font);
  color: var(--textColor);
  font-size: 12px;
  font-weight: 100;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: auto;
  background: #000;
  min-height: 100vh;

}

.site-header {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0 60px 0;
  background: #000;
  position: relative;
}

.site-logo {
  max-width: 400px;
  width: 50vw;
  height: auto;
  display: block;
}

.main-nav {
  width: 100vw;
  display: flex;
  justify-content: center;
  gap: 40px;
  background: #111;
  padding: 0;
  margin-bottom: 0;
  height: 56px;
  align-items: stretch;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 0;
  position: relative;
}

.nav-link:hover,
.nav-link:focus {
  background: rgba(255, 255, 255, 0.18);
  color: #a1efd3;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 28px;
  height: 28px;
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  background: none;
  border: none;
}


.hamburger span {
  height: 3px;
  width: 20px;
  background: #fff;
  margin: 3px 0;
  border-radius: 2px;
  transition: 0.3s;
  display: block;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 0px;
  width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.image-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s;
}

.image-item:hover img,
.image-item:focus img {
  filter: brightness(1.5);
}

.image-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  z-index: 1;
}

.image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: auto;
  min-width: 40%;
  max-width: 100%;
  padding: 12px 40px 12px 32px;
  background: none;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: left;
  letter-spacing: 1px;
  border-top-right-radius: 12px;
  pointer-events: none;
  text-transform: uppercase;
  z-index: 2;
}

.contact-section {
  width: 100vw;
  background: #111;
  color: #fff;
  padding: 20px 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-section h2 {
  margin-bottom: 24px;
  font-size: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 80%;
  max-width: 300px;
}

.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="text"] {
  padding: 14px;
  border: 1px solid #333;
  border-radius: 4px;
  background: #222;
  color: #fff;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button[type="submit"] {
  padding: 14px 0;
  background: #a1efd3;
  color: #111;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button[type="submit"]:hover,
.contact-form button[type="submit"]:focus {
  background: #a1efd3;
}

.site-footer {
  width: 100vw;
  padding: 32px 0 24px 0;
  background: #000;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  position: static;
  bottom: unset;
  left: unset;
  margin-top: auto;

}

.footer-social {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.footer-social a {
  color: #fff;
  font-size: 2rem;
  transition: color 0.2s;
  margin-bottom: 20px;
}

.footer-social a:hover,
.footer-social a:focus {
  color: #a1efd3;
}

/* Responsive nav styles */
@media (max-width: 700px) {
  .main-nav {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 0;
    position: static;
    top: 96px;
    /* Adjust if your header height changes */
    left: 0;
    width: 100vw;
    background: #111;
    z-index: 1000;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-link {
    justify-content: center;
    padding: 18px 0;
    border-bottom: 1px solid #222;
    font-size: 1rem;
    height: 56px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .site-header {
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  .site-logo {
    margin-left: 0;
    margin-right: 0;
  }

  .image-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  body {
    position: relative;
  }
}