/* Kim Crayton Ghost Theme - styles.css */

@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&family=Montserrat:wght@400;700&display=swap');

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --kim-purple: #4F24FA;
  --kim-green: #0D6545;
  --kim-pink: #FC58FA;
  --kim-yellow: #FCBA2C;
}

html {
  background: black;
  color: white;
  font-family: 'Montserrat', sans-serif;
}
/* Content links */
.page-content a {
  color: var(--kim-yellow);
  text-decoration: underline;
}

.page-content a:hover {
  opacity: 0.8;
}

body {
  overflow-x: hidden;
}

h1 {
  font-family: 'Bowlby One SC', serif;
  font-size: 1.5rem;
  text-align: center;
}

@media (min-width: 931px) {
  h1 { font-size: 3rem; }
}

h2 {
  font-family: 'Bowlby One SC', serif;
  font-size: 2rem;
  text-align: center;
}

.page-title {
  text-align: left;
  color: var(--kim-yellow);
  font-size: 2rem;
  position: relative;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6);
  z-index: 10;
}

@media (min-width: 931px) {
  .page-title { font-size: 3.5rem; }
}

@media (max-width: 930px) {
  .page-content .container {
    padding-top: 2rem;
  }
}

/* ── NAV ── */
header nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  padding: 1.5rem 2rem;
  position: relative;
  width: 100%;
  z-index: 100;
}

@media (max-width: 930px) {
  header nav { padding: 2rem 1rem; }
}

header nav ul {
  align-items: center;
  display: flex;
  list-style: none;
  margin-left: auto;
}

header nav ul li:first-child { flex: unset; }

header nav ul a {
  border: 1px solid transparent;
  color: white;
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 0.6rem;
  text-decoration: none;
  white-space: nowrap;
}

@media (min-width: 931px) {
  header nav ul a:hover { border-bottom-color: white; }
  header nav ul a.active { border-bottom-color: #fff; }
}

/* hamburger */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  position: absolute;
  right: 2rem;
  top: 2rem;
  z-index: 1000;
}

