:root {
  --bg: #050509;
  --fg: #ffffff;
  --accent: #f2b35b;
  --accent-soft: #f2b35b22;
  --muted: #c7c7d0;
  --font-title: 'OpenDyslexic', sans-serif;
  --font-body: 'Lexend', sans-serif;
}

@font-face {
font-family: 'OpenDyslexic';
src: url('../fonts/OpenDyslexic-Regular.woff2') format('woff2');
font-weight: 400;
font-style: normal;
}

@font-face {
font-family: 'OpenDyslexic';
src: url('../fonts/OpenDyslexic-Bold.woff2') format('woff2');
font-weight: 700;
font-style: normal;
}

@font-face {
font-family: 'OpenDyslexic';
src: url('../fonts/OpenDyslexic-Italic.woff2') format('woff2');
font-weight: 400;
font-style: italic;
}

@font-face {
font-family: 'OpenDyslexic';
src: url('../fonts/OpenDyslexic-Bold-Italic.woff2') format('woff2');
font-weight: 700;
font-style: italic;
}

* { box-sizing: border-box; }   /* Resets */

body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    text-align: center;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

h1, h2, h3, .section-title, .hero-form-title { font-family: var(--font-title); }

body, p, label, input, textarea, .section-body { font-family: var(--font-body); }

.section {
    margin-bottom: 2.5rem;
    padding: 4rem 1.25rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header { margin-bottom: 1rem; }

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section-body {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--muted);
    max-width: none;
}

.section-body p { margin: 0 0 0.9rem; }

.section-layout {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

/*.section-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}*/

.section-main-col { flex: 1 1 260px; }

.section-side-col {
    flex: 0 0 260px;
    order: -1; 
}

.section-list {
  list-style: disc;
  padding-left: 1.5rem;   /* ensures bullets are visible and aligned */
  margin: 1rem 0;
  text-align: left;       /* forces left alignment even inside centered sections */
}

.section-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}


.main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 3.5rem;
}

/* Top navigation */
.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: linear-gradient(to bottom, #050509ee, #050509cc, #05050900);
    backdrop-filter: blur(10px);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav-left { display: flex; align-items: center; gap: 0.75rem; }

.nav-logo { display: flex; align-items: center; justify-content: center; }

.nav-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.nav-site-name {
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;      /*display: none; on landing pages*/
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    gap: 1rem;
}

.nav-item { position: relative; }

.nav-item > a { padding: 0.25rem 0; }

.nav-item > a:hover { color: var(--accent); }

.nav-item:hover .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.35rem;
    background: #11111a;
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    min-width: 220px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 30;
}

.nav-submenu a {
    display: block;
    padding: 0.4rem 0.9rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.nav-submenu a:hover {
    background: #1b1b26;
    color: var(--fg);
}

.book-button-wrap { margin-top: 1.4rem; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    border: none;
    background: var(--accent);
    color: #1a1205;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.btn-primary:hover {
    background: #f5c06f;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    transition: background 0.1s ease, color 0.1s ease, transform 0.1s ease;
}

.btn-outline:hover {
    background: var(--accent-soft);
    transform: translateY(-1px);
}

.form-field {
    margin-bottom: 0.9rem;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    color: var(--muted);
}

.form-input,
.form-textarea {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 5, 15, 0.9);
    color: var(--fg);
    padding: 0.55rem 0.6rem;
    font-size: 0.9rem;
    font-family: inherit;
}

.form-textarea {
    min-height: 90px;
    resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent-soft);
}

.form-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0.6rem 0 1.1rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.form-checkbox-row input { margin-top: 0.1rem; }

.hero-form-card {
    width: 100%;
    max-width: none;
    background: rgba(10, 10, 20, 0.65);
    backdrop-filter: blur(2px);
    border-radius: 1rem;
    padding: 1.5rem 1.25rem 1.6rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-simple {
    padding: 4rem 1.25rem 3rem;
    text-align: center;
}

.hero-simple-inner {
    max-width: 720px;
    margin: 0 auto;
}

.hero-simple-title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 1rem;
}

.hero-simple-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 1.75rem;
}

.hero-simple-btn {
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
}

.testimonial-card {
    background: #c39683;
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    text-align: left;
}

.testimonials { padding: 3rem 1.25rem 4rem; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 0.75rem;
    color: var(--fg);
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--muted);
}

.paypal-card {
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    background: #10101b;
    border-radius: 1rem;
    padding: 1.5rem 1.25rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.paypal-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.paypal-text {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.1rem;
}

.paypal-qr {
    width: 220px;
    max-width: 100%;
    border-radius: 0.75rem;
    display: block;
    margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  background: #2d0000;
  /* background: none; */
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item[open] {
  /* background: #fff; */
  background: none;
  border-color: #ccc;
}

.faq-item p {
  margin-top: 0.75rem;
  line-height: 1.6;
  hyphens: auto;
}

.faq-item[open] p {
  text-align: justify;
}

.faq-content h3,
.faq-content h4 {
  margin-top: 1rem;
  font-weight: 600;
}

.faq-content ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 1rem;
}

.faq-content p {
  margin: 0.5rem 0 1rem;
  text-align: justify;
}



.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem 1.25rem 2rem;
    background: #050509;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a:hover { color: var(--accent); }

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tool-card {
  /* background: #ffffff; */
  background: rgba(217, 250, 89, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); /* Safari */
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.tool-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.tool-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.tool-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.tool-card p {
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.tool-card .btn-primary {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #4a4aff;
  color: white;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
  transition: background 0.2s ease;
}

.tool-card .btn-primary:hover {
  background: #3737d6;
}

.tool-tag {
  display: inline-block;
  background: #f2f2f2;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #555;
}

.google-review-image {
  display: block;
  margin: 0 auto;
  max-width: 50%;
  height: auto;
}




@media (max-width: 900px) {  
    .section { padding: 3rem 1.25rem; }     /* Section spacing */    
    .section-layout {       /* Two-column layout collapses */
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .section-side-col {
        order: 0;
        flex: 1 1 auto;
    }
    .section-main-col { flex: 1 1 auto; }
    .hero-simple { padding: 3rem 1.25rem 2.5rem; }      /* Hero-simple */
    .hero-simple-title { font-size: clamp(1.6rem, 4vw, 2.2rem); }
    .hero-simple-text { font-size: 1rem; }
    .testimonials { padding: 2.5rem 1.25rem 3rem; }     /* Testimonials */
    .testimonials-grid { gap: 1.25rem; }    
    .nav-inner {        /* Navigation spacing */
        padding: 0.6rem 1rem;
        gap: 1rem;
    }
}

@media (max-width: 600px) {  
    .section { padding: 2.5rem 1rem; }     /* Section spacing tightens */  
    .section-title { font-size: 1.4rem; }     /* Typography scales down slightly */
    .section-body { font-size: 0.95rem; }  
    .hero-simple { padding: 2.5rem 1rem 2rem; }     /* Hero-simple */
    .hero-simple-btn {
        padding: 0.6rem 1.4rem;
        font-size: 0.95rem;
    }  
    .testimonials { padding: 2rem 1rem 2.5rem; }     /* Testimonials */
    .testimonial-card { padding: 1.25rem 1rem; }  
    .paypal-card { padding: 1.25rem 1rem 1.5rem; }     /* PayPal card */  
    .footer-inner {       /* Footer */
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

