/*
Theme Name: Boost Candy Co GeneratePress Child
Theme URI: https://your-domain.com/
Description: A child theme for GeneratePress, customizing the Boost Candy Co. landing page design.
Author: Boost Candy Co
Author URI: https://your-domain.com/
Template: generatepress
Version: 1.0.0
Text Domain: boost-candy
*/

@import url("../generatepress/style.css");

/* Retro Background Styles */
.retro-burst-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #ff7e5f, #feb47b, #ffcf96, #fff1e6);
  z-index: -10;
  opacity: 0.8;
}

.retro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1) 10px,
    rgba(255, 255, 255, 0.2) 10px,
    rgba(255, 255, 255, 0.2) 20px
  );
  z-index: -9;
}

.retro-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -8;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: twinkle 5s infinite;
}

.star:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}
.star:nth-child(2) {
  top: 30%;
  left: 80%;
  animation-delay: 1s;
}
.star:nth-child(3) {
  top: 70%;
  left: 40%;
  animation-delay: 2s;
}
.star:nth-child(4) {
  top: 50%;
  left: 10%;
  animation-delay: 3s;
}
.star:nth-child(5) {
  top: 20%;
  left: 50%;
  animation-delay: 4s;
}
.star:nth-child(6) {
  top: 80%;
  left: 70%;
  animation-delay: 2.5s;
}
.star:nth-child(7) {
  top: 40%;
  left: 30%;
  animation-delay: 1.5s;
}
.star:nth-child(8) {
  top: 60%;
  left: 90%;
  animation-delay: 3.5s;
}

