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

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

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: white !important;
}

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

.navbar-nav .nav-link:hover {
  color: white;
}

/* mob styles nav */
@media (max-width: 991px) {
  .navbar {
    padding: 10px 15px;
    color: white;
  }

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

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

  .navbar-collapse {
    text-align: center;
    padding: 10px;
  }

  .navbar-nav {
    width: 100%;
  }

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

/* Bento about business*/
.bento-section {
  background-color: transparent;
  padding: 40px 20px;
  color: white;
}

.bento-section h1{
  font-family: "Kaushan Script", cursive;

}
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 20px;
  align-items: center;
}

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

.bento-item img:hover {
  filter: grayscale(0);
}

.bento-item h2 {
  font-size: 2rem;
  color: white;
  font-weight: bold;
  margin-bottom: 15px;
}

.bento-item p {
  font-size: 1rem;
  color:white;
  line-height: 1.6;
}

/* bento mob */
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr; 
  }

  .bento-item.about-text {
    order: -1; 
  }
}

/* Main Layout */
.about-contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

/* Contact Form - on the left */
.contact-section {
  background-color: transparent;
  padding: 40px;
  margin-top: 1.5em;
  margin-top: 25%;
}

.contact-section h2 {
  font-family:  "Kaushan Script", cursive  ;
  margin-top: 5vh;
  font-size: 1.5em;
  color: white;
}

.contact-section form input,
.contact-section form textarea {
  width: 100%;
  height: auto;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: transparent;
  color: white;
}

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

.contact-info {
  margin-top: 20px;
  color: white;
  text-align: left;
}

.contact-info a {
  color: white;
  text-decoration: none;
}

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

#socials i {
  font-size: 24px;
  color: white;
}

/* About Fernando - right */
.about-fernando {
  display: flex;
  align-items: center;
  gap: 30px;
  color: white;
  
}

.about-fernando-text {
  flex: 1;
}

.about-fernando h2 {
  font-family: "Kaushan Script", cursive;
}

.about-fernando p {
  font-size: 1rem;
  line-height: 1.6;
}

.fernando-image {
  flex: 1;
  position: relative;
  width: 15vw;
  height: 15vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;   
  border-radius: 50%;
}

.yellow-circle {
  position: absolute;   
  width: 15vw ;
  height: 15vw;
  background-color: yellow;
  border-radius: 50%;
  z-index: 0; 
}

.fernando-image img {
  width: 13vw; 
  height: 13vw;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;

}

/* Mobile -  Stack & Centre Everything */
@media (max-width: 768px) {
  .about-contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-fernando {
    flex-direction: column;
    text-align: center;
  }

  .contact-section,
  .contact-info {
    text-align: center;
  }

  #socials {
    justify-content: center;
  }
}
