@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --white: #eee;
  --dark: rgb(20, 20, 20);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  color: var(--white);
  background-color: var(--dark);
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  padding: 0px;
  margin: 0px;
  line-height: 1.5;
}

#header {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 2.25rem;
  text-align: center;
  margin-top: 2rem;
  padding-bottom: 2px;
}

#header a {
  border-bottom: unset;
  padding-bottom: unset;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5em;
  margin-bottom: 1rem;
}

p {
  font-size: medium;
}

hr {
  background-color: var(--white);
  height: 0.125rem;
  margin: 1.5em 0;
  border: none;
}

a {
  text-decoration: none;
  color: var(--white);
  border-bottom: 2px solid transparent;
  width: fit-content;
}

a:hover {
  border-bottom: 2px solid var(--white);
}

.a-current {
  border-bottom: 2px solid var(--white);
}

footer {
  text-align: center;
  margin-top: 1.8rem;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

main {
  padding-bottom: 3rem;
}

nav {
  margin-bottom: 3.125rem;
}

nav ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  text-align: center;
}

nav ul li {
  display: inline-block;
  font-size: 1.35rem;
}

nav ul li:not(:last-child)::after {
  content: "/";
  display: inline-block;
  margin: 0 0.05rem;
  font-size: 1.35rem;
}

nav a {
  display: inline-block;
}

section {
  font-size: medium;
}

section p {
  margin: 0;
  padding: 0;
  margin-bottom: 1em;
}

section p b {
  font-weight: 700;
}

.address {
  margin-bottom: 0;
  display: inline-block;
  border-bottom: 2px solid transparent;
}

.center {
  width: 800px;
  margin: auto;
}

.text-center {
  text-align: center;
}

img {
  max-width: 100%;
}

#gallery {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 25px;
  padding: 0 50px;
  width: 90%;
  margin: auto;
}

.image {
  position: relative;
  overflow: hidden;
}

.image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  transform-origin: center center;
}

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

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 0;
  flex-direction: column;
}

#lightbox.hidden {
  display: none;
}

.lightbox-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-footer {
  margin-top: 40px;
  width: 100%;
  color: var(--white);
  font-size: 1.2em;
  position: relative;
}

#lightbox-title {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  text-align: center;
  font-size: 1.2rem;
}

.lightbox-nav-group {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1rem;
}

.lightbox-nav-arrow {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2em;
  cursor: pointer;
  padding: 0 5px;
  user-select: none;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  z-index: 1000;
}

@media (max-width: 900px) {
  .center {
    width: 87%;
  }
}
@media (max-width: 800px) {
  #gallery {
    grid-template-columns: 1fr;
    padding: unset;
    width: 95%;
    gap: 10px;
  }
  .lightbox-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
  }
  .lightbox-nav-group {
    position: static;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .lightbox-nav-arrow {
    font-size: 1.4em;
    padding: 1px 8px;
  }
  #lightbox-title {
    font-size: 0.7em;
    padding: 0 10px;
  }
  .lightbox-content {
    max-width: 95%;
  }
}
@media (max-width: 600px) {
  #header {
    font-size: 1.55rem;
  }
  footer {
    padding-top: 2rem;
  }
  #gallery {
    grid-template-columns: 1fr;
    padding: unset;
    width: 95%;
    gap: 10px;
  }
}

/*# sourceMappingURL=styles.css.map */