/* =============================================================================
   RENCONTRES & NUDES - BLOG STYLES
   =============================================================================
   
   HOW TO CUSTOMIZE:
   - Colors: Search for "CUSTOMIZABLE" comments to find color variables
   - Fonts: Modify the --font-primary variable below
   - Glow effects: Adjust box-shadow values in the card sections
   
============================================================================= */

/* =============================================================================
   CSS VARIABLES - CUSTOMIZABLE COLORS AND FONTS
============================================================================= */
:root {
  /* CUSTOMIZABLE: Primary colors */
  --color-neon-pink: #ff2fb5;
  --color-neon-pink-light: #ff4ac0;
  --color-purple: #3b0960;
  --color-purple-dark: #1a0330;
  
  /* CUSTOMIZABLE: Background colors */
  --color-bg-deep: #050015;
  --color-bg-card: #0b0218;
  --color-bg-header: rgba(5, 0, 21, 0.95);
  
  /* CUSTOMIZABLE: Text colors */
  --color-text-primary: #ffffff;
  --color-text-secondary: #d4d4e0;
  --color-text-muted: #8a8a9a;
  
  /* CUSTOMIZABLE: Font family */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout */
  --max-width-content: 1100px;
  --max-width-article: 800px;
  --header-height: 70px;
  --border-radius-card: 24px;
  --border-radius-pill: 50px;
  
  /* CUSTOMIZABLE: Glow intensity (adjust opacity and spread) */
  --glow-card: 0 0 40px rgba(255, 47, 181, 0.3), 0 0 80px rgba(59, 9, 96, 0.5);
  --glow-card-hover: 0 0 50px rgba(255, 47, 181, 0.5), 0 0 100px rgba(59, 9, 96, 0.6);
  --glow-button: 0 0 20px rgba(255, 47, 181, 0.4);
  --glow-button-hover: 0 0 30px rgba(255, 47, 181, 0.6);
}

/* =============================================================================
   RESET AND BASE STYLES
============================================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  background: var(--color-bg-deep);
  min-height: 100vh;
  
  /* Radial gradient background with purple/pink glow in center */
  background: 
    radial-gradient(ellipse at 50% 30%, rgba(59, 9, 96, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 47, 181, 0.1) 0%, transparent 40%),
    linear-gradient(180deg, var(--color-bg-deep) 0%, #0a0020 100%);
  background-attachment: fixed;
}

a {
  color: var(--color-neon-pink);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: var(--color-neon-pink-light);
}

img {
  max-width: 100%;
  height: auto;
}

/* =============================================================================
   TYPOGRAPHY
============================================================================= */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Accent text (neon pink) */
.text-accent {
  color: var(--color-neon-pink);
}

/* =============================================================================
   LAYOUT CONTAINERS
============================================================================= */
.container {
  width: 100%;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: var(--max-width-article);
}

/* =============================================================================
   HEADER
============================================================================= */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-bg-header);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 47, 181, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.header__logo .text-accent {
  color: var(--color-neon-pink);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header__link {
  color: var(--color-text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.header__link:hover, .header__link:focus {
  color: var(--color-text-primary);
}

/* =============================================================================
   BUTTONS
============================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius-pill);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:focus {
  outline: 2px solid var(--color-neon-pink);
  outline-offset: 2px;
}

/* Primary button with gradient */
.btn--primary {
  background: linear-gradient(90deg, var(--color-neon-pink-light), var(--color-neon-pink));
  color: var(--color-text-primary);
  box-shadow: var(--glow-button);
}

.btn--primary:hover, .btn--primary:focus {
  transform: translateY(-2px);
  box-shadow: var(--glow-button-hover);
  color: var(--color-text-primary);
}

/* Ghost button (outline style) */
.btn--ghost {
  background: transparent;
  color: var(--color-neon-pink);
  border: 1px solid rgba(255, 47, 181, 0.5);
}

.btn--ghost:hover, .btn--ghost:focus {
  background: rgba(255, 47, 181, 0.1);
  border-color: var(--color-neon-pink);
  color: var(--color-neon-pink);
}

/* Small button variant */
.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* =============================================================================
   HERO SECTION
============================================================================= */
.hero {
  text-align: center;
  padding: 4rem 0 3rem;
}

.hero__title {
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: var(--color-text-secondary);
}

/* =============================================================================
   BLOG CARDS GRID
============================================================================= */
.blog-grid {
  padding: 2rem 0 4rem;
}

.blog-grid__title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.blog-grid__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  list-style: none;
}

/* Responsive grid: 2 columns on tablet, 3 on desktop */
@media (min-width: 640px) {
  .blog-grid__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================================================
   BLOG CARD
============================================================================= */
.card {
  background: var(--color-bg-card);
  border-radius: var(--border-radius-card);
  padding: 1.75rem;
  box-shadow: var(--glow-card);
  border: 1px solid rgba(255, 47, 181, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--glow-card-hover);
}

.card__category {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-neon-pink);
  background: rgba(255, 47, 181, 0.15);
  border: 1px solid rgba(255, 47, 181, 0.4);
  border-radius: var(--border-radius-pill);
  margin-bottom: 1rem;
  align-self: flex-start;
}

.card__title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.card__title a {
  color: var(--color-text-primary);
  transition: color 0.3s ease;
}

.card__title a:hover, .card__title a:focus {
  color: var(--color-neon-pink);
}

.card__excerpt {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.card__meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.card__link {
  margin-top: auto;
}

/* =============================================================================
   ARTICLE PAGE STYLES
============================================================================= */
.article-wrapper {
  padding: 2rem 0 4rem;
}

.article {
  background: var(--color-bg-card);
  border-radius: var(--border-radius-card);
  padding: 2.5rem;
  box-shadow: var(--glow-card);
  border: 1px solid rgba(255, 47, 181, 0.15);
}

@media (max-width: 640px) {
  .article {
    padding: 1.5rem;
    border-radius: 16px;
  }
}

.article__header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 47, 181, 0.15);
}

.article__category {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-neon-pink);
  background: rgba(255, 47, 181, 0.15);
  border: 1px solid rgba(255, 47, 181, 0.4);
  border-radius: var(--border-radius-pill);
  margin-bottom: 1.25rem;
}

