/* ========== ABOUT-CONTACT ========== */
.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 2rem;
}

.about-gallery {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-gallery img {
  width: 100%;
  max-height: 50vh;
  object-position: top;
  object-fit: cover;
  border: 8px ridge var(--metal);
  border-radius: 8px;
  top: 0%;
}

.about-text {
  flex: 2;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  border-radius: 0.5rem;
  text-shadow: 1px 1px 2px #000;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--metal);
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.contact-form label {
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 2px #000;
}

.contact-form span {
  color: red;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Quicksand', sans-serif;
}

.contact-form button {
  padding: 0.75rem;
  background-color: var(--accent);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #a97a40;
}

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

  .about-gallery {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-gallery img {
    max-width: 45%;
  }

  .about-text {
    font-size: 1rem;
  }
}
    
.about-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 2rem;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--metal);
  border-radius: 12px;
  padding: 1rem;
  backdrop-filter: blur(3px);
}

.about-row img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  border: 6px ridge var(--metal);
}
/* Fix me */
#fam img {
  width: 100%;
}

.about-row p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px #000;
}

.about-row p strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: var(--accent);
}

@media (max-width: 768px) {
  .about-row {
    flex-direction: column;
    text-align: center;
  }

  .about-row img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}

