/* ==============================
   Pearli Hoo Studio Custom Styles
============================== */

@font-face {
  font-family: "Bulgew";
  src: url("../fonts/Bulgew.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FredokaLocal";
  src: url("../fonts/Fredoka.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ph-dark: #09090d;
  --ph-black: #0a0a0e;
  --ph-plum: #7c5a7e;
  --ph-gray: #939899;
  --ph-gray-dark: #7f8586;
  --ph-white: #ffffff;
}

/* ==============================
   Global
============================== */

body.profile-page {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  color: var(--ph-gray);
  background: var(--ph-white);
}

.profile-page .section {
  background: var(--ph-white);
}

/* ==============================
   Navbar
============================== */

.navbar.bg-white {
  background: var(--ph-white) !important;
  box-shadow: none;
}

.navbar .navbar-brand {
  color: var(--ph-gray) !important;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.navbar .nav-link {
  color: var(--ph-gray) !important;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--ph-plum) !important;
}

/* Contact Button */

.navbar .navbar-nav .nav-item .nav-link.contact-btn {
  background: #3a3a3f !important;
  color: var(--ph-white) !important;
  border: none !important;
  border-radius: 12px !important;
  min-width: 92px;
  height: 42px;
  padding: 0 22px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em;
}

.navbar .navbar-nav .nav-item .nav-link.contact-btn:hover,
.navbar .navbar-nav .nav-item .nav-link.contact-btn:focus,
.navbar .navbar-nav .nav-item .nav-link.contact-btn:active {
  background: #2b2b30 !important;
  color: var(--ph-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18) !important;
}

/* ==============================
   Hero
============================== */

.ph-hero {
  position: relative;
  min-height: 620px;
  padding-top: 80px;
  overflow: hidden;
  background: var(--ph-dark);
  color: var(--ph-white);
}

.ph-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 7, 10, 0.78) 0%,
      rgba(12, 10, 16, 0.58) 42%,
      rgba(35, 20, 40, 0.32) 100%
    ),
    url("../img/PearliHooStationery.jpg");
  background-size: cover;
  background-position: 70% center;
}

.ph-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 45% 15%, rgba(124, 90, 126, 0.28), transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(124, 90, 126, 0.28), transparent 25%);
}

.ph-hero-content {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.ph-hero-text {
  max-width: 560px;
  margin-left: 40px;
}

.ph-hero h1 {
  color: var(--ph-white);
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  line-height: 1.06;
  margin-bottom: 28px;
}

.hero-fredoka {
  font-family: "FredokaLocal", "Fredoka", "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-bulgew {
  font-family: "Bulgew", cursive;
  font-weight: normal;
  letter-spacing: 0.01em;
}

.ph-intro {
 color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 32px;
}

.ph-hero-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.ph-hero-buttons .btn {
  min-width: 130px;
  height: 42px;
  padding: 0 22px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==============================
   Gradient Buttons
============================== */

.profile-page .gradient-btn {
  background: linear-gradient(
    90deg,
    #f6d27b 0%,
    #f4a37d 22%,
    #f4a6c8 42%,
    #b69ce8 62%,
    #9ed9e5 82%,
    #bfe3b0 100%
  ) !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 12px !important;
  color: var(--ph-white) !important;
  box-shadow: 0 8px 20px rgba(124, 90, 126, 0.28) !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
  overflow: hidden;
}

.profile-page .gradient-btn:hover,
.profile-page .gradient-btn:focus,
.profile-page .gradient-btn:active {
  background: linear-gradient(
    145 deg,
    #c88928 0%,
    #c85b3f 22%,
    #c85b95 42%,
    #7b55b8 62%,
    #3fa4b8 82%,
    #68a95a 100%
  ) !important;
  color: var(--ph-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(124, 90, 126, 0.42) !important;
}

/* About Button */

.profile-page .about-btn {
  background: #3a3a3f !important;
  border: none !important;
  border-radius: 12px !important;
  color: var(--ph-white) !important;
  box-shadow: none !important;
  transition: all 0.2s ease;
}

.profile-page .about-btn:hover,
.profile-page .about-btn:focus,
.profile-page .about-btn:active {
 background: #2b2b30 !important;
  color: var(--ph-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18) !important;
}

/* ==============================
   Social Bar
============================== */

.profile-page .social-section {
  padding: 45px 0;
  background: var(--ph-white);
  text-align: center;
}

.profile-page .social-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: rgba(28, 28, 32, 0.96);
  padding: 22px 48px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 100;
}

.profile-page .social-cta.gradient-btn {
  width: 145px;
  height: 42px;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

.profile-page .social-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.16);
}

.profile-page .social-icon {
  width: 42px;
  height: 42px;
  color: var(--ph-white) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none !important;
  border-radius: 10px;
  background: transparent !important;
  transition: all 0.2s ease;
}

.profile-page .social-icon:hover,
.profile-page .social-icon:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--ph-white) !important;
  transform: translateY(-2px);
}

/* ==============================
   Intro / Portfolio Text
============================== */

.profile-page .title {
  color: var(--ph-gray);
  font-family: "FredokaLocal", "Fredoka", "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.profile-page .description {
  color: #8f9697;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* ==============================
   Work Cards
============================== */

.work-card {
  background: var(--ph-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding-bottom: 24px;
  margin-bottom: 32px;
  transition: all 0.2s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
}

.work-card img {
  width: 100%;
  display: block;
}

.work-card h4 {
  color: #8b9293;
  font-size: 1.05rem;
  font-weight: 550;
  letter-spacing: 0.01em;
  margin: 22px 18px 10px;
}

.work-card p {
  color: #8f9697;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  margin: 0 32px;
}

/* ==============================
   Mobile
============================== */

@media (max-width: 768px) {
  .ph-hero {
    min-height: 620px;
    padding-top: 90px;
  }

  .ph-hero-bg {
    background-position: center;
  }

  .ph-hero-content {
    min-height: 520px;
  }

  .ph-hero-text {
    max-width: 90%;
    margin-left: 0;
  }

  .ph-hero h1 {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .ph-intro {
    font-size: 0.9rem;
  }

  .profile-page .social-bar {
    width: calc(100% - 32px);
    gap: 16px;
    padding: 18px 20px;
    flex-wrap: wrap;
  }

  .profile-page .social-divider {
    display: none;
  }
}

/* ==============================
   Featured Character Section
============================== */

#work .section h3 {
  color: #8b9293;
  font-family: "FredokaLocal", "Fredoka", "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

#work .section p {
  color: #8f9697;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

#work .section .btn-primary {
  background: #3a3a3f !important;
  border: none !important;
  border-radius: 12px !important;
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 14px 34px;
  margin-top: 24px;
  box-shadow: none !important;
}

#work .section .btn-primary:hover,
#work .section .btn-primary:focus {
  background: #2b2b30 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(124, 90, 126, 0.22) !important;
}