
:root {
    --primary-blue: #060291;
    --accent-orange: #e86130;
    --gold: #FFD700;
    --dark-bg: #0c0c2c;
    --light-bg: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
nav {
    background: rgba(6, 2, 145, 0.9);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.nav-brand img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #f8f9fa;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(6, 2, 145, 0.85), rgba(6, 2, 145, 0.7)), url('/static/img/bg_books.jpeg') no-repeat 65% 50%;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    font-size: 1.2rem;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    text-align: center;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-orange);
    border-radius: 10px;
    top: 20px;
    left: 20px;
    z-index: -1;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.subheading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
    max-width: 600px;
}

.quote {
    font-style: italic;
    color: white;
    padding: 20px;
    border-left: 3px solid var(--accent-orange);
    margin: 30px 0;
    background: rgba(232, 97, 48, 0.1);
    border-radius: 0 10px 10px 0;
}

.btn {
    display: inline-block;
    background: linear-gradient(to right, var(--accent-orange), #d45325);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(232, 97, 48, 0.4);
    margin: 15px 10px 15px 0;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 97, 48, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.intro-text {
    color: #f8f9fa;
}

.list-header {
    margin: 0;
    color: #171717;
    line-height: 32px;
    font-size: 22px;
    font-family: var(--title-font-family);
    font-weight: 700;
    font-style: normal;
    padding-top: 15px;
    padding-bottom: 15px;
}

.author {
    color: #6c757d !important;
    font-weight: 700;
}

.price-section h3{
    line-height: 30px;
    font-weight: 700;
    font-size: 26px;
}

.price-section p{
    line-height: 24px;
    font-weight: 600;
    font-size: 16px;
}


/* Mission Section */
.mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0c2c 0%, #1a1a2e 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

.mission-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    border-left: 4px solid var(--accent-orange);
}

.mission-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlight {
    color: var(--gold);
    font-weight: 700;
}

/* Founder Section */
.founder {
    padding: 100px 0;
    background: var(--dark-bg);
}

.founder-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.founder-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.founder-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    border: 5px solid var(--accent-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.founder-text {
    flex: 1;
    min-width: 300px;
}

.founder-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.founder-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 0;
    background: linear-gradient(135deg, #0c0c2c 0%, #1a1a2e 100%);
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-orange);
    outline: none;
}


/* Pillars Section */
.pillars {
    padding: 0;
    background: var(--dark-bg);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(232, 97, 48, 0.2);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(232, 97, 48, 0.5);
}

.pillar-icon {
    font-size: 3.5rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
}

/* Video Gallery */
.video-gallery {
    padding: 100px 0;
    background: linear-gradient(45deg, rgba(6, 2, 145, 0.9) 0%, rgba(232, 97, 48, 0.8) 100%);
    position: relative;
    z-index: 2;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.video-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}
@media (min-width:901px){
    .video-thumbnail {
        height: 320px;
    }

}
.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background: rgba(232, 97, 48, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.video-info {
    padding: 20px;
    color: #333;
}

.video-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}


/* Footer */
.footer {
    background: #090925;
    padding: 50px 0 30px;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.footer-links a {
    color: #aaa;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-icons {
    margin: 30px 0;
}

.social-icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-orange);
    font-size: 1.5rem;
    line-height: 50px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
    background: var(--accent-orange);
    color: white;
}

.copyright {
    margin-top: 30px;
    color: #777;
    font-size: 0.9rem;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #f8f9fa;
    line-height: 30px;
}

.description-container {
    position: relative;
}

.toggle-description {
    color: #0066c0;
    cursor: pointer;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    background: none;
    box-shadow: none;
}

.toggle-description:hover {
    text-decoration: underline;
    transform: none;
    box-shadow: none;
}

.toggle-description:focus {
    box-shadow: none !important;
}

.toggle-text {
    font-size: 1rem;
    text-transform: none;
}

.full-description {
    display: none;
}

.chevron-icon {
    font-size: 0.8em;
}

.short-description {
    display: block !important;
    overflow: hidden;
    max-height: 300px; /* Adjust as needed */
    transition: max-height 0.3s ease;
}

.read-more-btn {
    color: #0066c0;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.book-card {
    margin-bottom: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
}

.books-container::-webkit-scrollbar {
    height: 8px;
}

.books-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.books-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}


.ul-list {
    list-style: outside none none;
    margin: 0 0 25px;
    padding-left: 15px;
}

.ul-list li {
    margin-bottom: 5px;
    background-repeat: no-repeat;
    background-position: 0px 6px;
    text-align: left;
    font-weight: 300;

}

.ul-list li strong{
  margin: 0 0 12px;
}


