/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ================= HERO ================= */
.team-hero {
  width: 100%;
  height: 400px;
  background: url("../images/LV\ ROOM_Scene\ 1.png") center/cover no-repeat;
  position: relative;
}

.team-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-overlay h1 {
  color: #ffffff;
  font-size: 70px;
  letter-spacing: 4px;
  font-weight: 300;
}

/* ================= TEAM SECTION ================= */
.team-section {
  background: #0e0e0e;
  padding: 100px 60px;
  text-align: center;
}

.team-tag {
  color: #c6a47e;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 10px;
}

.team-section h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 60px;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

/* IMAGE */
.team-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER ZOOM */
.team-card:hover img {
  transform: scale(1.1);
}

/* INFO OVERLAY */
.team-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  text-align: left;
}

.team-info h3 {
  color: #ffffff;
  margin-bottom: 5px;
}

.team-info p {
  color: #c6a47e;
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-overlay h1 {
    font-size: 45px;
  }
}

/* MOBILE */
@media (max-width: 500px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-section {
    padding: 60px 20px;
  }

  .team-overlay h1 {
    font-size: 32px;
  }
}
/* ================= INTRO ================= */
.team-intro {
  background: #0e0e0e;
  text-align: center;
  padding: 80px 60px;
  color: #cfcfcf;
}
.ptag{
    color: #cfcfcf;
}
.team-intro h2 {
  color: #fff;
  font-size: 40px;
  margin: 20px 0;
}

/* ================= FOUNDER ================= */
.founder {
  background: #161616;
  padding: 80px 60px;
}

.founder-container {
  display: flex;
  gap: 50px;
  align-items: center;
}

.founder-image img {
  width: 350px;
  border-radius: 20px;
}

.founder-text h2 {
  color: #fff;
  margin-bottom: 15px;
}

/* ================= VALUES ================= */
.team-values {
  background: #0e0e0e;
  padding: 80px 60px;
}

.values-container {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.value h3 {
  color: #c6a47e;
  font-size: 40px;
}

.value p {
  color: #cfcfcf;
}

/* ================= CTA ================= */
.team-cta {
  background: #161616;
  text-align: center;
  padding: 80px 20px;
}

.team-cta h2 {
  color: #fff;
  margin-bottom: 20px;
}

.team-cta a {
  background: #c6a47e;
  color: #000;
  padding: 12px 25px;
  border-radius: 20px;
  text-decoration: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .founder-container {
    flex-direction: column;
    text-align: center;
  }

  .values-container {
    flex-direction: column;
    gap: 20px;
  }
}