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

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fff59d 100%);
  min-height: 100vh;
  padding-top: 180px; /* Increased significantly to accommodate much larger header */
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 215, 0, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 2px solid rgba(255, 215, 0, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.sticky-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sticky-content {
  display: flex;
  align-items: center; /* Changed back to center for better visual balance with larger image */
  justify-content: space-between;
  padding: 20px 0 15px; /* Increased padding significantly for taller header */
  gap: 30px;
}

.sticky-title h2 {
  font-size: 1.7rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
  line-height: 1.2;
}

.sticky-title p {
  font-size: 1rem;
  color: #4a5568;
  margin: 0;
  font-weight: 400;
}

.sticky-author {
  color: #b8860b;
  font-weight: 500;
}

.sticky-cover {
  flex-shrink: 0;
}

.sticky-cover-image {
  height: 160px; /* Much larger image - increased from 120px to 160px */
  width: auto;
  border-radius: 12px; /* Larger border radius for bigger image */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Enhanced shadow for larger image */
}

.sticky-purchase {
  flex-shrink: 0;
}

.sticky-purchase-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
  color: #2d3748;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(218, 165, 32, 0.3);
  border: 1px solid #b8860b;
  white-space: nowrap;
}

.sticky-purchase-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(218, 165, 32, 0.4);
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  padding: 60px 0 40px 0; /* Added proper top padding to clear sticky header */
  min-height: auto; /* Remove min-height constraint */
  display: flex;
  align-items: center;
}

.hero-content {
  display: block; /* Changed from grid to block for full width */
  background: rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px; /* Reduced from 60px */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.5);
}

.book-info {
  max-width: 100%; /* Changed from 600px to full width */
}

