
body{
  margin: 0;
  background-color: #faf8f6;
  text-align: center;
  color:#444444 ;
  overflow-x: hidden;
}

#title {
  background: linear-gradient(135deg, #eac3bf, #b77d77);
  color: white;
  padding: 20px;
  width: 100vw;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

#title .logo {
  height: 15vh;
  width: auto;
  max-height: 120px;
  position: absolute;
  top: 10px;
  left: 10px;
}

#title h1 {
  font-family: "DynaPuff", serif;
  font-size: 12vh;
  margin: 0;
}

#title h2 {
  font-family: "DynaPuff", serif;
  font-size: 8vh;
  margin-top: -2vh;
}

#title .social-icons {
  position: absolute;
  bottom: 10%;
  right: 5%;
  display: flex;
  gap: 15px;
}

#title .social-icons a {
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
}

#title .social-icons a:hover {
  color: #333;
}

@media (max-width: 768px) {
  #title {
    flex-direction: column;
    padding: 10px;
  }

  #title .logo {
    height: 8vh;
    max-height: 60px;
    top: 5px;
    left: 5px;
  }

  #title h1 {
    font-size: 7vh;
  }

  #title h2 {
    font-size: 5vh;
  }

  #title .social-icons {
    bottom: 5%;
    right: 5%;
  }
}

#blurb p  {
  font-family: "Playwrite DE Grund", serif;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

#blurb a {
  color: #92a1c3;
  text-decoration: none;
  font-weight: bold;
}

#about {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#about h2 {
  font-family: "DynaPuff", serif;
  color: #b77d77;
  font-size: 2rem;
  margin-bottom: 15px;
}

#about p {
  font-family: "Playwrite DE Grund", serif;
  font-size: 1.2rem;
  color: #444;
  line-height: 1.6;
}

/* gallery */
.bento-section {
  margin-top: 30px;
  padding: 0 15px;
} 

.bento-title {
  font-family: "Playwrite DE Grund", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #92a1c3;
  font-weight: 900;
  margin-right: 3vw;
  letter-spacing: 1px;
}

.bento-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  max-width: 800px;
  margin: 0 auto;
} 

.bento-item img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  aspect-ratio: 1/1;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

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

/* contact & about */
.contactAboutContainer {
  display: flex;
  margin: 5vh auto; 
  justify-content: center; 
  align-items: center; 
  background: linear-gradient(135deg, #eac3bf, #b77d77);
  padding: 40px;
  border-radius: 10px;
  max-width: 90%;
  flex-wrap: wrap;
  
}   

.aboutMe {
  flex: 1;
  color: white;
  padding: 20px;
  font-family: "Playwrite DE Grund", serif;
  max-width: 50%;
}

.aboutMe h2 {
  font-family: "DynaPuff", serif;
  font-size: 2rem;
}


.contactFormContainer {
  flex: 1;
  margin-top: 5vh;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 45%;
}

.contactForm h2 {
  color: #b77d77;
}

.contactForm form {
  display: flex;
  flex-direction: column;
}

.contactForm label {
  font-weight: bold;
  margin-top: 10px;
}

.contactForm input,
.contactForm textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contactForm textarea {
  min-height: 100px;
}

#submitButton {
  background: #b77d77;
  color: white;
  border: none;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
}

#submitButton:hover {
  background: #a56a69;
}


.ourContact {
  margin-top: 20px;
}

.ourContact h6 {
  margin-top: 10px;
  font-weight: bold;
}

#socials a {
  margin-right: 10px;
  font-size: 1.5rem;
  color: #b77d77;
}

#socials a:hover {
  color: #a56a69;
}

/* making responsive */
@media (max-width: 1024px) {
  .contactAboutContainer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .aboutMe,
  .contactFormContainer {
    max-width: 100%;
    width: 80vw;
  }

  .aboutMe {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .contactAboutContainer {
    padding: 20px;
    margin-top: 4vh;
  }

  .aboutMe h2 {
    font-size: 1.5rem;
  }

  .contactFormContainer {
    padding: 15px;
    width: 80vw;
  }
}

@media (max-width: 480px) {
  .contactAboutContainer {
    padding: 15px;
    margin-top: 4vh;
  }

  .aboutMe {
    font-size: 0.9rem;
  }

  .contactFormContainer {
    padding: 10px;
    width: 80vw;
  }

  #submitButton {
    font-size: 0.9rem;
    padding: 8px;
  }
}
