
/* Reading Rocks! page Specific Styles */

.rocks-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #2C3E50;
}

/* Header Brand Hero Billboard */
.rocks-hero {
  text-align: center;
  margin-bottom: 30px;
}

.rocks-main-title {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 900;
  color: var(--color-blue);
  margin-bottom: 10px;
  letter-spacing: -1px;
  line-height: 1.1;
}
 
.rocks-main-title span {
  background: linear-gradient(120deg, #3B82F6, #10B981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rocks-subtitle {
  font-size: clamp(1.05rem, 3vw, 1.6rem);
  text-align: left;
  color: #4B5563;
  max-width: 700px;
  margin: 0 auto;
   margin-left: 20px;
   margin-top: 20px;
  line-height: 1.4;
  font-weight: 500;
}

.rocks-he-subtitle {
  font-size: clamp(1.05rem, 3vw, 1.6rem);
  text-align: right;
  color: #4B5563;
  max-width: 700px;
  margin: 0 auto;
   margin-left: 20px;
   margin-top: 20px;
  line-height: 1.4;
  font-weight: 500;
}

/* Image Utility Styling (Top Main Cover) */
.rocks-img {
  display: block;
  max-width: 1000px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 30px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Question Hook Banner Block */
.hook-box {
  background: #FAF5FF;
  border-left: 6px solid #540D6E;
  border-radius: 4px 16px 16px 4px;
  padding: 25px;
  margin: 40px auto;
  max-width: 800px;
  text-align: left;
}

.hook-box p {
  font-size: 1.2rem;
  font-style: italic;
  margin: 8px 0;
  color: black;
  font-weight: 600;
}

/* Solution Callout Layout */
.solution-statement {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-blue);
  margin-bottom: 40px;
}

/* Structural Benefits Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.feature-card {
  background: #FFFFFF;
  border: 2px solid #EBF5FB;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.08);
  border-color: var(--color-blue);
}

.feature-card h4 {
  margin: 0 0 10px 0;
  font-size: 1.25rem;
  color: var(--color-blue);
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #4B5563;
}

/* Authors & Affordable Pricing Side-by-Side Banner Layout */
.meta-highlight-box {
  background: #FFFBEB;
  border: 2px solid var(--color-red);
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 60px;
  
  display: flex;
  flex-direction: row;      /* Side-by-side arrangement for desktop views */
  align-items: center;      /* Vertically aligns text and image layout blocks centered */
  gap: 35px;
}

/* Left Image Column Control */
.highlight-left-col {
  flex: 1;
  min-width: 250px;
}

/* Image settings to guarantee true visual aspect ratio proportions */
.rocks-highlight-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.12);
  display: block;
}

/* Right Content Column Control */
.highlight-right-col {
  flex: 1.3;
  text-align: left;         /* Makes body paragraph description easy to read */
}

/* Price block alignment grouping wrapper */
.price-container-block {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;  /* Keeps statements and buttons cleanly aligned left */
  gap: 12px;
}

.price-link {
  text-decoration: none;
  display: inline-block;
  outline: none;
}

.price-tag {
  display: inline-block;
  background: var(--color-red); 
  color: #FFFFFF;
  font-size: 1.7rem;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateY(0);
}

.price-link:hover .price-tag {
  background: var(--color-red);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.45);
}

.price-link:active .price-tag {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

/* Links & Navigation Row Buttons */
.resource-links-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.btn-resource {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-sample { background:var(--color-blue); color: white; }
.btn-guide { background: var(--color-green-dark); color: white; }
.btn-blog { background: var(--color-red); color: white; }
.btn-video { background: var(--color-blue); color: white; }

.btn-resource:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Testimonials Sections Elements */
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 300px;
  height: 5px;
  background: var(--color-blue);
  margin: 10px auto 0 auto;
  border-radius: 10px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 70px;
}

.quote-card {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 25px;
  position: relative;
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #334155;
  margin: 0 0 20px 0;
  font-style: italic;
}

.quote-author {
  border-top: 1px solid #E2E8F0;
  padding-top: 15px;
}

.author-name {
  font-weight: 700;
  color: #1E293B;
  font-size: 1.1rem;
  margin: 0;
}

.author-role {
  font-size: 0.9rem;
  color: #64748B;
  margin: 2px 0 0 0;
}

/* Purchase Container Layout */
.purchase-box {
  background: #EDF5FF;
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 60px;
  text-align: left;
}

.purchase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.purchase-option {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #BFDBFE;
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.04);
}

.purchase-option a, .purchase-option span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-blue);
  text-decoration: none;
  display: block;
}
  
.purchase-option a:hover {
  text-decoration: underline;
}

/* Centered Bottom Form Row Styles */
.footer-layout-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.contact-section {
  width: 100%;
  max-width: 650px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #334155;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E2E8F0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: #3B82F6;
}

.btn-submit {
  background: var(--color-blue);
  color: #FFFFFF;
  border: none;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
}

.btn-submit:hover {
  background: var(--color-blue-dark);
}

/* Responsive Overrides: cleanly drops down to stacked blocks on small viewports */
@media (max-width: 768px) {
  .meta-highlight-box {
    flex-direction: column;  /* Stacks elements vertically on phone screens */
    text-align: center;
    gap: 20px;
  }

  .price-container-block {
    align-items: center;    /* Center anchors button on mobile screens */
  }

  .highlight-right-col {
    text-align: center;      /* Centers text alignment nicely for phones */
  }
}

@media (max-width: 600px) {
  .rocks-container { padding: 20px 15px; }
  .purchase-box { padding: 25px; }
  .contact-section { padding: 25px; }
}