/* getyourboyfriendback.com — Magazine/Editorial Style */
/* Rose pink (#D4728C) + soft grey (#E8E4E1) */
/* Fonts: Lora (headings) + Work Sans (body) */

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

:root {
  --pink: #D4728C;
  --pink-light: #E8A0B4;
  --pink-dark: #B85A74;
  --grey: #E8E4E1;
  --grey-dark: #6B6462;
  --text: #2D2926;
  --white: #FFFFFF;
  --bg: #FAF8F7;
}

html { font-size: 18px; scroll-behavior: smooth; }

body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--bg);
}

h1, h2, h3, h4, h5 {
  font-family: 'Lora', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

a { color: var(--pink-dark); text-decoration: none; }
a:hover { color: var(--pink); }

/* ---- HEADER (magazine masthead) ---- */
.magazine-header {
  border-bottom: 3px solid var(--pink);
  background: var(--white);
  padding: 0;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2rem 1rem;
  text-align: center;
}
.logo-link { display: inline-block; text-decoration: none; }
.logo-text {
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pink);
  display: block;
  letter-spacing: -0.02em;
}
.logo-tagline {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--grey-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.main-nav {
  margin-top: 1rem;
  border-top: 1px solid var(--grey);
  padding-top: 0.75rem;
}
.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.nav-list a {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.nav-list a:hover { border-bottom-color: var(--pink); color: var(--pink-dark); }

/* ---- MAIN CONTENT ---- */
.magazine-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

/* Hero section for articles */
.article-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--grey);
}
.article-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--pink-dark);
}
.article-hero .subtitle {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--grey-dark);
  max-width: 600px;
  margin: 0 auto;
}

h1 { font-size: 2.4rem; margin-bottom: 1.5rem; }
h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: var(--pink-dark);
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--grey);
}
h3 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }

p { margin-bottom: 1.25rem; }

/* Pull quotes — signature magazine element */
.pullquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--pink);
  border-left: 4px solid var(--pink);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: linear-gradient(135deg, rgba(212,114,140,0.06), transparent);
}

/* Highlighted boxes */
.insight-box {
  background: var(--white);
  border: 1px solid var(--grey);
  border-left: 4px solid var(--pink);
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.insight-box h4 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink-dark);
  margin-bottom: 0.75rem;
}

/* Section divider */
.section-divider {
  text-align: center;
  margin: 3rem 0;
  color: var(--pink-light);
  font-size: 1.5rem;
  letter-spacing: 0.3em;
}

/* Internal link cards */
.related-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: 6px;
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}
.related-card:hover { box-shadow: 0 4px 16px rgba(212,114,140,0.15); }
.related-card h4 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.related-card p {
  font-size: 0.9rem;
  color: var(--grey-dark);
  margin-bottom: 0;
}

ul, ol { margin: 0 0 1.5rem 1.5rem; }
li { margin-bottom: 0.4rem; }

/* ---- FOOTER ---- */
.magazine-footer {
  background: var(--text);
  color: var(--grey);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--pink-light);
  margin-bottom: 0.75rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col a {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 2;
}
.footer-col a:hover { color: var(--pink-light); }
.copyright {
  text-align: center;
  font-size: 0.8rem;
  color: var(--grey-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  html { font-size: 16px; }
  .article-hero h1 { font-size: 2rem; }
  h1 { font-size: 1.8rem; }
  .nav-list { gap: 1rem; }
  .footer-cols { grid-template-columns: 1fr; }
  .magazine-content { padding: 2rem 1.25rem; }
  .pullquote { font-size: 1.15rem; padding: 1rem 1.25rem; }
}
