/* =========================================================
   PRACTITIONER PROFILE PAGE STYLES
   File: css/practitioner-style.css
========================================================= */

/* =========================
   PRACTITIONER HERO
========================= */

.practitioner-profile-hero {
  position: relative;
  padding: 120px 0;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #f8eee7 0%,
      #fffdfb 55%,
      #f7efe6 100%
    );
}

.practitioner-profile-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(212, 168, 87, 0.12);
}

.practitioner-profile-hero::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(156, 122, 69, 0.08);
}

.practitioner-hero-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 70px;
  align-items: center;
}

/* =========================
   HERO IMAGE
========================= */

.practitioner-hero-image {
  position: relative;

  padding: 18px;

  border-radius: 42px;

  background:
    linear-gradient(
      180deg,
      #fffdfb 0%,
      #f7efe6 100%
    );

  border: 2px solid #e4c48f;

  box-shadow:
    0 25px 65px rgba(0,0,0,0.12),
    0 8px 20px rgba(0,0,0,0.05);
}

.practitioner-hero-image::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);

  width: 130px;
  height: 4px;

  border-radius: 50px;

  background:
    linear-gradient(
      90deg,
      #d9b06c,
      #f3ddb2,
      #c89b52
    );

  z-index: 2;
}

.practitioner-hero-image img {
  width: 100%;
  height: 560px;

  object-fit: cover;
  object-position: center top;

  display: block;

  border-radius: 32px;

  border: 2px solid #ecd7b0;

  background: #ffffff;

  box-shadow:
    0 12px 35px rgba(0,0,0,0.10);
}

/* =========================
   HERO CONTENT
========================= */

.practitioner-hero-content {
  max-width: 760px;
}

.practitioner-hero-content .section-label {
  display: inline-block;

  padding: 10px 18px;
  margin-bottom: 22px;

  border-radius: 50px;

  background: rgba(255,255,255,0.75);

  border: 1px solid rgba(214, 184, 138, 0.7);

  color: #9c7a45;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.practitioner-hero-content h1 {
  font-size: 66px;
  line-height: 1.08;
  color: #2f2f2f;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -1px;
}

.practitioner-hero-content h1 span {
  display: block;
  font-size: 34px;
  color: #9c7a45;
  margin-top: 10px;
  font-weight: 600;
}

.practitioner-intro {
  font-size: 21px;
  line-height: 1.9;
  color: #666666;
  margin-bottom: 38px;
}

/* =========================
   ACTION BUTTONS
========================= */

.practitioner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 34px;

  border-radius: 60px;

  border: 1px solid #c89b52;

  color: #9c7a45;

  background: rgba(255,255,255,0.7);

  text-decoration: none;

  font-size: 15px;
  font-weight: 700;

  transition: 0.35s ease;
}

.secondary-btn:hover {
  background: #fff8ef;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* =========================
   PROFILE SECTION
========================= */

.practitioner-profile-section {
  padding: 110px 0;
  background: #fffdfb;
}

.practitioner-profile-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 42px;
  align-items: start;
}

/* =========================
   BIO CARD
========================= */

.practitioner-bio-card {
  background: #ffffff;

  padding: 55px;

  border-radius: 36px;

  border: 1px solid #ecd8b7;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.05),
    0 5px 15px rgba(0,0,0,0.03);
}

.practitioner-bio-card h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #2f2f2f;
  margin-bottom: 24px;
}

.practitioner-bio-card h3 {
  font-size: 28px;
  color: #9c7a45;
  margin: 40px 0 18px;
}

.practitioner-bio-card p,
.practitioner-bio-card li {
  font-size: 17px;
  line-height: 1.95;
  color: #666666;
}

.practitioner-bio-card p {
  margin-bottom: 18px;
}

.practitioner-bio-card ul {
  padding-left: 22px;
  margin-top: 12px;
}

.practitioner-bio-card li {
  margin-bottom: 10px;
}

/* =========================
   SIDE INFO CARD
========================= */