.hamburger span {
  background-color: white;
  border-radius: 2px;
  display: block;
  height: 3px;
  transition: all 0.3s ease;
  width: 30px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

@media (max-width: 930px) {
  .hamburger { display: flex; }

  header nav ul {
    background-color: black;
    flex-direction: column;
    gap: 0;
    left: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    width: 100%;
    z-index: 999;
  }

  header nav ul li {
    border-bottom: 1px solid #333;
    width: 100%;
  }

  header nav ul a {
    display: block;
    padding: 1.5rem 2rem;
    width: 100%;
  }

  header nav ul.active {
    max-height: 800px;
    opacity: 1;
    padding: 1rem 0;
  }
}

/* dropdown */
.has-submenu { position: relative; }

.has-submenu .submenu {
  background-color: black;
  border: 1px solid #333;
  display: none;
  flex-direction: column;
  gap: 0;
  list-style: none;
  min-width: 200px;
  padding: 0;
  position: absolute;
  top: 3rem;
  left: 0;
  z-index: 1000;
}

.has-submenu .submenu li {
  border-bottom: 1px solid #333;
  width: 100%;
}

.has-submenu .submenu li:last-child { border-bottom: none; }

.has-submenu .submenu a {
  display: block;
  padding: 1rem 1.5rem;
}

.has-submenu:hover .submenu { display: flex; }

@media (max-width: 930px) {
  .has-submenu .submenu {
    display: flex;
    position: static;
    border: none;
    background-color: #0a0a0a;
    max-height: 100%;
    opacity: 1;
    padding: 0;
  }
  .has-submenu .submenu a { padding-left: 3rem; }
}

/* ── HERO hgroup ── */
header hgroup {
  margin: 0 auto;
  max-width: 950px;
  min-height: 2rem;
  position: relative;
}

@media (min-width: 931px) {
  header hgroup { margin: 0 auto; min-height: 3rem; }
}
.star-yellow {
  display: none;
  position: absolute;
  top: 20px;
  right: -140px;
  z-index: -1;
  pointer-events: none;
  width: 60px;
}

@media (min-width: 931px) { .star-yellow { display: block; } }

.star-white {
  position: absolute;
  bottom: -100px;
  left: -60px;
  pointer-events: none;
}

.zag-l {
  position: absolute;
  left: -160px;
  top: 0;
  pointer-events: none;
}

.zag-r { display: none; }

@media (min-width: 931px) {
  .zag-r {
    display: block;
    position: absolute;
    right: -120px;
    bottom: -120px;
  }
}

/* ── SECTIONS ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.page-content {
  padding: 4rem 0;
  position: relative;
  z-index: 10;
}

.page-content.no-header {
  padding-top: 0;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 2rem 1.5rem;
  width: 100%;
}

@media (min-width: 931px) {
  .container { padding: 3rem; }
}

.container h2 { margin-bottom: 3rem; }

.container p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  margin: 0 auto 1.5rem;
  max-width: 800px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.container p:last-child {
  margin-bottom: 0;
}

@media (min-width: 931px) {
  .container p { font-size: 1.5rem; }
}

section .container {
  padding: 3rem 1rem;
}

@media (min-width: 931px) {
  section .container { padding: 3rem; }
}

.section-purple {
  background-color: var(--kim-purple);
}

.section-green {
  background-color: var(--kim-green);
}

.section-pink {
  background-color: var(--kim-pink);
  color: black;
}

.section-yellow {
  background-color: var(--kim-yellow);
  color: black;
}

.section-divider {
  display: block;
  width: 100%;
  position: relative;
  bottom: -1px;
}

.section-divider-top {
  display: block;
  width: 100%;
  position: relative;
  top: -1px;
}

/* ── BLOCKQUOTES ── */
.blockquote {
  border-right: 20px solid transparent;
  margin: 2rem auto;
  max-width: 60rem;
}

.blockquote + .blockquote { margin-top: 6rem; }

.blockquote p {
  margin: 0 2rem;
  max-width: 60rem;
}

.section-purple .blockquote,
.section-green .blockquote { border-left: 20px solid var(--kim-pink); }

.section-pink .blockquote,
.section-yellow .blockquote { border-left: 20px solid var(--kim-purple); }

/* ── WORK WITH ME ── */
.work-with-me { padding: 0; }
.work-with-me.work-with-me-as { padding: 3rem; }

.work-with-me ul {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 1.25rem;
  gap: 3rem;
  justify-content: center;
  list-style: none;
  padding: 3rem;
}

@media (min-width: 931px) {
  .work-with-me ul { flex-direction: row; }
}

.work-with-me ul a {
  align-items: baseline;
  background: transparent url(../images/btn-bg.png) scroll no-repeat center center;
  background-size: cover;
  color: black;
  font-family: 'Bowlby One SC', serif;
  gap: 0.5rem;
  display: flex;
  height: 95px;
  justify-content: center;
  padding: 3.2rem 2rem 0 0;
  text-align: center;
  text-decoration: none;
  width: 260px;
}

.work-with-me ul a:hover { color: var(--kim-purple); }

/* ── MEET KIM ── */
.meet-kim {
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
  gap: 4rem;
  margin-bottom: 6rem;
}

@media (min-width: 931px) {
  .meet-kim { flex-direction: row; }
  .meet-kim img { max-width: 430px; }
}

.meet-kim img { max-width: 100%; }

/* ── ABOUT ── */
.about {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-weight: bold;
  gap: 3.75rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .about { flex-direction: row; }
  .about img { max-width: 400px; border-radius: 3rem; }
}

.about img { max-width: 100%; }

/* ── FOOTER ── */
footer {
  background-color: var(--kim-yellow);
  color: black;
  font-family: 'Bowlby One SC', serif;
}

footer section {
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
  gap: 3rem;
  justify-content: space-between;
  padding: 3rem 1rem;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}

@media (min-width: 931px) {
  footer section {
    flex-direction: row;
    gap: 0;
    padding: 3rem;
  }
}

footer nav ul {
  list-style: none;
  padding: 0;
}

footer nav ul a {
  align-items: center;
  color: black;
  display: flex;
  gap: 0.5rem;
  text-decoration: none;
}

footer nav ul a:hover { color: var(--kim-purple); }

footer .social ul {
  display: flex;
  gap: 0.5rem;
}

footer .social a {
  color: black;
}

footer .social a:hover {
  color: var(--kim-purple);
}

footer .social svg {
  height: 40px;
  width: 40px;
  display: block;
}

/* ── DECORATIVE SVGs ── */
.yellow-tl {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

.pink-tc {
  position: fixed;
  top: 0;
  left: calc(50% - 124px);
  z-index: -1;
  pointer-events: none;
}

.purple-tr {
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
}

/* Ghost required classes */
.kg-width-wide {
  margin-left: calc(25% - 25vw);
  margin-right: calc(25% - 25vw);
  width: auto;
}

.kg-width-full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.kg-image { max-width: 100%; }
.kg-image-card { margin: 1.5em 0; }
.kg-embed-card { margin: 1.5em 0; }
.kg-gallery-container { display: flex; flex-direction: column; }
.kg-gallery-row { display: flex; flex-direction: row; justify-content: center; }
.kg-gallery-image img { display: block; margin: 0; width: 100%; height: 100%; object-fit: cover; }
/* Testimonials grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 931px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.testimonial {
  border-left: 3px solid var(--kim-yellow);
  padding-left: 1.5rem;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  font-style: italic;
}

@media (min-width: 931px) {
  .testimonial-quote { font-size: 1.1rem; }
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--kim-yellow);
  margin-bottom: 0;
}
