/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
/* ================================
   Apple-style Typography & Colors
   ================================ */
/* ================================
   Apple-Style Typography & Colors
   ================================ */
:root {
  /* Fonts */
  --font-primary: -apple-system, BlinkMacSystemFont, "SF Pro Display",
                  "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Colors */
  --bg-color: #ffffff;
  --text-color: #1d1d1f;
  --body-color: #86868b;
  --link-color: #0066cc; 

  /* Base sizes */
  --body-size: 21px;
  --small-body-size: 17px;
  --max-width: 1300px;
}

/* ================================
   Base Resets
   ================================ */
html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  font-weight: 400;
  line-height: 1.1666666667;
  color: var(--text-color);
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Remove list padding */
ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ================================
   Layout Container
   ================================ */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8rem 2rem;
}


/* Tablet (matches Apple ~1068px) */
@media (max-width: 1068px) {
  .section-container {
    padding: 6rem 2rem;
  }
}

/* Mobile (matches Apple ~734px) */
@media (max-width: 734px) {
  .section-container {
    padding: 4rem 1.5rem;
  }
}

/* ================================
   Headings
   ================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--text-color);
  margin: 0;
  font-weight: 600;
}

h1 {
  font-size: 112px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 56px;
  line-height: 1.12;
}

h4 {
  font-size: 48px;
  line-height: 1.15;
}

h5 {
  font-size: 28px;
  line-height: 1.25;
}

h6 {
  font-size: 21px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--subtext-color);
}

/* ================================
   Paragraphs
   ================================ */
p {
  margin: 0 0 1.5rem 0;
  font-size: var(--body-size);
  line-height: 1.38;
  font-weight: 600;
  color: var(--body-color);
}

p.subtext {
  font-size: var(--small-body-size);
  color: var(--subtext-color);
}

/* ================================
   Links
   ================================ */
a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  text-decoration: underline;
}

/* ================================
   Buttons
   ================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 500;
  background-color: var(--link-color);
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #005bb5;
}

.button-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 21px 42px;
  border-radius: 9999px; /* Full pill */
  font-size: 18px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  background: linear-gradient(180deg, #008ee0 45%, #297BC4 90%);
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
	text-decoration: none;
}

.button-gradient:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #007ac1 45%, #1f629e 90%);
  box-shadow: 0 6px 20px rgba(59, 169, 255, 0.45);;
	text-decoration: none;
	color: #fff;
}

.button-gradient:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(59, 169, 255, 0.35);
}

.button-icon {
  width: 22px;
  height: 22px;
  color: #fff;
}

/* ================================
   Images
   ================================ */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0; /* Apple keeps images sharp */
}

/* ================================
   Dividers
   ================================ */
.section-divider {
  height: 1px;
  background-color: #d2d2d7;
  margin: 3rem 0;
}

/* ================================
   Responsive Type Scale
   ================================ */
@media (max-width: 1068px) {
  h1 { font-size: 80px; }
  h2 { font-size: 56px; }
  h3 { font-size: 40px; }
  h4 { font-size: 28px; }
  h5 { font-size: 21px; }
  h6 { font-size: 17px; }
  p  { font-size: 19px; }
}

@media (max-width: 734px) {
  h1 { font-size: 48px; }
  h2 { font-size: 34px; }
  h3 { font-size: 28px; }
  h4 { font-size: 24px; }
  h5 { font-size: 18px; }
  h6 { font-size: 14px; }
  p  { font-size: 17px; }
}

/* Gradient Text Utility */
.text-gradient {
  background: linear-gradient(283deg, #079cf2 45%, #205f96 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding: 4px;
  margin: -4px;
}


/* Apple-style Tile/Card Utility */
.box-tile {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff; /* matches Apple’s clean tiles */
  border-radius: 24px;
}

.feature-item {
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: center;    /* center horizontally */
  text-align: center;     /* center text under icon */
  max-width: 260px;       /* optional: keeps it tidy in a grid */
  margin: 0 auto;
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px; /* space between icon and text */
  color: #e34c67;      /* Apple-style blue accent */
}

.feature-item p {
  font-size: 21px;
  line-height: 1.38;
  color: #1d1d1f;
  margin: 0;
}

.feature-item p span {
  font-weight: 600;
  color: #e34c67; /* Accent color for lead text */
}

.feature p span {
  font-weight: 600;
  color: #1d1d1f; /* Bold lead text */
}

.improve-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: #0071e3; /* Apple blue */
}

.apple-copy {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
  color: #6e6e73; /* supporting grey */
}

.apple-copy p {
  margin-bottom: 1.5rem;
}

.apple-copy p span {
  display: inline;
  font-weight: 600;
  color: #1d1d1f; /* darker lead text */
}

.gb-accordion__item {
	    padding: 1em !important;
	border: 0 !important;
	border-bottom: 1px solid #e1e5e7!important;
}

.gb-accordion__item p {
    margin: 0;
}

.gb-accordion__toggle p {
	color: var(--body-color) !important;
}

.inside-site-info, .site-header {
	display: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding: 60px 20px;
  background: #f5f5f7; /* light Apple grey */
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

/* Icon colors */
.feature-icon.blue   { color: #0071e3; }
.feature-icon.green  { color: #34c759; }
.feature-icon.orange { color: #ff9500; }
.feature-icon.purple { color: #af52de; }
.feature-icon.pink   { color: #ff2d55; }
.feature-icon.teal   { color: #30b0c7; }

.feature-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #6e6e73;
  margin: 0;
}

.feature-card p span {
  display: block;
  font-size: 21px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 6px;
}

.add-margin {
	margin-bottom: 5px;
}

.no-margin p {
	margin: 0 !important;
}

.no-top-padding {
	padding: 0 2rem 5rem 2rem;
}

.price-highlight {
  font-weight: 600;
  color: #1d1d1f; /* Darker headline charcoal */
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

.step {
  text-align: left;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

/* Icon colors */
.step-icon.blue   { color: #0071e3; }  /* Apple blue */
.step-icon.green  { color: #34c759; }  /* Success green */
.step-icon.orange { color: #ff9500; }  /* Orange */
.step-icon.purple { color: #af52de; }  /* Purple */
.step-icon.pink   { color: #ff2d55; }  /* Pink */
.step-icon.teal   { color: #30b0c7; }  /* Teal */
.step-icon.red    { color: #ff3b30; }  /* Red */

.step h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1d1d1f;
}

.step p {
  font-size: 17px;
  line-height: 1.5;
  color: #6e6e73;
}

.highlight {
  font-weight: 600;
  color: #1d1d1f; /* Apple-style dark emphasis */
}

.wp-block-video video {
    border-radius: 20px;
}