/* ---------- CONTACT PAGE ---------- */

.contact-page {
  background: #fdf8f2;
  color: #333;
  padding: 2rem 1rem;
}

.contact-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-intro h1 {
  color: #2d4d34;
  margin-bottom: 0.5rem;
}

.contact-intro p {
  max-width: 600px;
  margin: 0 auto;
  color: #555;
}

.contact-section {
  max-width: 700px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-section h1,
.about-section h1 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

.contact-options {
  max-width: 700px;
  margin: 2rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);}

.contact-options .option {
  background: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  max-width: 700px;
  margin: 0 auto;
}

.contact-options p {
  padding-bottom: 15px;
  font-size: 1.2rem;
}

.about-section, .team-section {
  max-width: 700px;
  margin: 2rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.team-grid {
  display: grid;
  gap: 2rem;
}

.team-member {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.team-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.team-info h3 {
  margin: 0 0 0.3rem;
  color: #2d4d34;
}

.team-info p {
  margin: 0.3rem 0;
  color: #555;
}

.team-meta {
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}

.quick-contact {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.quick-contact li {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.team-list {
  list-style: none;
  padding-left: 0;
}

.team-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-button {
  background: #2d4d34;
  color: #fff;
  border: none;
  font-size: 1.2rem;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  width: 300px;
}

.tab-button.active,
.tab-button:hover {
  background: #406e4d;
}

.tab-content {
  display: none;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
  display: block;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 0.4rem;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.submit-btn {
  background: #2d4d34;
  color: #fff;
  padding: 0.9rem 1.7rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 1.5rem;
  width: 100%;
}

.submit-btn:hover {
  background: #406e4d;
}

@media (max-width: 600px) {
  .tab-button {
    width: 100%;
    font-size: 1rem;
  }
  .tab-content {
    padding: 1.5rem;
  }

    .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .team-photo {
    width: 140px;
    height: 140px;
  }
}

/* Tablet & Desktop */
@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
