@import url("https://fonts.googleapis.com/css2?family=Just+Me+Again+Down+Here&display=swap");

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

body {
  background: rgb(255, 153, 204);
  font-family: "Just Me Again Down Here", cursive;
  color: white;
}

/* Title & Nav */
#header-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1px;
  margin-bottom: 20px;
}

#main-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 10px;
  margin: 0 auto;
}

.site-title {
  font-size: 3.8rem;
  margin-bottom: 30px;
  color: white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

#navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 140px;
}


.nav-button {
  padding: 15px 30px;
  border: none;
  font-size: 22px;
  color: rgb(251, 213, 239);
  border-radius: 7px;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.5s;
  transition-property: box-shadow;
  text-decoration: none;
  margin-top: 50px;
}

.nav-button {
  background: hotpink;
  box-shadow: 0 0 10px hotpink;
}

.nav-button:hover {
  font-weight: 100;
}

/*
.nav-button {
  width: 150px;
  height: 150px;
  background: hotpink;
  border: 8px solid rgb(251, 213, 239);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-align: center;
}
*/

/* Res-pon-sive Nav */
@media screen and (max-width: 640px) {
  #navigation {
    flex-direction: column;
    gap: 20px;
  }

  .site-title {
    font-size: 2rem;
  }
}

/* Main */
.about {
  text-align: center;
  padding: 20px;
}

.about h2 {
  margin-bottom: 20px;
}

.about img {
  width: 90%;
  max-width: 300px;
  margin: 10px auto;
  display: block;
  border-radius: 10px;
  border: 4px solid white;
}

.h2titles {
  font-size: 2.5rem;
}

/* par mani */
@import url('https://fonts.googleapis.com/css2?family=Just+Me+Again+Down+Here&display=swap');

.about-description {
  font-family: 'Just Me Again Down Here', cursive;
  font-size: 1.7rem;
  background-color: #ffeef8;
  /* light pink background (adjust if needed) */
  padding: 2.5rem;
  margin: 1.5rem auto;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
  text-align: center;
  color: hotpink;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 600px) {
  .about-description {
    font-size: 1.2rem;
    padding: 1.2rem;
  }
}

/* par mani bildes */
.about-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  gap: 2rem;
}

.center-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.side-by-side-images {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.side-by-side-images img {
  max-width: 100%;
  width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .side-by-side-images img {
    width: 90%;
    max-width: 350px;
  }
}

.bottom-image {
  width: 100% !important;
  max-width: 700px !important;
  height: auto !important;
  margin: 2rem auto 0 !important;
  display: block !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}


/* Footer */
footer {
  text-align: center;
  padding: 30px 10px;
}

footer h2 {
  margin-bottom: 20px;
}

.social-icons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icons img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

/* Collage code down here braap*/
.gallery-section {
  padding: 40px 20px;
  text-align: center;
  font-family: "Just Me Again Down Here", cursive;
  color: white;
}

.gallery-section h2 {
  margin-bottom: 30px;
  font-size: 3rem;
}

.masonry-gallery {
  column-count: 3;
  column-gap: 15px;
}

.masonry-gallery a {
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}

.masonry-gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 3px solid white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.masonry-gallery img:hover {
  transform: scale(1.03);
}

@media (max-width: 960px) {
  .masonry-gallery {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .masonry-gallery {
    column-count: 1;
  }
}


/* Contacts lapa */
.social-icons-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 60px auto 0 auto;
  max-width: 300px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 2rem;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-item img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
}

.social-item:hover {
  transform: scale(1.05);
}