@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Gabriola";
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 15px 15px 0 0;
}

.img1HomeHeader {
  border-radius: 0 0 15px 15px;
  overflow: hidden;
}

.header {
  position: sticky;
  top: 0;
  padding: 1rem;
  background: linear-gradient(to right, #fdfad8, rgb(168, 214, 162));
  z-index: 100;
}

main {
  flex: 1 0 auto;
  position: relative;
}

main::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("./images/Namnlös design.png");
  background-repeat: repeat;
  background-position: center;
  transform: translateZ(0);
  z-index: -1;
}

main::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  z-index: -1;
}

.main-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: clamp(2rem, 6vw, 5rem);
}

.navBarList {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 2vw, 2rem);
  transition: gap 0.3s ease;
}

.navBarListItem {
  line-height: 1.6rem;
}

.navBarListItem a:hover {
  color: rgb(90, 185, 119);
}

.navBarListItem a {
  text-decoration: none;
  line-height: 0.4;
  color: #333;
}

.rubrik {
  text-align: center;
  margin: 1rem 0;
  background-color: white;
  border-radius: 15px;
}

ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

li {
  list-style-type: none;
}

.section1 {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.section1 div {
  background: rgb(252, 230, 230);
  flex: 0 1 min(100%, 305px);
  padding: 1rem;
  border-radius: 15px;
}

.aboutHero {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aboutImg {
  margin: 2rem;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(128, 184, 121, 0.65);
}

footer {
  text-align: center;
  padding: 0.5rem;
  background: linear-gradient(to right, #fdfad8, rgb(168, 214, 162));
}

.gallery-container {
  padding-bottom: 3rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(0.75rem, 2vw, 1.5rem);
  transition: gap 0.3s ease;
}

.card {
  background-color: rgb(252, 230, 230);
  border: none;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 8px;
}

.card,
.section1 div {
  transition: padding 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.h1Rubrik {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  background-color: white;
}

.cardText {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

p {
  background-color: white;
  text-align: center;
  border-radius: 0 0 15px 15px;
}

.realP {
  margin-bottom: 1rem;
  line-height: 2rem;
  padding: 1rem;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 0 30px rgba(128, 184, 121, 0.45);
}

@media (min-width: 600px) {
  .navBarList {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 900px) {
  main {
    margin: 0;
    max-width: none;
  }
  .gallery-container {
    max-width: 1000px;
    margin: auto;
  }
}/*# sourceMappingURL=style.css.map */