@charset "UTF-8";
/* ========================================
   AYANIL Theme CSS
   - Bootstrap 5.3 (CDN import recommended for production)
   - Custom Theme Overrides
   ======================================== */

/* ========================================
   CDN Bootstrap Import
   For production, use Bootstrap 5.3 CDN or keep compiled version
   ======================================== */
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css");

/* ========================================
   CUSTOM THEME VARIABLES
   ======================================== */
:root {
  /* Primary Colors */
  --theme-primary: #625fc1;
  --theme-primary-hover: #5351a8;
  --theme-primary-light: #f5a782;

  /* Accent Colors (now same as primary for unified look) */
  --theme-accent: #625fc1;
  --theme-accent-hover: #5351a8;

  /* Background Colors */
  --theme-bg-light: #f6f8fc;
  --theme-bg-dark: #1c1e2e;
  --theme-bg-dark-hover: #2f334e;

  /* Text Colors */
  --theme-text-primary: #1c1e2e;
  --theme-text-secondary: #6f75a7;
  --theme-text-muted: #4c527d;
  --theme-text-light: #fff;

  /* Utility Colors */
  --theme-success: #625fc1;
  --theme-success-light: #5351a8;
  --theme-border: #e3e9f6;
}

/* ========================================
   BASE TYPOGRAPHY
   ======================================== */
body {
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--theme-text-muted);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Quicksand", sans-serif;
  color: var(--theme-text-primary);
  font-weight: bold;
}

a.theme-link {
  color: var(--theme-text-primary);
  text-decoration: underline;
  text-decoration-color: rgba(28, 30, 46, 0.3);
}

a.theme-link:hover {
  color: var(--theme-accent);
  text-decoration-color: rgba(98, 95, 193, 0.8);
}

/* ========================================
   BUTTON STYLES
   ======================================== */
.btn {
  font-weight: 600;
  padding: 0.875rem 2.5rem;
  transition: all 0.4s ease-in-out;
  border-radius: 2rem;
  border: none;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover,
.btn:active,
.btn:focus {
  box-shadow: 0 10px 20px -4px rgba(0, 0, 0, 0.05);
}

.btn-submit {
  border-radius: 0.25rem;
  padding: 0.875rem 1.5rem;
}

.btn:focus,
.btn.focus {
  box-shadow: none !important;
}

.btn-primary {
  background: var(--theme-accent);
  color: var(--theme-text-light);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  background: var(--theme-accent-hover);
  color: var(--theme-text-light);
}

.btn-secondary {
  background: var(--theme-text-light);
  border: 2px solid var(--theme-accent);
  color: var(--theme-accent);
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled):active {
  background: var(--theme-accent);
  border: 2px solid var(--theme-accent);
  color: var(--theme-text-light);
}

.btn-light {
  background: var(--theme-bg-light);
  color: var(--theme-accent);
}

.btn-light:hover {
  background: var(--theme-bg-light);
  color: var(--theme-accent);
}

/* ========================================
   FORM STYLES
   ======================================== */
.form-control {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  height: 56px;
  border-color: var(--theme-border);
}

.form-control:focus {
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  outline: none;
}

/* ========================================
   THEME BACKGROUND UTILITIES
   ======================================== */
.theme-bg-light {
  background: var(--theme-bg-light);
}

.theme-bg-dark {
  background: var(--theme-bg-dark);
}

.theme-bg-primary {
  background: var(--theme-primary);
}

.theme-bg-light-gradient {
  background-image: linear-gradient(
    to bottom,
    var(--theme-bg-light) 0%,
    #fff 70%
  );
}

/* ========================================
   TOP CONTROL (SCROLL TO TOP)
   ======================================== */
#topcontrol {
  transition: all 0.4s ease-in-out;
  background: var(--theme-bg-dark);
  color: var(--theme-text-light);
  text-align: center;
  display: inline-block;
  z-index: 30;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding-top: 0.5rem;
  font-weight: 300;
  font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  #topcontrol {
    transition: none;
  }
}

#topcontrol:hover {
  background: var(--theme-bg-dark-hover);
  color: var(--theme-text-light);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.border-radius-0 {
  border-radius: 0;
}

.font-style-normal {
  font-style: normal !important;
}

.single-col-max {
  max-width: 760px;
}

/* ========================================
   SITE LOGO
   ======================================== */
.site-logo .logo-text {
  color: var(--theme-text-secondary);
  font-size: 1.5rem;
  font-weight: bold;
}

/* ========================================
   FOOTER
   ======================================== */
