/* global.css */

/* 
  :root variables for your brand color palette.
  Typically, you’d do this in one file to share them across all sections. 
*/
:root {
    --brand-color-1: #e91e63; 
    --brand-color-2: #d81b60; 
    --brand-color-3: #f06292; 
    --text-color-main: #2a2f45;
    --text-color-secondary: #704f57;
    --body-bg-color: #fff5f7;
    --card-bg-color: #ffeef3;
    --white: #ffffff;
  }
  
  /* Reset & base styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  
  body {
    color: var(--text-color-main);
    line-height: 1.6;
    background-color: var(--body-bg-color);
    overflow-x: hidden;
  }
  
  /* Utility container class */
  .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
  }
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
  }
  .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }

  .section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--brand-color-1), transparent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .section-header p {
    font-size: 1.25rem;
    color: var(--text-color-secondary);
    max-width: 700px;
    margin: 1.5rem auto 0;
  }
