/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Force light mode - override system dark mode preferences */
:root {
  color-scheme: light only;
}

html {
  color-scheme: light;
}

body {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333 !important;
  background-color: #fff !important;
  scroll-behavior: smooth;
  /* Ensure light mode colors are forced */
  color-scheme: light;
}

/* Override any potential dark mode styles */
* {
  color-scheme: light;
}

/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo h1 {
  color: #D4AF37;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.logo-link {
  color: #D4AF37;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-link:hover {
  color: #B8941F;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #D4AF37;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 50%;
  background-color: #D4AF37;
  transition: all 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

/* Special styling for navigation booking button */
.setmore-nav-button {
  background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.setmore-nav-button:hover {
  background: linear-gradient(135deg, #B8941F 0%, #D4AF37 100%);
  transform: translateY(-1px);
  color: #fff !important;
}

.setmore-nav-button::after {
  display: none;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.hero-content {
  max-width: 800px;
}

.hero-stars {
  color: #D4AF37;
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 1rem;
  letter-spacing: 3px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #666;
  margin-bottom: 3rem;
  font-style: italic;
}

.hero-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 4rem;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: #fff;
  padding: 1rem 3rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
}

/* Section Styles */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37 0%, #B8941F 100%);
  margin: 0 auto 2rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Books Section */
.books-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.book-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.book-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.book-card.coming-soon {
  border: 2px solid #D4AF37;
}

.book-cover {
  margin-bottom: 1.5rem;
}

.book-placeholder {
  width: 150px;
  height: 200px;
  background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
}

.book-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5rem;
}

.book-author {
  font-size: 0.9rem;
  color: #D4AF37;
  margin-bottom: 1rem;
  font-weight: 500;
}

.book-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.book-status {
  background: #D4AF37;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
}

.podcast-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.podcast-section .section-title {
  color: #fff;
}

.podcast-section .section-subtitle {
  color: #ccc;
}

.podcast-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 3rem;
  color: #333;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.podcast-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #D4AF37;
  margin-bottom: 1rem;
}

.podcast-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.podcast-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.podcast-link {
  background: #000;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.podcast-link:hover {
  background: #D4AF37;
  transform: translateY(-2px);
}

/* About Section */
.about-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.profiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.profile-card {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.profile-card.featured {
  border: 2px solid #D4AF37;
}

.profile-image {
  margin-bottom: 2rem;
  position: relative;
}

.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  border: 3px solid #D4AF37;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.profile-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
}

.image-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  border: 2px dashed #fff;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Hide placeholder by default when image loads successfully */
.profile-photo + .image-placeholder {
  display: none;
}

/* Show placeholder only when image fails to load */
.profile-photo[src=""] + .image-placeholder,
.profile-photo:not([src]) + .image-placeholder {
  display: flex;
  position: static;
  transform: none;
}

/* Handle broken images */
.profile-photo {
  background: transparent;
}

.profile-photo:broken + .image-placeholder {
  display: flex;
}

.profile-name {
  font-size: 1.8rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5rem;
}

.profile-title {
  font-size: 1rem;
  color: #D4AF37;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.profile-bio {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
  padding: 8rem 0;
  background-color: #000;
  color: #fff;
}

.contact-section .section-title {
  color: #fff;
}

.contact-section .section-subtitle {
  color: #ccc;
}

.contact-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 4rem;
  border: 1px solid #e0e0e0;
}

/* Footer */
.footer {
  background: #000;
  padding: 3rem 0;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content p {
  color: #ccc;
  margin-bottom: 1rem;
}

.footer-link {
  color: #D4AF37;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-stars {
  color: #D4AF37;
  font-size: 1.5rem;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hamburger animation when menu is open */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: left 0.3s ease;
    z-index: 1000;
    padding-top: 80px;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }
  
  .nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
  }
  
  .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
  .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
  .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
  .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
  
  .nav-link {
    font-size: 1.2rem;
    padding: 1rem;
    text-align: center;
    min-width: 200px;
  }
  
  .setmore-nav-button {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 30px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .books-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .podcast-card {
    padding: 2rem;
  }
  
  .podcast-links {
    flex-direction: column;
    align-items: center;
  }
  
  .profiles-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-container {
    padding: 2rem;
  }
  
  .hero-section,
  .books-section,
  .about-section,
  .contact-section {
    padding: 4rem 0;
  }
  
  /* Prevent body scrolling when mobile menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem 1rem;
  }
  
  .logo h1 {
    font-size: 1.2rem;
  }
  
  .mobile-menu-toggle {
    padding: 0.25rem;
  }
  
  .hamburger-line {
    width: 20px;
    height: 2px;
  }
  
  .hero-section {
    padding: 6rem 1rem 4rem;
  }
  
  .hero-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-container {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .nav-link {
    font-size: 1.1rem;
  }
  
  .setmore-nav-button {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
  
  .book-card,
  .profile-card,
  .podcast-card {
    padding: 1.5rem;
  }
  
  .contact-container {
    padding: 1.5rem;
  }
  
  .terms-card {
    padding: 1.5rem;
  }
  
  .terms-effective {
    padding: 1.5rem;
  }
}

/* Terms and Conditions Page */
.terms-section {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  min-height: 100vh;
}

.terms-content {
  max-width: 800px;
  margin: 0 auto;
}

.terms-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #D4AF37;
}

.terms-card h2 {
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 0.5rem;
}

.terms-card h3 {
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.terms-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.terms-card ul {
  color: #555;
  line-height: 1.7;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.terms-card li {
  margin-bottom: 0.5rem;
}

.terms-effective {
  background: #000;
  color: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 2px solid #D4AF37;
}

.terms-effective p {
  color: #ccc;
  margin-bottom: 0.5rem;
}

.terms-effective p:last-child {
  color: #D4AF37;
  font-weight: 500;
  margin-bottom: 0;
}

/* Responsive terms page */
@media (max-width: 768px) {
  .terms-section {
    padding: 4rem 0 2rem;
  }
  
  .terms-card {
    padding: 1.5rem;
  }
  
  .terms-effective {
    padding: 1.5rem;
  }
}

/* Custom CSS to force HubSpot forms to always display in light mode */
@media (prefers-color-scheme: dark) {
  .hs-form *,
  .hs-form-field > label {
    color: #000000 !important; /* Forces black text color */
  }

  .hs-form input[type="text"],
  .hs-form input[type="email"],
  .hs-form input[type="tel"],
  .hs-form textarea,
  .hs-form select {
    background-color: #ffffff !important; /* Forces white background for input fields */
    border-color: #d0d0d0 !important; /* Forces light gray borders */
    color: #000000 !important; /* Forces black text in input fields */
  }

  .hs-form .hs-button,
  .hs-form .hs-button:hover {
    color: #ffffff !important; /* Forces white text on buttons */
    background-color: #D4AF37 !important; /* Reformed Astrology gold color */
    border-color: #D4AF37 !important;
  }

  .hs-form .hs-button:hover {
    background-color: #B8941F !important; /* Darker gold on hover */
    border-color: #B8941F !important;
  }

  /* Force white background for the entire form container */
  .hs-form,
  .hs-form-frame {
    background-color: #ffffff !important;
    color: #000000 !important;
  }
}

/* Smooth scrolling offset for fixed header */
section {
  scroll-margin-top: 80px;
}