.article__title {
  margin-bottom: 1rem;
}

.article__meta {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Table of Contents */
.toc {
  background: rgba(59, 9, 96, 0.2);
  border: 1px solid rgba(255, 47, 181, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.toc__title {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.toc__list {
  list-style: none;
}

.toc__list li {
  margin-bottom: 0.5rem;
}

.toc__list a {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toc__list a::before {
  content: "→";
  color: var(--color-neon-pink);
}

.toc__list a:hover, .toc__list a:focus {
  color: var(--color-neon-pink);
}

/* Article Content */
.article__content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 47, 181, 0.1);
}

.article__content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.article__content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.article__content p {
  margin-bottom: 1.25rem;
}

.article__content ul, .article__content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.article__content li {
  margin-bottom: 0.5rem;
}

.article__content strong {
  color: var(--color-text-primary);
}

/* =============================================================================
   CTA BLOCK (Bottom of article)
============================================================================= */
.cta-block {
  background: 
    radial-gradient(ellipse at center, rgba(255, 47, 181, 0.2) 0%, transparent 70%),
    linear-gradient(135deg, rgba(59, 9, 96, 0.4), rgba(26, 3, 48, 0.6));
  border: 1px solid rgba(255, 47, 181, 0.3);
  border-radius: var(--border-radius-card);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 0 60px rgba(255, 47, 181, 0.2);
}

.cta-block__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cta-block__text {
  max-width: 500px;
  margin: 0 auto 1.5rem;
  color: var(--color-text-secondary);
}

/* =============================================================================
   FOOTER
============================================================================= */
.footer {
  background: rgba(5, 0, 21, 0.8);
  border-top: 1px solid rgba(255, 47, 181, 0.1);
  padding: 3rem 0 2rem;
  margin-top: auto;
}

.footer__inner {
  text-align: center;
}

.footer__brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer__link {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.footer__link:hover, .footer__link:focus {
  color: var(--color-neon-pink);
}

.footer__link:focus-visible {
  outline: 2px solid var(--color-neon-pink);
  outline-offset: 4px;
  border-radius: 4px;
}

.footer__adult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-primary);
  background: rgba(255, 47, 181, 0.2);
  border: 1px solid rgba(255, 47, 181, 0.4);
  border-radius: var(--border-radius-pill);
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
}

/* =============================================================================
   UTILITY CLASSES
============================================================================= */
.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;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--color-neon-pink);
  outline-offset: 2px;
}

/* =============================================================================
   BACK TO BLOG LINK
============================================================================= */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.back-link:hover, .back-link:focus {
  color: var(--color-neon-pink);
}

.back-link:focus-visible {
  outline: 2px solid var(--color-neon-pink);
  outline-offset: 4px;
  border-radius: 4px;
}

.back-link::before {
  content: "←";
}

/* =============================================================================
   ENHANCED ARTICLE STYLES - Callout boxes, tips, separators
============================================================================= */

/* Breadcrumb navigation */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--color-text-muted);
}

.breadcrumb a:hover {
  color: var(--color-neon-pink);
}

/* Guide badge */
.badge--guide {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-primary);
  background: linear-gradient(90deg, var(--color-neon-pink-light), var(--color-neon-pink));
  border-radius: var(--border-radius-pill);
  margin-left: 0.75rem;
  vertical-align: middle;
}

/* Section divider */
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 47, 181, 0.3), transparent);
  margin: 3rem 0;
}

/* Callout box - for important sections */
.callout {
  background: linear-gradient(135deg, rgba(59, 9, 96, 0.3), rgba(26, 3, 48, 0.4));
  border: 1px solid rgba(255, 47, 181, 0.3);
  border-left: 3px solid var(--color-neon-pink);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.callout--warning {
  border-left-color: #ff6b35;
}

.callout--tip {
  border-left-color: #00d9ff;
}

.callout__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Tips list with icons */
.tips-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.tips-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.tips-list li::before {
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.tips-list--check li::before {
  content: "✅";
}

.tips-list--warning li::before {
  content: "⚠️";
}

.tips-list--arrow li::before {
  content: "👉";
}

/* Highlight quote/key sentence */
.highlight-quote {
  border-left: 3px solid var(--color-neon-pink);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-size: 1.05rem;
  color: var(--color-text-primary);
  font-style: italic;
}

/* Inline highlight text */
.text-highlight {
  color: var(--color-text-primary);
  background: rgba(255, 47, 181, 0.15);
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
}

/* Article intro paragraph - larger */
.article__intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

/* Larger article content max width */
.container--article {
  max-width: 780px;
}

/* Article with more top margin */
.article-wrapper--spaced {
  padding-top: 80px;
}

@media (max-width: 768px) {
  .article-wrapper--spaced {
    padding-top: 40px;
  }
}

/* Enhanced CTA block with stronger glow */
.cta-block--strong {
  background: 
    radial-gradient(ellipse at center, rgba(255, 47, 181, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, rgba(59, 9, 96, 0.5), rgba(26, 3, 48, 0.7));
  box-shadow: 0 0 80px rgba(255, 47, 181, 0.3), 0 0 120px rgba(59, 9, 96, 0.4);
}
