
/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600;700&display=swap');


/* Base styles */
:root {
--primary-color: #111;
--accent-color: rgba(255, 220, 0, 0.5);
--text-color: #444;
--light-bg: #f9f9f9;
--border-color: #eee;
}

body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
color: var(--text-color);
background-color: #fff;
}

/* Palmer Lake font styling */
.palmer-lake {
font-family: 'Playfair Display', serif;
letter-spacing: 0.5px;
}

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

/* Typography */
h1 {
font-size: 42px;
font-weight: 700;
line-height: 1.2;
margin-bottom: 24px;
color: var(--primary-color);
}

h2 {
font-size: 28px;
font-weight: 600;
margin-top: 48px;
margin-bottom: 24px;
color: var(--primary-color);
}

p {
font-size: 18px;
margin-bottom: 24px;
color: var(--text-color);
}

/* Header and Navigation */
header {
padding: 18px 0;
border-bottom: 1px solid var(--border-color);
position: sticky;
top: 0;
background-color: white;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-weight: 700;
font-size: 22px;
color: var(--primary-color);
text-decoration: none;
transition: opacity 0.2s;
}

.logo:hover {
opacity: 0.8;
}

.nav-menu {
display: flex;
gap: 24px;
}

.nav-link {
font-weight: 500;
font-size: 16px;
color: var(--primary-color);
text-decoration: none;
transition: color 0.2s;
padding: 6px 12px;
border-radius: 4px;
}

.nav-link:hover {
color: #555;
background-color: #f5f5f5;
}

.nav-button {
font-weight: 500;
font-size: 16px;
color: white;
background-color: var(--primary-color);
text-decoration: none;
padding: 8px 16px;
border-radius: 6px;
transition: background-color 0.2s, transform 0.2s;
}

.nav-button:hover {
background-color: #333;
transform: translateY(-2px);
}

