/* Main.css for Boring AI */

/* ----------------- */
/* Base Styles       */
/* ----------------- */
:root {
    /* Color Palette */
    --primary: #4361ee;       /* Blue - brand primary */
    --primary-dark: #3a56d4;  /* Dark blue for hover states */
    --secondary: #2ec4b6;     /* Teal - accent color */
    --dark: #212529;          /* Near black for text */
    --gray-dark: #495057;     /* Dark gray for secondary text */
    --gray: #6c757d;          /* Medium gray for tertiary text */
    --gray-light: #dee2e6;    /* Light gray for borders */
    --light: #f8f9fa;         /* Off-white for backgrounds */
    --white: #ffffff;         /* White */
  
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-size-base: 1rem;   /* 16px */
    --line-height-base: 1.5;
  }
  
  /* Reset and Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--dark);
    background-color: var(--white);
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  ul {
    list-style: none;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
  }
  
  /* ----------------- */
  /* Layout            */
  /* ----------------- */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  section {
    padding: 5rem 0;
  }
  
  /* ----------------- */
  /* Typography        */
  /* ----------------- */
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  p {
    margin-bottom: 1.5rem;
  }
  
  @media (min-width: 768px) {
    h1 {
      font-size: 3.5rem;
    }
    
    h2 {
      font-size: 2.5rem;
    }
  }
  
  /* ----------------- */
  /* Buttons           */
  /* ----------------- */
  .btn-primary, .btn-contact {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
  }
  
  .btn-primary:hover, .btn-contact:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 1px solid var(--primary);
  }
  
  .btn-secondary:hover {
    background-color: rgba(67, 97, 238, 0.1);
    transform: translateY(-2px);
  }
  
  /* ----------------- */
  /* Header/Navigation */
  /* ----------------- */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
  }
  
  nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  
  nav a:hover {
    color: var(--primary);
  }
  

  
  /* ----------------- */
  /* Hero Section      */
  /* ----------------- */
  .hero {
    padding: 8rem 0 5rem;
    background-color: var(--light);
    text-align: center;
  }
  
  .hero h1 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
  }
  
  /* ----------------- */
  /* How It Works      */
  /* ----------------- */
  .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .step {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--light);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
  }
  
  @media (min-width: 768px) {
    .steps {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* ----------------- */
  /* Benefits          */
  /* ----------------- */
  #benefits {
    background-color: var(--light);
  }
  
  .benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .benefit {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  .benefit h3 {
    color: var(--primary);
  }
  
  @media (min-width: 768px) {
    .benefits-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* ----------------- */
  /* Testimonials      */
  /* ----------------- */
  .testimonial {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--gray-dark);
  }
  
  cite {
    font-style: normal;
    font-weight: 600;
  }
  
  /* ----------------- */
  /* CTA Section       */
  /* ----------------- */
  #book-call {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
  }
  
  #book-call h2,
  #book-call p {
    color: var(--white);
  }
  
  #book-call .btn-primary {
    background-color: var(--white);
    color: var(--primary);
  }
  
  #book-call .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
  }
  
  /* ----------------- */
  /* Footer            */
  /* ----------------- */
  footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 4rem 0 1rem;
  }
  
  footer .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
  }
  
  .footer-info p {
    color: var(--gray-light);
  }
  
  .footer-links h4,
  .footer-contact h4 {
    margin-bottom: 1.5rem;
  }
  
  .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-links a,
  .footer-contact p {
    color: var(--gray-light);
  }
  
  .footer-links a:hover {
    color: var(--white);
  }
  
  .footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  
  .footer-bottom p {
    color: var(--gray);
    font-size: 0.875rem;
  }
  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* For desktop */
    gap: 20px;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr; /* For mobile */
    }
  }

  @media (min-width: 768px) {
    footer .container {
      grid-template-columns: 2fr 1fr 1fr;
    }
  }
  
  /* ----------------- */
  /* Utility Classes   */
  /* ----------------- */
  .text-center {
    text-align: center;
  }
  
  .mt-1 { margin-top: 0.5rem; }
  .mt-2 { margin-top: 1rem; }
  .mt-3 { margin-top: 1.5rem; }
  .mt-4 { margin-top: 2rem; }
  .mt-5 { margin-top: 3rem; }
  
  .mb-1 { margin-bottom: 0.5rem; }
  .mb-2 { margin-bottom: 1rem; }
  .mb-3 { margin-bottom: 1.5rem; }
  .mb-4 { margin-bottom: 2rem; }
  .mb-5 { margin-bottom: 3rem; }