.payment-cancel-btn {
    color: #6c757d;
    border-color: #6c757d;
    font-size: 1rem;
    padding: .375rem .75rem;
    text-transform: none;
    background: transparent;
    border: 1px solid;
    border-radius: .25rem;
}

.payment-submit-btn {
  font-size: 1rem;
  padding: .375rem .75rem;
  text-transform: none;
}


/* Responsive Design */
@media (max-width: 900px) {
    h1 {
        font-size: 2.8rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 20px 0 0 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .founder-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .subheading {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    .stats {
        display: block;
    }
    .stat-item {
      margin-bottom: 15px;
    }
}

.ul-list {
    list-style: outside none none;
    margin: 0 0 25px;
    padding-left: 15px;
}

.ul-list li {
    margin-bottom: 5px;
    background-repeat: no-repeat;
    background-position: 0px 6px;
    text-align: left;
    font-weight: 300;

}

.ul-list li strong{
  margin: 0 0 12px;
}

.list-header{
  margin: 0;
  color:#171717;
  line-height: 32px;
  font-size: 22px;
  font-family: var(--title-font-family);
  font-weight: 700;
  font-style: normal;
  padding-top: 15px;
  padding-bottom: 15px;
}

.button-div{
  text-align: center;
  padding: 20px 0 20px 0;
}

/*!
 * 
 * NEW PAYMENT PROCESSING CODE
 * 
 */


#checkoutModal .modal-dialog {
  max-width: 600px; /* Adjust width as needed */
}

#checkoutModal .modal-body {
  max-height: 70vh;
  overflow-y: auto;
}

#success-message {
  animation: fadeIn 0.3s ease-in;
}

.payment-success-header{
    background-color: #28a745;
}

.payment-success-title{
    font-weight: 600;
    font-size: 1.4em;
    color: white;
}
.checkmark__circle {
  stroke: #28a745;
  stroke-width: 2;
}

.checkmark__check {
  stroke: #28a745;
  stroke-width: 2;
  stroke-linecap: round;
}

@media (max-width: 576px) {
  #checkoutModal .modal-dialog {
    margin: 0;
    height: 100vh;
  }
  
  #checkoutModal .modal-content {
    height: 100vh;
    border-radius: 0;
  }
  
  #checkoutModal .modal-body {
    max-height: calc(100vh - 120px);
  }
}

.checkmark__circle {
  stroke: #28a745;
  stroke-width: 2;
}

.checkmark__check {
  stroke: #28a745;
  stroke-width: 2;
  stroke-linecap: round;
}

#success-message {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Remove existing .visible class handling */
#payment-error.d-block {
    display: block !important;
}


/* Container for custom form elements */
.stripe-style-input {
    position: relative;
    margin-bottom: 1.25rem;
}

/* Labels (if using explicit labels) */
.stripe-style-input label {
    display: block;
    font-size: 14px;
    color: #32325d;
    margin-bottom: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.error-message {
    color: rgb(223, 27, 65);
    font-size: 14px;
    margin-top: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: none;
}

.error-message.visible {
    display: block;
}

.stripe-style-input.error input {
    border-color: rgb(223, 27, 65);
    background-color: #fff6f8;
}

/* Input fields */
#payment_name, #payment_email {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: 16px;
     background-color: white;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(50, 50, 93, 0.03);
    transition: all 0.15s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    appearance: none;
    font-weight: 300;
}

/* Focus state */
#payment_name:focus, #payment_email:focus {
    outline: none;
    border-color: #2196F3;
    box-shadow: 0 1px 3px rgba(50, 50, 93, 0.08), 
                0 0 0 1px rgba(50, 151, 211, 0.1);
}

/* Placeholder text */
#payment_name::placeholder, #payment_email::placeholder {
    color: #aab7c4;
    opacity: 1; /* Firefox default is reduced */
}

/* Error state */
.stripe-style-input.error #payment_name,
.stripe-style-input.error #payment_email {
    border-color: #ff3860;
    background-color: #fff6f8;
}

/* Disabled state */
#payment_name:disabled, #payment_email:disabled {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

/* Autofill states */
#payment_name:-webkit-autofill,
#payment_email:-webkit-autofill {
    -webkit-text-fill-color: #32325d;
    box-shadow: 0 0 0px 1000px white inset;
    transition: background-color 5000s ease-in-out 0s;
}


.lien_list {
  list-style-type: none;  
}

/* Sticky lead bar */
.sticky-lead-bar {
  position: sticky;
  top: 0;
  z-index: 1030;
}

/* Resource card styling */
.resource-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.1);
}

/* Testimonial cards */
.testimonial-card {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
}

/* Lead magnet modal image */
.lead-magnet-img {
  background: url('/static/img/lead-magnet-visual.jpg') center/cover;
  border-radius: 5px 0 0 5px;
}