.practitioner-info-card {
  position: sticky;
  top: 120px;

  background:
    linear-gradient(
      180deg,
      #fffdfb 0%,
      #f7efe6 100%
    );

  padding: 38px;

  border-radius: 34px;

  border: 1px solid #ead9bf;

  box-shadow:
    0 20px 45px rgba(0,0,0,0.06),
    0 8px 18px rgba(0,0,0,0.03);
}

.practitioner-info-card h3 {
  font-size: 28px;
  color: #9c7a45;
  margin-bottom: 26px;
}

.info-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(196, 158, 98, 0.22);
}

.info-item:first-of-type {
  padding-top: 0;
}

.info-item span {
  display: block;

  color: #9c7a45;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  margin-bottom: 6px;
}

.info-item strong {
  display: block;

  color: #333333;

  font-size: 16px;
  line-height: 1.5;
}

.full-btn {
  width: 100%;
  margin-top: 28px;
}

/* =========================
   APPROACH SECTION
========================= */

.practitioner-approach-section {
  padding: 120px 0;

  background:
    linear-gradient(
      180deg,
      #f8eee7 0%,
      #fffdfb 100%
    );

  text-align: center;
}

.practitioner-approach-section h2 {
  font-size: 52px;
  line-height: 1.15;
  color: #2f2f2f;
  margin-bottom: 60px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.approach-card {
  background: rgba(255,255,255,0.92);

  padding: 42px 34px;

  border-radius: 34px;

  border: 1px solid #ead8bb;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.06),
    0 8px 18px rgba(0,0,0,0.03);

  transition: 0.35s ease;
}

.approach-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 30px 65px rgba(0,0,0,0.10),
    0 12px 25px rgba(0,0,0,0.05);
}

.approach-card h3 {
  font-size: 28px;
  color: #9c7a45;
  margin-bottom: 18px;
}

.approach-card p {
  font-size: 16px;
  line-height: 1.85;
  color: #666666;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

  .practitioner-hero-grid {
    grid-template-columns: 360px 1fr;
    gap: 45px;
  }

  .practitioner-hero-image img {
    height: 500px;
  }

  .practitioner-hero-content h1 {
    font-size: 54px;
  }

  .practitioner-profile-grid {
    grid-template-columns: 1fr;
  }

  .practitioner-info-card {
    position: relative;
    top: auto;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .practitioner-profile-hero {
    padding: 90px 0;
  }

  .practitioner-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .practitioner-hero-image {
    max-width: 430px;
    margin: 0 auto;
  }

  .practitioner-hero-image img {
    height: 520px;
  }

  .practitioner-hero-content {
    text-align: center;
  }

  .practitioner-hero-content h1 {
    font-size: 46px;
  }

  .practitioner-hero-content h1 span {
    font-size: 26px;
  }

  .practitioner-intro {
    font-size: 18px;
  }

  .practitioner-actions {
    justify-content: center;
  }

  .practitioner-profile-section,
  .practitioner-approach-section {
    padding: 80px 0;
  }

  .practitioner-bio-card {
    padding: 36px;
  }

  .practitioner-bio-card h2 {
    font-size: 34px;
  }

  .practitioner-approach-section h2 {
    font-size: 38px;
  }
}

@media (max-width: 480px) {

  .practitioner-profile-hero {
    padding: 70px 0;
  }

  .practitioner-hero-image {
    padding: 14px;
    border-radius: 32px;
  }

  .practitioner-hero-image img {
    height: 430px;
    border-radius: 24px;
  }

  .practitioner-hero-content h1 {
    font-size: 38px;
  }

  .practitioner-hero-content h1 span {
    font-size: 22px;
  }

  .practitioner-intro {
    font-size: 17px;
  }

  .practitioner-actions {
    flex-direction: column;
  }

  .secondary-btn,
  .practitioner-actions .primary-btn {
    width: 100%;
  }

  .practitioner-bio-card,
  .practitioner-info-card,
  .approach-card {
    padding: 28px;
    border-radius: 28px;
  }

  .practitioner-bio-card h2 {
    font-size: 30px;
  }

  .practitioner-bio-card h3,
  .practitioner-info-card h3,
  .approach-card h3 {
    font-size: 24px;
  }
}