@keyframes twinkle {
  0% {
    opacity: 0.2;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
}

.content-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.text-shadow {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.text-shadow-lg {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ea580c;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c2410c;
}

/* Form animations */
.form-input:focus {
  transform: scale(1.02);
  transition: all 0.2s ease;
}

.btn-hover:hover {
  transform: scale(1.05);
  transition: all 0.2s ease;
}

/* Success/Error message styles */
.success-message {
  background: #10b981; /* Tailwind green-500 */
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.error-message {
  background: #ef4444; /* Tailwind red-500 */
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

/* Utility classes for Tailwind-like styling */
.min-h-screen {
  min-height: 100vh;
}
.fixed {
  position: fixed;
}
.top-0 {
  top: 0;
}
.w-full {
  width: 100%;
}
.z-50 {
  z-index: 50;
}
.flex {
  display: flex;
}
.justify-between {
  justify-content: space-between;
}
.items-center {
  align-items: center;
}
.h-16 {
  height: 4rem;
}
.h-20 {
  height: 5rem;
}
.w-auto {
  width: auto;
}
.hidden {
  display: none;
}
.space-x-8 > * + * {
  margin-left: 2rem;
}
.text-center {
  text-align: center;
}
.uppercase {
  text-transform: uppercase;
}
.font-black {
  font-weight: 900;
}
.font-bold {
  font-weight: 700;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-20 {
  margin-top: 5rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-12 {
  padding: 3rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.pt-24 {
  padding-top: 6rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-full {
  border-radius: 9999px;
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.border-2 {
  border-width: 2px;
}
.border-3 {
  border-width: 3px;
}
.border-4 {
  border-width: 4px;
}
.border-b-4 {
  border-bottom-width: 4px;
}
.border-t-2 {
  border-top-width: 2px;
}
.border-t-4 {
  border-top-width: 4px;
}
.transition-all {
  transition: all 0.15s ease-in-out;
}
.transition-colors {
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.duration-300 {
  transition-duration: 300ms;
}
.transform {
  transform: translateZ(0);
}
.hover\:scale-105:hover {
  transform: scale(1.05);
}
.hover\:-translate-y-2:hover {
  transform: translateY(-0.5rem);
}
.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.animate-bounce {
  animation: bounce 1s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* Color classes */
.bg-orange-900 {
  background-color: rgb(154 52 18);
}
.bg-orange-950 {
  background-color: rgb(124 45 18);
}
.bg-orange-800 {
  background-color: rgb(194 65 12);
}
.bg-orange-600 {
  background-color: rgb(234 88 12);
}
.bg-orange-500 {
  background-color: rgb(249 115 22);
}
.bg-orange-100 {
  background-color: rgb(255, 237, 213);
}
.bg-teal-600 {
  background-color: rgb(13 148 136);
}
.bg-teal-700 {
  background-color: rgb(15 118 110);
}
.bg-teal-500 {
  background-color: rgb(20 184 166);
}
.bg-teal-400 {
  background-color: rgb(45 212 191);
}
.bg-teal-100 {
  background-color: rgb(204, 251, 241);
}
.bg-yellow-600 {
  background-color: rgb(202 138 4);
}
.bg-yellow-500 {
  background-color: rgb(234 179 8);
}
.bg-yellow-400 {
  background-color: rgb(250 204 21);
}
.bg-yellow-100 {
  background-color: rgb(254 249 195);
}
.bg-red-600 {
  background-color: rgb(220 38 38);
}
.bg-red-400 {
  background-color: rgb(248 113 113);
}
.bg-red-100 {
  background-color: rgb(254 226 226);
}
.bg-amber-600 {
  background-color: rgb(217 119 6);
}
.bg-amber-400 {
  background-color: rgb(251 191 36);
}
.bg-amber-100 {
  background-color: rgb(254 243 199);
}
.bg-blue-500 {
  background-color: rgb(59 130 246);
}
.bg-white {
  background-color: rgb(255, 255, 255);
}

/* Enhanced background transparency for better readability */
.bg-white\/95 {
  background-color: rgba(255, 255, 255, 0.95) !important;
}

.bg-white\/90 {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

.bg-white\/80 {
  background-color: rgba(255, 255, 255, 0.8) !important;
}

.bg-orange-100\/95 {
  background-color: rgba(255, 237, 213, 0.95) !important;
}

.bg-teal-100\/90 {
  background-color: rgba(204, 251, 241, 0.9) !important;
}

.bg-teal-100\/95 {
  background-color: rgba(204, 251, 241, 0.95) !important;
}

.bg-yellow-100\/95 {
  background-color: rgba(254, 249, 195, 0.95) !important;
}

.bg-red-100\/95 {
  background-color: rgba(254, 226, 226, 0.95) !important;
}

.bg-amber-100\/95 {
  background-color: rgba(254, 243, 199, 0.95) !important;
}

.bg-orange-900\/95 {
  background-color: rgba(154, 52, 18, 0.95) !important;
}

.bg-orange-950\/95 {
  background-color: rgba(124, 45, 18, 0.95) !important;
}

.bg-teal-600\/95 {
  background-color: rgba(13, 148, 136, 0.95) !important;
}

.text-orange-900 {
  color: rgb(154 52 18);
}
.text-orange-800 {
  color: rgb(194 65 12);
}
.text-orange-700 {
  color: rgb(234 88 12);
}
.text-orange-200 {
  color: rgb(254 215 170);
}
.text-orange-100 {
  color: rgb(255 237 213);
}
.text-teal-900 {
  color: rgb(19 78 74);
}
.text-teal-800 {
  color: rgb(17 94 89);
}
.text-teal-700 {
  color: rgb(15 118 110);
}
.text-teal-600 {
  color: rgb(13 148 136);
}
.text-teal-500 {
  color: rgb(20 184 166);
}
.text-teal-100 {
  color: rgb(204 251 241);
}
.text-yellow-900 {
  color: rgb(113 63 18);
}
.text-yellow-800 {
  color: rgb(133 77 14);
}
.text-yellow-700 {
  color: rgb(161 98 7);
}
.text-red-900 {
  color: rgb(127 29 29);
}
.text-red-800 {
  color: rgb(153 27 27);
}
.text-red-700 {
  color: rgb(185 28 28);
}
.text-amber-900 {
  color: rgb(120 53 15);
}
.text-white {
  color: rgb(255 255 255);
}
.text-orange-300 {
  color: rgb(253 186 116);
}
.text-orange-400 {
  color: rgb(251 146 60);
}
.text-orange-500 {
  color: rgb(249 115 22);
}

.border-orange-700 {
  border-color: rgb(234 88 12);
}
.border-orange-600 {
  border-color: rgb(234 88 12);
}
.border-orange-400 {
  border-color: rgb(251 146 60);
}
.border-teal-600 {
  border-color: rgb(13 148 136);
}
.border-teal-500 {
  border-color: rgb(20 184 166);
}
.border-teal-400 {
  border-color: rgb(45 212 191);
}
.border-teal-300 {
  border-color: rgb(94 234 212);
}
.border-yellow-600 {
  border-color: rgb(202 138 4);
}
.border-yellow-400 {
  border-color: rgb(250 204 21);
}
.border-red-600 {
  border-color: rgb(220 38 38);
}
.border-red-400 {
  border-color: rgb(248 113 113);
}
.border-amber-600 {
  border-color: rgb(217 119 6);
}
.border-amber-400 {
  border-color: rgb(251 191 36);
}

.hover\:bg-orange-700:hover {
  background-color: rgb(234 88 12);
}
.hover\:bg-orange-600:hover {
  background-color: rgb(234 88 12);
}
.hover\:bg-orange-500:hover {
  background-color: rgb(249 115 22);
}
.hover\:bg-orange-400:hover {
  background-color: rgb(251 146 60);
}
.hover\:bg-teal-500:hover {
  background-color: rgb(20 184 166);
}
.hover\:text-white:hover {
  color: rgb(255 255 255);
}
.hover\:text-orange-100:hover {
  color: rgb(255 237 213);
}

.focus\:border-orange-600:focus {
  border-color: rgb(234 88 12);
}
.focus\:border-teal-600:focus {
  border-color: rgb(13 148 136);
}
.focus\:outline-none:focus {
  outline: none;
}

/* Grid system */
.grid {
  display: grid;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}

/* Flexbox utilities */
.flex-col {
  flex-direction: column;
}
.flex-1 {
  flex: 1 1 0%;
}
.space-y-3 > * + * {
  margin-top: 0.75rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-6 > * + * {
  margin-top: 1.5rem;
}
.space-x-4 > * + * {
  margin-left: 1rem;
}

/* Text sizes */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

/* Width and height utilities */
.w-2 {
  width: 0.5rem;
}
.w-12 {
  width: 3rem;
}
.w-20 {
  width: 5rem;
}
.w-96 {
  width: 24rem;
}
.h-2 {
  height: 0.5rem;
}
.h-6 {
  width: 1.5rem;
  height: 1.5rem;
}
.h-8 {
  width: 2rem;
  height: 2rem;
}
.h-12 {
  width: 3rem;
  height: 3rem;
}
.h-16 {
  height: 4rem;
}

/* Max width utilities */
.max-w-md {
  max-width: 28rem;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-7xl {
  max-width: 80rem;
}

/* Margin auto */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Positioning */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.pointer-events-none {
  pointer-events: none;
}

/* Opacity */
.opacity-60 {
  opacity: 0.6;
}

/* Leading (line-height) */
.leading-relaxed {
  line-height: 1.625;
}

/* Backdrop blur */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

/* Responsive utilities */
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:w-\[32rem\] {
    width: 32rem;
  }
}

@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Form styles */
input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 3px solid rgb(94 234 212);
  border-radius: 0.5rem;
  font-weight: 700;
  color: rgb(19 78 74);
  background-color: white;
  transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus {
  outline: none;
  border-color: rgb(13 148 136);
  transform: scale(1.02);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder {
  color: rgb(20 184 166);
}

button[type="submit"] {
  width: 100%;
  padding: 0.75rem 1rem;
  background: linear-gradient(to right, rgb(13 148 136), rgb(20 184 166));
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-radius: 0.5rem;
  border: 3px solid rgb(45 212 191);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}

button[type="submit"]:hover {
  background: linear-gradient(to right, rgb(20 184 166), rgb(45 212 191));
  transform: scale(1.05);
}

/* Navigation styles */
nav {
  background-color: rgb(154 52 18 / 0.95);
  backdrop-filter: blur(4px);
  border-bottom: 4px solid rgb(234 88 12);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

nav a {
  color: rgb(255 237 213);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: color 0.15s ease;
}

nav a:hover {
  color: rgb(255 255 255);
}

/* Footer styles */
footer {
  background-color: rgb(124 45 18 / 0.95);
  backdrop-filter: blur(4px);
  color: rgb(254 215 170);
  border-top: 4px solid rgb(234 88 12);
}

footer a {
  color: rgb(253 186 116);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s ease;
}

footer a:hover {
  color: rgb(255 237 213);
}
