
body{
  font-family: 'Futura', sans-serif; 
  padding: 20px;
  margin: 0;
  background-color: whitesmoke !important;

}

/* Navvy b */
.navbar {
  width: 100%;
  background: transparent;
  box-shadow: none;
  padding: 15px 20px;
  margin-bottom: 5vh;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar-nav .nav-link {
  font-size: 1.1rem;
  color: #333;
  padding: 10px 15px;
}

.navbar-nav .nav-link:hover {
  color: #555;
}

/* Mobile Styles */
@media (max-width: 991px) {
  .navbar {
    padding: 10px 15px;
  }

  .navbar-toggler {
    border: none;
    outline: none;
  }

  .navbar-toggler-icon {
    width: 30px;
    height: 30px;
  }

  .navbar-collapse {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding: 10px;
    display: block;
    font-size: 1.2rem;
  }
}

/* masonry project */
.work h1{
  font-size: 4rem;
  font-weight: 900;
  color: black;
  margin-left: 4vw;
  font-family: "Kaushan Script", cursive;
;
}
.masonry-gallery {
  column-count: 3; 
  column-gap: 4vw; 
  padding: 20px;
  
}

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

.masonry-item img {
  width: 100%;
  display: block;
  border: 10px solid black; 
  border-radius: 10px; 
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

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

/* Responsive Masonry */
@media (max-width: 1024px) {
  .masonry-gallery {
    column-count: 2; 
  }
}

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


  /* contact */
  .contactSection {
    display: flex;
    justify-content: center;
    padding: 50px;
    color: black;
    margin-top: 10vh;
  
  }

  .contactFormContainer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
  }

  .contactForm {
    background-color: whitesmoke; 
    border-radius: 50px;
    padding: 40px;
    width: 50%;
    box-shadow: none;

  }

  .contactForm h2 {
    font-size: 1.5em;

  }

  .contactForm input[type="text"],
  .contactForm input[type="email"],
  .contactForm textarea {
    width: 100%;
    margin-top: 1em;
    padding: 12px;
    border: 1px solid black;
    border-radius: 5px;
    background-color: transparent; 
    color: white; 
  }

  .contactForm button {
    margin-top: 1.5em;
    padding: 12px 20px;
    background-color: #555; 
    border: none;
    border-radius: 5px;
  }

  .ourContact {
    padding: 40px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ourContact p,
  .ourContact a {
    font-size: 1.5em;
    color: white; 
    margin-bottom: 3vh;
  }

  .ourContact h6{
    font-size: 1em;
  }

  .ourContact a:hover {
    text-decoration: underline;
    color: #ccc; 
  }

  #socials {
    display: flex;
    gap: 10px; 
    align-items: center; 
  }

  #socials svg {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px; 
    height: 32px;
    color: white;
  }

  @media (max-width: 768px) {
    .contactFormContainer {
      flex-direction: column;
      align-items: center;
    }

    .contactForm, 
    .ourContact {
      width: 120%;
      text-align: center;
    }

    .contactForm {
      margin-bottom: 20px;
    }

    #socials {
      justify-items: center;
      align-self: center;
    } 
  }
