/**
 * Heaven Four - Content Styles
 * Page content styling with luxury touches
 */

/* ===== LUXURY TYPOGRAPHY ===== */
body {
  font-family: var(--h4-font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--h4-text);
  letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--h4-font-serif);
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--h4-text);
  margin-bottom: 1.2em;
}

h1 {
  font-size: 42px;
  line-height: 1.2;
}

h2 {
  font-size: 32px;
  line-height: 1.3;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
}

/* ===== HERO SECTION ===== */
.entry-hero,
.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,243,239,0.9) 0%, rgba(255,255,255,0.85) 100%);
  padding: 80px 20px;
}

.entry-hero h1,
.hero-section h1 {
  font-size: 48px;
  font-weight: 300;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.3;
  color: var(--h4-text);
}

/* ===== SECTIONS WITH BREATHING ROOM ===== */
.entry-content > *:not(.alignfull):not(.alignwide) {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.entry-content section,
.wp-block-group {
  padding: 60px 0;
}

/* ===== LUXURY SPACING & BREATHING ROOM ===== */
p {
  margin-bottom: 1.5em;
  line-height: 1.8;
}

.entry-content {
  padding: 0;
}

/* ===== CARDS & BOXES ===== */
.wp-block-cover,
.kb-row-layout-wrap,
.kt-row-layout-inner {
  border-radius: 2px;
  overflow: hidden;
}

/* ===== IMAGE TREATMENTS ===== */
img {
  border-radius: 2px;
  transition: var(--h4-transition);
}

img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* ===== LINK STYLING ===== */
a {
  color: var(--h4-peach);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--h4-peach-dark);
}

/* ===== LUXURY ACCENTS ===== */
blockquote {
  border-left: 3px solid var(--h4-peach);
  padding-left: 30px;
  margin: 40px 0;
  font-style: italic;
  font-family: var(--h4-font-serif);
  font-size: 20px;
  color: rgba(0,0,0,0.7);
}

hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0,0,0,0.1) 50%, 
    transparent 100%
  );
  margin: 60px auto;
  max-width: 200px;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
  .entry-hero h1,
  .hero-section h1 {
    font-size: 32px;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  .entry-content > *:not(.alignfull):not(.alignwide) {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .entry-content section,
  .wp-block-group {
    padding: 40px 0;
  }
}

}