/* Hero section */
.hero {
padding: 80px 0 60px;
text-align: center;
background: linear-gradient(to bottom, #fff, #f9f9f9);
}

.subtitle {
font-size: 22px;
color: #555;
margin-bottom: 32px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.book-cover {
max-width: 240px;
border-radius: 8px;
box-shadow: 0 15px 30px rgba(0,0,0,0.15);
margin-bottom: 40px;
transition: transform 0.3s;
}

.book-cover:hover {
transform: translateY(-8px) rotate(1deg);
box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Permission section */
.permission-section {
padding: 60px 0;
text-align: center;
background-color: var(--light-bg);
border-top: 1px solid var(--border-color);
border-bottom: 1px solid var(--border-color);
}

.permission-section h2 {
font-size: 36px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
margin-bottom: 32px;
}

.permission-section p {
font-size: 20px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
color: #555;
}

/* Who/Why sections with images */
.info-section {
padding: 48px 0;
}

.info-section h2 {
font-size: 28px;
margin-bottom: 24px;
}

/* Split layout for image and content */
.split-layout {
display: flex;
align-items: center;
gap: 60px;
margin-bottom: 0;
}

.split-layout:nth-child(even) {
flex-direction: row-reverse;
}

.split-image {
flex: 0 0 240px;
}

.split-image img {
width: 100%;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0,0,0,0.12);
transition: transform 0.3s;
}

.split-image img:hover {
transform: scale(1.03);
}

.split-content {
flex: 1;
}

.info-items {
margin-top: 24px;
}

.info-item {
margin-bottom: 28px;
display: flex;
align-items: flex-start;
}

.info-icon {
flex: 0 0 28px;
height: 28px;
margin-right: 16px;
margin-top: 4px;
font-weight: bold;
color: var(--primary-color);
}

.info-content {
flex: 1;
}

.info-content h3 {
margin-top: 0;
margin-bottom: 10px;
font-size: 20px;
color: var(--primary-color);
}

.info-content p {
margin-top: 0;
font-size: 17px;
color: #555;
line-height: 1.6;
}

/* Circle underline styling */
.circle-underline {
position: relative;
z-index: 1;
}

.circle-underline::after {
content: "";
position: absolute;
width: 100%;
height: 9px;
background-color: var(--accent-color);
bottom: 2px;
left: 0;
z-index: -1;
border-radius: 10px;
}
.circle-underline::after {
content: "";
position: absolute;
width: 100%;
height: 9px;
background-color: rgba(255, 220, 0, 0.5); /* or var(--accent-color) if you set it */
bottom: 2px;
left: 0;
z-index: -1;
border-radius: 10px;
}



/* CTA buttons */
.cta-button {
display: inline-block;
background-color: var(--primary-color);
color: white;
padding: 12px 24px;
font-size: 18px;
text-decoration: none;
border-radius: 8px;
font-weight: 500;
transition: background-color 0.2s, transform 0.2s;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cta-button:hover {
background-color: #333;
transform: translateY(-4px);
box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.secondary-button {
display: inline-block;
background-color: white;
color: #333;
border: 1px solid #ddd;
padding: 12px 24px;
font-size: 18px;
text-decoration: none;
border-radius: 8px;
font-weight: 500;
margin-left: 16px;
transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.secondary-button:hover {
background-color: #f5f5f5;
transform: translateY(-4px);
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Sample chapter section */
.sample-chapter {
padding: 60px 0;
background-color: var(--light-bg);
text-align: center;
border-top: 1px solid var(--border-color);
border-bottom: 1px solid var(--border-color);
}

.sample-chapter-content {
display: flex;
align-items: center;
justify-content: center;
gap: 60px;
max-width: 900px;
margin: 0 auto;
}

.sample-chapter-image {
flex: 0 0 220px;
}

.sample-chapter-image img {
width: 100%;
border-radius: 8px;
box-shadow: 0 15px 30px rgba(0,0,0,0.15);
transition: transform 0.3s;
}

.sample-chapter-image img:hover {
transform: rotate(-2deg);
}

.sample-chapter-text {
flex: 1;
text-align: left;
}

.sample-chapter-text h2 {
margin-top: 0;
font-size: 28px;
}

.sample-chapter-text p {
margin-bottom: 20px;
font-size: 18px;
}

/* Features section */
.features {
padding: 48px 0;
}

.features h2 {
text-align: center;
margin-bottom: 32px;
}

.feature {
display: flex;
margin-bottom: 40px;
align-items: flex-start;
transition: transform 0.2s;
padding: 16px;
border-radius: 8px;
}

.feature:hover {
transform: translateX(8px);
background-color: #f9f9f9;
}

.feature-icon {
flex: 0 0 56px;
height: 56px;
background-color: var(--accent-color);
border-radius: 50%;
margin-right: 24px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: bold;
color: var(--primary-color);
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.feature-content {
flex: 1;
}

.feature h3 {
margin-top: 0;
margin-bottom: 12px;
font-size: 22px;
color: var(--primary-color);
}

.feature p {
margin-top: 0;
font-size: 17px;
color: #555;
line-height: 1.6;
}

/* Testimonials */
.testimonials {
padding: 60px 0;
background-color: var(--light-bg);
margin: 72px 0;
}

.testimonials h2 {
text-align: center;
margin-bottom: 32px;
}

.testimonial {
padding: 40px;
background-color: white;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
margin-bottom: 32px;
transition: transform 0.3s;
border-left: 4px solid var(--accent-color);
}

.testimonial:hover {
transform: translateY(-8px);
box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.testimonial p {
font-size: 18px;
margin-bottom: 16px;
font-style: italic;
}

.testimonial .author {
font-weight: 600;
color: var(--primary-color);
font-style: normal;
}

/* Pricing */
.pricing {
padding: 60px 0;
text-align: center;
background: linear-gradient(to bottom, #fff, #f9f9f9);
}

.price-card {
background-color: white;
padding: 36px;
border-radius: 16px;
margin: 32px auto;
max-width: 600px;
box-shadow: 0 12px 32px rgba(0,0,0,0.1);
transition: transform 0.3s;
border-top: 6px solid var(--accent-color);
}

.price-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.price {
font-size: 56px;
font-weight: 700;
margin: 24px 0;
color: var(--primary-color);
}

.price-features {
text-align: left;
max-width: 400px;
margin: 32px auto;
padding-left: 20px;
}

.price-features li {
margin-bottom: 16px;
position: relative;
padding-left: 8px;
font-size: 17px;
color: #555;
}

.price-features li::before {
content: "?";
position: absolute;
left: -24px;
color: #333;
font-weight: bold;
}

/* FAQ section */
.faq {
padding: 48px 0;
}

.faq h2 {
text-align: center;
margin-bottom: 32px;
}

.question {
margin-bottom: 32px;
padding: 32px;
border-radius: 12px;
transition: background-color 0.2s, transform 0.2s;
border: 1px solid #eee;
}

.question:hover {
background-color: #f9f9f9;
transform: translateY(-4px);
box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

.question h3 {
margin-top: 0;
margin-bottom: 16px;
font-size: 22px;
color: var(--primary-color);
}

.question p {
margin-bottom: 0;
font-size: 17px;
}

/* Footer */
footer {
padding: 64px 0 40px;
text-align: center;
color: #666;
border-top: 1px solid var(--border-color);
background-color: #fcfcfc;
}

.footer-links {
margin-bottom: 24px;
}

.footer-links a {
color: #333;
text-decoration: none;
margin: 0 16px;
font-size: 16px;
transition: color 0.2s;
}

.footer-links a:hover {
color: #000;
text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
h1 {
font-size: 36px;
}

.permission-section h2 {
font-size: 30px;
}

.permission-section p {
font-size: 18px;
}

.cta-button, .secondary-button {
display: block;
width: 100%;
margin: 12px 0;
text-align: center;
}

.split-layout {
flex-direction: column !important;
gap: 32px;
}

.split-image {
flex: 0 0 auto;
width: 100%;
max-width: 240px;
margin: 0 auto;
}

.sample-chapter-content {
flex-direction: column;
text-align: center;
}

.sample-chapter-text {
text-align: center;
}

.header-container {
flex-direction: column;
gap: 16px;
}

.nav-menu {
flex-direction: column;
gap: 12px;
align-items: center;
}
}

/* Mobile menu toggle */
.mobile-menu-toggle {
display: none;
background: none;
border: none;
font-size: 24px;
cursor: pointer;
color: var(--primary-color);
}

@media (max-width: 768px) {
.mobile-menu-toggle {
display: block;
position: absolute;
right: 20px;
top: 18px;
}

.nav-menu {
display: none;
width: 100%;
text-align: center;
padding-top: 16px;
}

.nav-menu.active {
display: flex;
}

.header-container {
flex-direction: column;
align-items: flex-start;
}
}

/* Scroll to top button */
.scroll-top-btn {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: var(--primary-color);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
cursor: pointer;
opacity: 0;
transition: opacity 0.3s, transform 0.3s;
z-index: 100;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.scroll-top-btn.visible {
opacity: 1;
}

.scroll-top-btn:hover {
transform: translateY(-4px);
box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}
.info-icon {
flex: 0 0 28px;
height: 28px;
margin-right: 16px;
margin-top: 4px;
/* Remove the font-weight and color as we'll use the SVG instead */
}

.info-icon svg {
width: 28px;
height: 28px;
}

/* Add this to your CSS */
.features {
padding: 48px 0; /* Reduced from 64px */
}

.feature {
margin-bottom: 24px; /* Reduced from 40px */
padding: 12px; /* Reduced from 16px */
}

/* Optionally adjust the feature icon size */
.feature-icon {
flex: 0 0 48px; /* Slightly smaller */
height: 48px;
}

.feature h3 {
margin-bottom: 8px; /* Reduced from 12px */
}
/* Update the question class in your CSS */
.question {
margin-bottom: 24px; /* Reduced from 32px */
padding: 28px; /* Slightly reduced */
border-radius: 12px;
transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
border: 1px solid #ddd; /* Darker border color */
box-shadow: 0 2px 8px rgba(0,0,0,0.04); /* Add subtle shadow by default */
}

.question:hover {
background-color: #f9f9f9;
transform: translateY(-4px);
box-shadow: 0 8px 20px rgba(0,0,0,0.08); /* Enhanced shadow on hover */
border-color: #ccc; /* Darker border on hover */
}

/* Add this to create a left accent border for visual interest */
.question {
border-left: 4px solid rgba(255, 220, 0, 0.8); /* Match your accent color */
}
/* Footer Styles */
.site-footer {
background-color: #f8f8f8;
padding: 64px 0 32px;
border-top: 1px solid #eee;
font-size: 16px;
color: #444;
}

.footer-content {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 32px;
}

.footer-section {
flex: 1;
min-width: 240px;
margin-bottom: 32px;
padding-right: 40px;
}

.footer-section h3 {
font-size: 20px;
margin-bottom: 20px;
color: #111;
font-weight: 600;
}

.footer-section.about p {
margin-bottom: 16px;
line-height: 1.5;
}

.contact-info {
margin-bottom: 16px;
}

.contact-info div {
margin-bottom: 8px;
display: flex;
align-items: center;
}

.footer-icon {
width: 20px;
height: 20px;
margin-right: 10px;
display: inline-block;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}

.footer-icon.email {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
}

.footer-icon.phone {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}

.social-links {
display: flex;
gap: 16px;
}

.social-icon {
width: 36px;
height: 36px;
border-radius: 50%;
background-color: rgba(255, 220, 0, 0.3);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
position: relative;
}

.social-icon:hover {
background-color: rgba(255, 220, 0, 0.6);
transform: translateY(-3px);
}

.social-icon::before {
content: "";
width: 20px;
height: 20px;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}

.social-icon.twitter::before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z'%3E%3C/path%3E%3C/svg%3E");
}

.social-icon.instagram::before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'%3E%3C/rect%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%3E%3C/path%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'%3E%3C/line%3E%3C/svg%3E");
}

.social-icon.linkedin::before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z'%3E%3C/path%3E%3Crect x='2' y='9' width='4' height='12'%3E%3C/rect%3E%3Ccircle cx='4' cy='4' r='2'%3E%3C/circle%3E%3C/svg%3E");
}

.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}

.footer-section.links ul,
.footer-section.resources ul {
list-style: none;
padding: 0;
margin: 0;
}

.footer-section.links li,
.footer-section.resources li {
margin-bottom: 12px;
}

.footer-section.links a,
.footer-section.resources a {
color: #444;
text-decoration: none;
transition: color 0.2s;
position: relative;
padding-left: 0;
display: inline-block;
}

.footer-section.links a:hover,
.footer-section.resources a:hover {
color: #111;
transform: translateX(3px);
}

.footer-section.links a::before,
.footer-section.resources a::before {
content: "";
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 2px;
background-color: rgba(255, 220, 0, 0.8);
transition: width 0.3s ease;
}

.footer-section.links a:hover::before,
.footer-section.resources a:hover::before {
width: 100%;
}

.footer-bottom {
padding-top: 20px;
border-top: 1px solid #eee;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}

.footer-legal {
display: flex;
gap: 24px;
margin-bottom: 16px;
}

.footer-legal a {
color: #666;
text-decoration: none;
font-size: 14px;
transition: color 0.2s;
}

.footer-legal a:hover {
color: #111;
text-decoration: underline;
}

.copyright {
color: #777;
font-size: 14px;
margin: 0;
}

/* Responsive Footer Styles */
@media (max-width: 768px) {
.footer-content {
flex-direction: column;
}

.footer-section {
padding-right: 0;
margin-bottom: 40px;
}

.footer-bottom {
flex-direction: column;
text-align: center;
}

.footer-legal {
flex-direction: column;
gap: 12px;
margin-bottom: 20px;
}
}

