/* Reset and Base */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: #111111;
    line-height: 1.6;
  }
  
  a:link {
    color: #777;
  }

  a:hover {
    color: #000;
  }


  /* Hero Section */

  .hero {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
    padding: 0 1.5rem;
  }
  
  .hero h1 {
    font-size: 3rem;
    line-height: 110%;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #555555;
  }

  .info {
    padding: 2rem;
  }

  .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 1.5rem;
  }

  .content p {
    font-size: 1.1rem;
    color: #555555;
    padding: .5rem;
  }

  @media (min-width: 880px) {
    .content {
      grid-template-columns: 1fr 1fr;
    }
  }
  

  /* Gallery */

  .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .25rem;
  /*  padding: 40px 20px; */
  }
  
  .gallery img {
    width: 300px;
    height: auto;
    border-radius:0;
    transition: transform 0.3s;
    cursor: pointer;
  }

  @media (max-width: 640px) {
    .gallery img {
      width: 120px;
    }
  }
  
  .lg-sub-html {
    display: none !important;
  }

  /* Contact Form */
  
  .contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  input, textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
  }
  
  textarea {
    min-height: 150px;
  }
  
  button {
    padding: 14px;
    background-color: #111111;
    color: #ffffff;
    font-size: .1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #333333;
  }
  
  
  /* Form  */

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 12px 14px;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #ffffff;
  transition: border-color 0.2s;
}

input:focus, textarea:focus {
  border-color: #111111;
  outline: none;
}

textarea {
  resize: none;
  min-height: 7rem;
}

button {
  padding: 12px 16px;
  background-color: #111111;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #333333;
}

footer {
  font-size: .9rem;
  color: #999;
  text-align: center;
  padding: 1.5rem;

}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

