/* Custom CSS for Inner Child Healing Webinar Landing Page */

:root {
  /* Color Palette - Pink, Light Blue, Dark Blue */
  --primary-color: #11202e; /* Dark Blue */
  --secondary-color: #81c9c2; /* Light Blue */
  --accent-color: #d75d72; /* Pink */
  --light-pink: #070606;
  --text-blue: #5ce1e6;
  --text-highlight: #f2b33d;
  --text-body-light: #f2ede7;
  --text-body-dark: #11202e;
  --coral-button: #d75d72;
  --coral-highlight-button: #f2b33d;
  --light-blue: #dbeafe;
  --dark-blue: #1e40af;
  --coral-button-text: "sans-serif";
  --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  --gradient-secondary: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
  --gradient-accent: linear-gradient(135deg, #f472b6 0%, #d75d72 100%);
  --gradient-hero: linear-gradient(
    135deg,
    #1e3a8a 0%,
    #3b82f6 50%,
    #f472b6 100%
  );
}

/* Global Styles */
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #374151;
  overflow-x: hidden;
}
.coral-button {
  color: var(--coral-button);
}
.text-blue {
  color: var(--text-blue) !important;
}
.dark-blue {
  color: var(--dark-blue) !important;
}
.coral-button-text {
  font-family: "Avenir LT Pro 35 Light";
}
.avenir {
  font-family: "Avenir LT Pro 35 Light";
}
.text-primary {
  color: var(--primary-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}
.text-blue {
  color: var(--secondary-color) !important;
}
.text-white-75 {
  color: rgba(255, 255, 255, 0.75) !important;
}
.dark-bg {
  background-color: var(--primary-color) !important;
}
.text-body-light {
  color: var(--text-body-light) !important;
}
.text-body-dark {
  color: var(--text-body-dark) !important;
}
.text-highlight {
  color: var(--text-highlight) !important;
}

.text-outline {
  text-shadow: -0.5px -0.5px 0 #11202e, 0.5px -0.5px 0 #11202e,
    -0.5px 0.5px 0 #11202e, 0.5px 0.5px 0 #11202e, -0.5px 0 0 #11202e,
    0.5px 0 0 #11202e, 0 -0.5px 0 #11202e, 0 0.5px 0 #11202e;
}
.text-outline-white {
  text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff,
    1px 1px 0 #ffffff, -1px 0 0 #ffffff, 1px 0 0 #ffffff, 0 -1px 0 #ffffff,
    0 1px 0 #ffffff;
}

.bg-gradient-primary {
  background: var(--gradient-primary) !important;
}
.text-upper {
  text-transform: uppercase !important;
}
.bg-gradient-secondary {
  background: var(--gradient-secondary) !important;
}

.bg-gradient-accent {
  background: var(--gradient-accent) !important;
}
.footer {
  background: var(--primary-color) !important;
}

/* Navigation */
.navbar {
  backdrop-filter: blur(10px);
  background: #11202e !important;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--text-body-light) !important;
}

.nav-link {
  font-weight: 500;
  color: var(--text-body-light) !important;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-color) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background: var(--primary-color);
  background-size: 110%;
  background-position: center center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Desktop background image */
@media (min-width: 768px) {
  .hero-section {
    background-image: url("./images/bg.png");
  }
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23a)"/><circle cx="800" cy="400" r="200" fill="url(%23a)"/><circle cx="400" cy="800" r="100" fill="url(%23a)"/></svg>')
    no-repeat center;
  background-size: cover;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.min-vh-75 {
  min-height: 75vh;
}

.backdrop-blur {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Buttons */
.btn-cta {
  background: var(--coral-button);
  border: none;
  color: var(--text-body-light);
  font-weight: 600;
  border-radius: 12px;
  /* box-shadow: 0 8px 25px rgba(244, 114, 182, 0.3); */
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta:hover {
  background: var(--coral-highlight-button);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(244, 114, 182, 0.4);
  color: white;
}

/* Therapist Card */
.therapist-card {
  border: 2px solid rgba(30, 58, 138, 0.1);
  transition: all 0.3s ease;
}

.therapist-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1) !important;
}

.therapist-avatar {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 3px solid var(--text-blue);
  transition: all 0.3s ease;
}

.therapist-avatar:hover {
  transform: scale(1.05);
  border-color: var(--primary-color);
}

/* Topic Cards */
.topic-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid rgba(30, 58, 138, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.topic-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
  border-color: var(--accent-color);
}

.topic-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

/* Benefits Section */
.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-item {
  padding: 1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: var(--light-blue);
  transform: translateX(10px);
}

/* Stats Container */
.stats-container {
  position: relative;
  overflow: hidden;
}

.stats-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  100% {
    transform: translateX(-100px) translateY(-100px) rotate(360deg);
  }
}

.stat-number {
  font-family: "Inter", sans-serif;
  font-weight: 800;
}

/* Detail Items */
.detail-item {
  text-align: center;
  padding: 1rem;
}

.detail-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
}

/* Contact Section */
.contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.contact-card {
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Forms */
.form-control {
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 10px;
  padding: 15px;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 0.2rem rgba(244, 114, 182, 0.25);
  color: white;
}

/* Terms Section */
.terms-content {
  border-left: 5px solid var(--accent-color);
}

/* Social Links */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-content > *:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-content > *:nth-child(3) {
  animation-delay: 0.4s;
}

.hero-content > *:nth-child(4) {
  animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 3rem 0;
  }

  .display-4 {
    font-size: 2.5rem;
  }

  .therapist-card {
    margin-top: 2rem;
  }

  .topic-card {
    margin-bottom: 2rem;
  }

  .stats-container {
    margin-top: 2rem;
  }

  /* Contact Section Mobile Styles */
  .contact-card {
    margin: 0 1rem;
    padding: 2rem !important;
  }

  .contact-card .btn {
    font-size: 0.85rem;
    padding: 12px 20px !important;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
  }
}

@media (max-width: 576px) {
  .display-4 {
    font-size: 2rem;
  }

  .btn-cta {
    padding: 15px 30px !important;
    font-size: 0.9rem;
  }

  .topic-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  /* Contact Section Small Mobile Styles */
  .contact-card {
    margin: 0 0.5rem;
    padding: 1.5rem !important;
  }

  .contact-card .btn {
    font-size: 0.75rem;
    padding: 10px 15px !important;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.3;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .contact-card h4 {
    font-size: 1.3rem;
  }

  .contact-card p {
    font-size: 0.9rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
.webinar-info {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-accent);
}

/* FAQ Section Styles */
.accordion-item {
  border-radius: 12px !important;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.accordion-button {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
  border: none !important;
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  padding: 1.25rem 1.5rem !important;
  border-radius: 12px !important;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-primary) !important;
  color: white !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25) !important;
  border-color: transparent !important;
}

.accordion-button::after {
  transition: transform 0.3s ease;
}

.accordion-body {
  background: white;
  padding: 1.5rem !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-body p {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  color: #4b5563;
}

.accordion-body p:last-child {
  margin-bottom: 0;
}

.accordion-body strong {
  color: var(--primary-color);
  font-weight: 600;
}

.accordion-body ul {
  margin-bottom: 0;
}

.accordion-body ul li {
  margin-bottom: 0.5rem;
  color: #4b5563;
}

.accordion-body ul li:last-child {
  margin-bottom: 0;
}

/* FAQ timezone grid styling */
#faq .row.g-3 {
  margin-top: 0.5rem;
}

#faq .col-md-6 ul {
  padding-left: 0;
}

#faq .col-md-6 ul li {
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#faq .col-md-6 ul li:last-child {
  border-bottom: none;
}
