/*
 Theme Name:   GeneratePress Child
 Template:     generatepress
*/

/* ========== Base Styles ========== */
:root {
  --font-primary: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --text-color: #86868b;
  --heading-color: #f5f5f7;
  --bg-color: #000000;
  --link-color: #2997ff;
  --h1-size: 3.5rem;
  --h2-size: 3.5rem;
  --h3-size: 3.5rem;
  --h4-size: 2rem;
  --h5-size: 1.25rem;
  --h6-size: 1rem;
  --body-size: 1.4rem;
}



/* Global Defaults */
ol, ul {
    margin: 0;
}

body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.3;
  margin: 0;
  padding: 0;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
}


/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

h1 { font-size: var(--h1-size); letter-spacing: -0.02em; }
h2 { font-size: var(--h2-size); letter-spacing: -0.01em; }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }
h5 { font-size: var(--h5-size); }
h6 { font-size: var(--h6-size); }

.size-2 {
	font-size: 2.3rem;
}

.style-1-body {
	font-size: 1.063rem;
	    line-height: 1.4705882353;
}

/* Paragraphs */
p {
  font-size: var(--body-size);
  margin-bottom: 1.5rem;
  max-width: 800px;
	letter-spacing: -.3px;
}

/* Lists */
ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

li {
  margin-bottom: 0.5rem;
}

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

a:hover {
  text-decoration: underline;
}

/* Blockquote */
blockquote {
  border-left: 4px solid #dcdcdc;
  padding-left: 1rem;
  color: #555;
  font-style: italic;
  margin: 2rem 0;
}