.title {
  font-size: 3.8rem;
  font-weight: 300;
  color: #2d3748;
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-family: "Inter", serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.author {
  font-size: 1.3rem;
  color: #4a5568;
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.author-name {
  color: #b8860b;
  font-weight: 500;
}

.intro-text {
  margin-bottom: 20px; /* Reduced from 36px */
  padding: 0; /* Removed padding since no frame */
}

.intro-question {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.3;
}

.observation-list {
  margin-bottom: 30px;
}

.observation-intro {
  font-size: 1.05rem;
  color: #4a5568;
  margin-bottom: 15px;
  font-weight: 500;
}

.behavioral-changes {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.behavioral-changes li {
  font-size: 1rem;
  color: #2d3748;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.5;
}

.behavioral-changes li:before {
  content: "•";
  color: #b8860b;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.discovery-section {
  margin-top: 35px;
}

.discovery-headline {
  font-size: 1.3rem;
  font-weight: 600;
  color: #b8860b;
  margin-bottom: 20px;
  line-height: 1.3;
}

.author-story {
  font-size: 1.05rem;
  color: #4a5568;
  margin-bottom: 15px;
  line-height: 1.6;
}

.key-revelation {
  font-size: 1.1rem;
  color: #2d3748;
  margin-bottom: 15px;
  line-height: 1.5;
}

.key-revelation strong {
  color: #b8860b;
}

.book-promise {
  font-size: 1.05rem;
  color: #4a5568;
  margin-bottom: 15px;
  line-height: 1.6;
}

.book-promise em {
  color: #2d3748;
  font-weight: 500;
  font-style: normal;
}

.call-to-action {
  font-size: 1.1rem;
  color: #2d3748;
  margin-bottom: 0;
  line-height: 1.5;
}

.call-to-action strong {
  color: #b8860b;
}

.intro-text p {
  font-size: 0.95rem;
  color: #2d3748;
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: 0.002em;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.intro-text strong {
  color: #b8860b;
  font-weight: 600;
}

.description {
  margin-bottom: 48px;
}

.tagline {
  font-size: 1.35rem;
  font-weight: 400;
  color: #2d3748;
  margin-bottom: 28px;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.005em;
}

.main-desc {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.002em;
}

.purchase-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #b8860b;
}

.purchase-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
  color: #2d3748;
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(218, 165, 32, 0.3);
  max-width: 300px;
  border: 2px solid #b8860b;
}

.purchase-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(218, 165, 32, 0.4);
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.format-info {
  font-size: 0.9rem;
  color: #718096;
  font-style: italic;
}

.book-cover {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cover-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.cover-image:hover {
  transform: scale(1.05);
}

/* Features Section */
.features {
  padding: 30px 0; /* Reduced from 60px */
  background: rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Reduced from 30px */
}

.feature-card {
  background: rgba(255, 215, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 25px; /* Reduced from 40px */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 2px solid rgba(255, 215, 0, 0.6);
}

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

.feature-card h3 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #2d3748;
  margin-bottom: 15px; /* Reduced from 25px */
  text-align: center;
  letter-spacing: 0.01em;
}

/* Redesigned Video and Info Panel */
.video-card {
  display: grid;
  grid-template-columns: 2fr 3fr; /* Better proportions: 40% info, 60% video */
  gap: 40px; /* Increased for better breathing room */
  align-items: start;
}

.video-card h3 {
  grid-column: 1 / -1;
  font-size: 1.8rem;
  font-weight: 500;
  color: #2d3748;
  margin-bottom: 30px; /* Increased for better separation */
  text-align: center;
  letter-spacing: 0.01em;
}

.revealed-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(255, 215, 0, 0.3);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #b8860b;
  height: fit-content; /* Ensures it doesn't stretch unnecessarily */
}

.revealed-section h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 18px;
}

.revealed-text {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}

.video-section {
  display: flex;
  flex-direction: column;
  gap: 25px; /* Better spacing between video and info */
}

.video-container {
  position: relative;
  width: 100%;
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.video-container video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-info {
  padding: 25px;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  border-left: 4px solid #b8860b;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.video-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 12px;
}

.video-info p {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.inside-preview {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.page-ref {
  color: #667eea;
  font-weight: 600;
  text-align: right;
}

/* What's Inside Section Styling */
.whats-inside-card {
  grid-column: 1 / -1; /* Span full width */
  max-width: none;
  padding: 30px;
}

.inside-questions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 16px;
}

.question-item {
  background: rgba(255, 215, 0, 0.6);
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #b8860b;
  transition: all 0.3s ease;
}

.question-item:hover {
  background: rgba(255, 215, 0, 0.8);
  transform: translateX(5px);
}

.question-item p {
  color: #2d3748;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 8px;
  font-weight: 500;
}

.question-item .page-ref {
  font-size: 0.85rem;
  color: #b8860b;
  font-weight: 600;
  text-align: right;
  margin: 0;
}

/* Footer */
.footer {
  padding: 20px 0; /* Reduced from 40px */
  text-align: center;
  background: rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
}

.footer p {
  color: #2d3748;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding-top: 200px; /* Increased significantly for larger mobile header */
  }

  .sticky-content {
    flex-direction: column;
    align-items: center; /* Center align for mobile since we stack vertically */
    gap: 18px;
    padding: 15px 0 10px; /* Increased padding for better proportions */
  }

  .sticky-title {
    text-align: center;
  }

  .sticky-title h2 {
    font-size: 1.5rem;
  }

  .sticky-title p {
    font-size: 0.9rem;
  }

  .sticky-cover-image {
    height: 120px; /* Increased significantly from 90px */
  }

  .sticky-purchase-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 40px 0 30px 0; /* Better mobile padding with proper top spacing */
  }

  .hero-content {
    padding: 25px 20px; /* Better mobile padding */
    text-align: center;
  }

  .title {
    font-size: 2.8rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .main-desc {
    font-size: 1rem;
  }

  .intro-text {
    padding: 0;
    margin-bottom: 30px;
  }

  .intro-text p,
  .observation-intro,
  .author-story,
  .book-promise {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .intro-question,
  .discovery-headline {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .key-revelation,
  .call-to-action {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .behavioral-changes li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    padding-left: 20px;
  }

  .discovery-section {
    margin-top: 25px;
  }

  .video-card {
    grid-template-columns: 1fr;
    gap: 30px; /* Better mobile spacing */
  }

  .video-card h3 {
    grid-column: 1;
    margin-bottom: 25px;
  }

  .revealed-section {
    padding: 20px;
    margin-bottom: 10px;
  }

  .revealed-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .revealed-text {
    font-size: 1rem;
  }

  .video-section {
    gap: 20px;
  }

  .video-container {
    padding: 6px;
  }

  .video-info {
    padding: 20px;
  }

  .video-info h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .video-info p {
    font-size: 1rem;
  }

  .feature-card {
    padding: 20px; /* Reduced from 30px 25px */
  }

  .purchase-btn {
    max-width: 100%;
  }

  .inside-questions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .question-item {
    padding: 14px;
  }

  .whats-inside-card {
    padding: 20px; /* Reduced from 25px */
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 180px; /* Increased to accommodate larger header */
  }

  .sticky-content {
    padding: 12px 0 8px; /* Increased padding for better proportions */
  }

  .sticky-title h2 {
    font-size: 1.3rem;
  }

  .sticky-cover-image {
    height: 100px; /* Significantly increased from 70px */
  }

  .sticky-purchase-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .hero {
    padding: 20px 0; /* Reduced top padding to prevent cutoff */
  }

  .hero-content {
    padding: 20px 15px; /* Maintained good content padding */
  }

  .intro-text {
    padding: 0; /* Removed padding since no frame */
    margin-bottom: 20px;
  }

  .intro-text p,
  .observation-intro,
  .author-story,
  .book-promise {
    font-size: 0.85rem; /* Slightly smaller text for better fit */
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .intro-question,
  .discovery-headline {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .key-revelation,
  .call-to-action {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .behavioral-changes li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    padding-left: 18px;
  }

  .discovery-section {
    margin-top: 20px;
  }

  .title {
    font-size: 2.2rem;
  }

  .price {
    font-size: 2rem;
  }

  .purchase-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .whats-inside-card {
    padding: 15px;
  }

  .feature-card {
    padding: 15px;
  }
}
