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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, #668B96, #B2B4AA, #6A4327);
}

.big-image {
  position: relative;
  width: 100%;
  height: 70rem;
  overflow: hidden;
}
.big-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.big-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
}

.welcome-message {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  cursor: default;
}
.welcome-message h1 {
  font-size: 2.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  margin-bottom: 0.5rem;
}
.welcome-message p {
  font-size: 1.2rem;
  font-weight: 100;
}

.main-headings {
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  cursor: default;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  margin-top: 0.2rem;
}
.gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery img:hover {
  transform: scale(1.02);
  transition: transform 0.5s ease;
  cursor: pointer;
}

.centered-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.centered-image-small {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.big-four {
  grid-row: 2;
  grid-column: 1/3;
  grid-row-end: span 2;
}

.image-five {
  grid-row: 2;
  grid-column: 3;
}

.image-six {
  grid-row: 3;
  grid-column: 3;
}

.image-seven {
  grid-row: 4;
  grid-column: 1/4;
}

.big-eight {
  grid-row: 5;
  grid-column: 1/2;
  grid-row-end: span 2;
}

.image-nine {
  grid-row: 5;
  grid-column: 2;
}

.image-ten {
  grid-row: 5;
  grid-column: 3;
}

.image-eleven {
  grid-row: 6;
  grid-column: 2;
}

.image-twelve {
  grid-row: 6;
  grid-column: 3;
}

.about-body {
  color: #ffffff;
  font-size: 1.1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 2rem;
}
.about-body p {
  margin-bottom: 1.5rem;
}

.header-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 2rem;
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 100;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  cursor: default;
}

nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent;
  display: flex;
  justify-content: center;
}
nav ul {
  list-style-type: none;
  display: flex;
}
nav ul li {
  margin-right: 1rem;
}
nav ul li a {
  text-decoration: none;
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
}

nav ul li a:hover {
  background-color: rgba(110, 110, 110, 0.5);
}

.container {
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    position: relative;
    z-index: 10;
  }
  .site-title {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1rem;
    order: -1;
  }
  nav {
    width: 90%;
    margin: 1rem auto;
  }
  nav ul {
    flex-direction: row;
    justify-content: space-evenly;
    padding: 0;
  }
  nav ul li {
    margin-bottom: 1rem;
    margin-top: 1rem;
    margin-right: 0;
  }
  nav ul li a {
    padding: 0.25rem 0.75rem;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .big-four,
  .image-five,
  .image-six,
  .image-seven,
  .big-eight,
  .image-nine,
  .image-ten,
  .image-eleven,
  .image-twelve {
    grid-row: auto;
    grid-column: auto;
    grid-row-end: auto;
  }
  .centered-image {
    display: none;
  }
  .centered-image-small {
    display: block;
  }
  .lightbox-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    max-height: 100vh; /* Increase the max-height to make the image larger */
    margin-bottom: 1rem;
  }
  .lightbox-image {
    max-width: 100vw;
    max-height: 100vh;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .lightbox-info {
    text-align: center;
  }
  #instagram-section .instagram-profile {
    flex-direction: column;
    /*text-align: center;*/
  }
  #instagram-section .instagram-profile .profile-picture {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  #instagram-section .instagram-profile .instagram-info p {
    line-height: 1.6;
  }
  .big-image {
    height: 35rem;
  }
  .welcome-message {
    top: 20%;
  }
}
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox.hidden {
  display: none;
}

.lightbox-content {
  display: flex;
  max-width: 90%;
  max-height: 90%;
  background-color: #B2B4AA;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.lightbox-image {
  max-width: 70%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border: none;
}

.lightbox-info {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lightbox-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  font-family: "Roboto", sans-serif;
}

.lightbox-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

#instagram-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
#instagram-section .instagram-profile {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: linear-gradient(90deg, #8a8a8a, #B2B4AA);
  border-radius: 15px;
  padding: 1.5rem;
}
#instagram-section .instagram-profile .profile-picture {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-right: 1rem;
}
#instagram-section .instagram-profile .instagram-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#instagram-section .instagram-profile .instagram-info i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}
#instagram-section .instagram-profile .instagram-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
#instagram-section .instagram-profile .instagram-info p {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.instagram-profile:hover {
  transform: scale(1.02);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.instagram-link {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.footer {
  position: relative;
}

.footer-text {
  color: #dadada;
  font-size: 1rem;
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 0.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
}

.site-subtitle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent;
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 1.5rem;
}/*# sourceMappingURL=styles.css.map */