.footer .copyright {
  font-size: 0.875rem;
}

/* ========================================
   SECTION TYPOGRAPHY
   ======================================== */
.section-heading {
  font-size: 2.5rem;
}

.section-intro {
  font-size: 1.25rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section .headline {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero-section .subheadline {
  font-size: 1.25rem;
}

.hero-quotes .quote {
  position: relative;
  border-left: 4px solid var(--theme-primary-light);
  font-style: italic;
}

.hero-quotes .quote:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--theme-bg-light);
  position: absolute;
  bottom: -10px;
  margin-left: -10px;
  left: 2rem;
}

.hero-quotes .source {
  vertical-align: middle;
  color: var(--theme-text-secondary);
  font-size: 0.875rem;
}

.hero-quotes .source-profile {
  width: 60px;
  height: 60px;
}

.hero-quotes .carousel-indicators {
  bottom: -4rem;
}

.hero-quotes .carousel-indicators button {
  border: none;
  background-color: var(--theme-text-muted);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}

/* ========================================
   BOOK COVER
   ======================================== */
.book-cover-holder {
  position: relative;
}

.book-cover-holder .book-badge {
  position: absolute;
  right: 0;
  top: -2rem;
  width: 120px;
  height: 120px;
  background: var(--theme-success);
  border-radius: 50%;
  text-align: center;
  color: var(--theme-text-light);
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  padding-top: 34px;
  font-size: 1.375rem;
  line-height: 1;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-section .item-inner {
  height: 100%;
}

.benefits-section .item-icon {
  font-size: 3rem;
  color: var(--theme-primary);
}

.benefits-section .item-heading {
  font-size: 1.125rem;
}

/* ========================================
   CONTENT SECTION
   ======================================== */
.content-section .key-points-list {
  font-size: 1.125rem;
}

.content-section .key-points-list li {
  margin-bottom: 1rem;
}

.content-section .fa-check-circle {
  color: var(--theme-success-light);
}

/* ========================================
   AUDIENCE SECTION
   ======================================== */
.audience-section .audience {
  max-width: 500px;
}

.audience-section .item {
  margin-bottom: 1.5rem;
}

.audience-section .item-title {
  font-size: 1.125rem;
}

.audience-section .item-icon {
  font-size: 1.25rem;
  color: var(--theme-success-light);
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-section .item-inner {
  height: 100%;
  position: relative;
}

.reviews-section .icon-holder {
  position: absolute;
  left: 50%;
  top: -18px;
  margin-left: -18px;
  display: inline-block;
  width: 36px;
  height: 36px;
  background: var(--theme-primary-light);
  color: var(--theme-text-light);
  text-align: center;
  border-radius: 50%;
  padding-top: 6px;
}

.reviews-section .source-profile {
  width: 60px;
}

.reviews-section .source-info {
  font-size: 0.875rem;
}

.reviews-section .quote {
  font-style: italic;
}

/* ========================================
   AUTHOR SECTION
   ======================================== */
.author-section {
  color: #fff;
}

.author-section .author-pic {
  width: 150px;
  height: 150px;
}

.author-section .social-list li {
  background: rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  display: inline-block;
  border-radius: 50%;
  padding-top: 6px;
}

.author-section .social-list li:hover {
  background: rgba(0, 0, 0, 0.15);
}

.author-section .social-list a {
  color: #fff;
}

.theme-bg-primary a.theme-link {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.theme-bg-primary a.theme-link:hover {
  color: #fff;
  text-decoration-color: #fff;
}

/* ========================================
   FOOTER BRAND
   ======================================== */
.footer_brand {
  color: #f26a26;
  text-decoration: none;
}

.footer_brand:hover {
  color: #fba729;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 575.98px) {
  .hero-quotes .quote:after {
    left: 50%;
    margin-left: -10px;
  }

  .reviews-section .source-profile {
    margin-bottom: 0.5rem;
  }

  .form-inline .form-control {
    width: 200px;
  }
}

@media (max-width: 991.98px) {
  .section-heading {
    font-size: 1.75rem;
  }

  .section-intro {
    font-size: 1.125rem;
  }

  .hero-section .headline {
    font-size: 2rem;
    font-weight: bold;
  }

  .hero-section .subheadline {
    font-size: 1.125rem;
  }

  .book-cover-holder .book-badge {
    width: 100px;
    height: 100px;
    padding-top: 25px;
    font-size: 1.25rem;
  }
}

@media (min-width: 576px) {
  .form-inline .form-control {
    width: 400px;
  }
}