/* Buttons */
.button {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1.4rem 4.25rem;
  border: none;
  border-radius: 9999px;
  background: radial-gradient(at top right, #00B4E0 0%, #660FFC 100%);
  color: white;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.button:hover {
  background: radial-gradient(at top right, #00A0CA 0%, #570EDB 100%);
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  text-decoration: none; /* ensures no underline on hover */
}

.button-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.4rem 4.25rem;
  background: radial-gradient(at top right, #00B4E0 0%, #660FFC 100%);
  border: none;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.button-gradient:hover {
  background: radial-gradient(at top right, #00A0CA 0%, #570EDB 100%);
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  text-decoration: none;
	color: #fff;
}

.button-gradient .lucide {
	  width: 1.5rem;
  height: 1.5rem;
	stroke-width: 2.1;
	margin-bottom: 0;
}

.button-gradient-core {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.4rem 4.25rem;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.button-gradient-core:hover {
  background: transparent;
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  text-decoration: none;
	color: #fff;
}

.button-gradient-core .lucide {
	  width: 1.5rem;
  height: 1.5rem;
	stroke-width: 2.1;
	margin-bottom: 0;
}

/* Ensure the text and icon wrap gracefully if needed */
.button-gradient-core span,
.button-gradient-core i, .button-gradient span, .button-gradient i {
  flex-shrink: 0;
}

/* Responsive scaling for smaller viewports */
@media (max-width: 768px) {
  .button-gradient-core, .button-gradient  {
    font-size: 1rem; /* 16px */
    padding: 0.75rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .button-gradient-core, .button-gradient {
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
  }
	
.lucide {
  width: 1.45rem !important;
  height: 1.45rem !important;
}
	
	.section-container {
    padding: 4rem 3rem !important;
}
	.size-2 {
    font-size: 1.5rem !important;
}

}





.lucide {
  width: 2.45rem;
  height: 2.45rem;
  stroke-width: 1.5;
  stroke: #f5f5f7;
	margin-bottom: 1rem;
}

.lucide-blue {
	stroke: #0087ff;
}

.lucide-yellow {
	stroke: #ffcb36;
}

.lucide-light-blue {
	stroke: #00cfff;
}

/* Inputs */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #dbe3ea;
  border-radius: 10px;
  background: #fff;
  transition: border 0.2s ease;
}

input:focus, textarea:focus {
  border-color: #3a5afe;
  outline: none;
}

/* Layout Helpers */

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.no-margin {
  margin: 0;
}


.rounded {
  border-radius: 16px;
}

@media (max-width: 480px) {
	.wp-block-video video {
    border-radius: 10px !important;
}
}

.shadow {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

.site-footer, .site-header {
	display: none;
}

/* Cards */
.card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

/* Video Player */
.wp-block-video video {
    border-radius: 24px;
}

.gradient-text-blue {
  --gradient-start: #022640;
  --gradient-end: #5786AB;
  background-image: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.body-section-intro {
	color: #f5f5f7;
}

.gradient-hero-headline {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, 
    #0087ff, 
    #00cfff, 
    #f44c97, 
    #ff6d2d, 
    #ffcb36
  );
  -webkit-text-fill-color: transparent;
}

.glow-headline {
    text-shadow: 0 0 20px rgb(255 106 0 / 90%), 0 0 40px rgb(255 106 0 / 86%), 0 0 80px rgb(255 102 0 / 81%), 0 0 160px rgb(255 80 0 / 89%);
}

.glow-headline-pro {
    text-shadow: 0 0 20px rgb(20 0 255 / 90%), 0 0 40px rgb(0 18 255 / 86%), 0 0 80px #1200ffcf, 0 0 160px rgb(0 63 255 / 89%);
    color: #008fff;
}

.pro-tier {
  border: 1px solid #3597E5;
  border-radius: 15px;
  box-shadow: 0px 0px 100px -22px #3597E5;
  background: #fff; /* or your card background */
  position: relative;
  z-index: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #2ecc71;
  flex-shrink: 0;
  margin-top: 0.25rem; /* aligns with first line of text */
	margin-bottom: 0;
}

.feature-text {
  font-size: 1rem;
  line-height: 1.6;
	color: #f5f5f7;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.x-icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #FF4D4F; /* red color */
  flex-shrink: 0;
  margin-top: 0.25rem;
	margin-bottom: 0;
}

.feature-text {
  font-size: 1rem;
  line-height: 1.6;
}

/* === Tab Container === */
.gb-tabs__menu {
  display: flex;
  justify-content: center;
  gap: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

/* === Base Tab Style === */
.gb-tabs__menu-item {
  position: relative;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5); /* visible on dark background */
  cursor: pointer;
  transition: color 0.3s ease;
  box-shadow: none !important;
}

/* === Hover Effect === */
.gb-tabs__menu-item:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* === Active Tab === */
.gb-tabs__menu-item.gb-block-is-current {
  color: #fff !important;
  font-weight: 600;
}

/* === Active Tab Underline === */
.gb-tabs__menu-item.gb-block-is-current::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #fff;
}

.gb-tabs__items-505cc876 {
    background-color: transparent !important;
}

.gb-tabs__item-a3190be9, .gb-tabs__item-4190c6f6 {
    padding: 1em 0 !important;
}

.glow-core {
	font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
  color: #f5f5f7;
  text-shadow:
    0 0 20px rgba(255, 106, 0, 0.9),
    0 0 40px rgba(255, 106, 0, 0.86),
    0 0 80px rgba(255, 102, 0, 0.81),
    0 0 160px rgba(255, 80, 0, 0.89);
}

.glow-pro {
	font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
  color: #008fff;
  text-shadow:
    0 0 20px rgba(20, 0, 255, 0.9),
    0 0 40px rgba(0, 18, 255, 0.86),
    0 0 80px #1200ffcf,
    0 0 160px rgba(0, 63, 255, 0.89);
}

@media (max-width: 480px) {

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
	
  h4 {
    font-size: 1.25rem; /* ~20px */
  }

  h5 {
    font-size: 1.125rem; /* ~18px */
  }

  h6 {
    font-size: 1rem; /* 16px (same as body) */
  }
	.glow-pro { font-size: 1.75rem; }

  p, li { font-size: 1.1rem; }


  .button-gradient-core,
  .button-gradient-pro {
    font-size: 0.95rem;
    padding: 0.65rem 1.25rem;
  }

  .gb-accordion__toggle,
  .gb-tabs__menu-item {
    font-size: 0.95rem;
    padding: 0.75rem 0.75rem;
  }

  /* FAQ spacing adjustments */
  .gb-accordion__content {
    padding: 1rem 1rem;
  }
}