@import url('variables.css');

/* ==========================================================================
   Base Landing Styles
   ========================================================================== */
html.landing-page, 
body.landing-page {
    font-family: 'Nunito', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
    
    font-size: 17px; /* Increased from 16px */
    line-height: 1.6;
}

html, body {
    background-color: var(--primary-100);
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;

    font-size: 14px;
}

.main-wrapper {
    min-height: calc(100vh - 70px); /* Account for navbar and footer height */
    padding-bottom: 0;
    padding: 0;
    margin-left: 0;
    margin-right: 0p;
}


.fs-small {
    font-size: 14px; 
}

.maxlength-counter {
    font-size: 12px; 
}

/* Call to action */
.btn-cta {
  color: black;
  background-color: white;
  box-shadow: 0 0 4px 4px rgba(255, 255, 255, 0.4);
  transition: box-shadow 0.3s ease;
  border: 0px solid transparent;
  padding: 1rem 2rem; 
}

.btn-cta:hover, .btn-shadow:active  {
  color: black !important;
  background-color: white !important;
  
  box-shadow: 0 0 4px 8px rgba(255, 255, 255, 0.4);
}
.btn-cta:active {
  background-color: var(--gold-200) !important;

}





.card-header-gradient {
    background: linear-gradient(to right, var(--primary-700), var(--primary-400));
    padding: 1.5rem;
    text-align: center;
}

/* Password toggle button styling */
.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: transparent;
    border: none;
    color: var(--primary-500);
    cursor: pointer;
}

/* Custom styling for input-group-text */
.input-group-text {
    background-color: var(--primary-100);
    border-color: var(--primary-200);
    color: var(--primary-500);
}

/* Link styling */
.auth-links {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.auth-links a {
    color: var(--primary-500);
    text-decoration: none;
    transition: color 0.2s;
}

.auth-links a:hover {
    color: var(--primary-600);
    text-decoration: underline;
}

.site-footer {
    background-color: var(--primary-500);
    color: white;
    font-size: 14px !important;
    padding: 2rem 2rem;
    margin-top: auto;
}

.nav-item .u-link,
.nav-item .btn {
    font-size: 16px !important;
} 

.navbar-brand {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: var(--primary-400);
}
.navbar-brand:hover {
    color: var(--primary-600);
}

.icon-svg {
    width: 2rem; /* Same as Font Awesome's default size */
    height: 2rem;
}
/* ==========================================================================
   Typography
   ========================================================================== */
.section-sub {
    font-size: 1.1rem;
    color: var(--primary-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    opacity: 1.0;
}

.section-header {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--primary-500);
    text-align: center;
    line-height: 1.2;
}

.lead {
    font-size: 1.6rem; /* Increased from 1.5rem */
    font-weight: 500;
    line-height: 1.4;
}

.sublead {
    font-size: 1.2rem; /* Increased from 1.2rem */
    font-weight: 600;
    color: rgb(255, 255, 255);
    line-height: 1.6;
}

.cta-header {
    font-size: 1.2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    opacity: 0.85;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .section-header {
        font-size: 2rem;
    }
    .lead {
        font-size: 1.4rem; 
    }
    .sublead {
        font-size: 1.2rem; 
    }
}






/* =========================================================================
   Section
   ========================================================================== */


.section {
    padding: 2rem 3rem;
    position: relative;
}
@media (max-width: 576px) {
    .section {
        padding: 2rem 1rem; /* Reduced padding for smaller screens */
    }
}




/* =========================================================================
   Hero Section
   ========================================================================== */


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
    color: #fff;
    padding: 4rem 4rem;
    position: relative;
}

/* Reduce horizontal padding on smaller screens */
@media (max-width: 1200px) {
    .hero-section {
        padding-bottom: 4rem; 
    }
}
@media (max-width: 576px) {
    .hero-section {
        padding:  4rem 1rem; 
        padding-bottom: 4rem; 
    }
}

.hero-section h1 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.1px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 4rem;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-height: 450px;
    max-width: 100%;
    object-fit: contain;
    background-color: transparent;
    width: 100%; /* Ensure the width adjusts dynamically */
    height: auto; 
}

.break-hero {
  display: none;
}

@media (min-width: 1550px) { /* Large screens */
  .break-hero {
    display: block;
  }
}



/* =========================================================================
   Hook Section
   ========================================================================== */


.feature-card {
    border-radius: 16px;
    box-shadow: 2px 8px 30px rgba(0,0,0,0.2);
    background: white;
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
    position: relative;
    padding: 0rem;
}

.feature-card .card-header {
    padding: 1.5rem;
    border: none;
}

.feature-card .card-body {
    padding: 0;
    background-color: transparent;

}


.card-img {
  height: 140px; 
  object-fit: contain; 
  width: 100%; 
}

.card-img.img-contain {
  object-fit: contain; 
  margin-bottom: 1rem;
}
.card-img.img-cover {
  object-fit: cover !important;
  border-top: 1px solid var(--primary-200);
}




/* =========================================================================
   Features Section
   ========================================================================== */


.features-container {
    padding: 0rem 3rem;
}
@media (max-width: 1200px) {
    .features-container {
        padding: 0rem 0rem; /
    }
}

.fadedown-section {
    background: linear-gradient(to bottom, #ffffff 0%, var(--primary-100) 100%);
}
.fadeup-section {
    background: linear-gradient(to bottom, var(--primary-100) 0%, #ffffff 100%);
}








/* =========================================================================
   CTA Section
   ========================================================================== */


.cta-section {
    background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
    color: #fff;
    padding: 4rem 4rem;
    position: relative;
}


@media (max-width: 768px) { /* Large screens */
  .cta-section {
    padding: 4rem 0rem;
  }
}




/* ==========================================================================
   FAQ Section
   ========================================================================== */


.faq-section {
    background-color: #ffffff;
    position: relative;
}


.accordion-body {
  font-size: 0.9rem !important; /* or any size you prefer */
} 

.accordion-item {
    border: 1px solid var(--primary-300);
}



.accordion-button {
    font-size: 1.0rem;
    font-weight: 600;
    color: var(--primary-600);
    background-color: transparent;
    padding: 2rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-500);
    background-color: var(--primary-50);
}

.accordion-body {
    padding: 1.5rem;
    font-size: 1.0rem; /* Increased from 1rem */
    background-color: transparent;
    color: black;
}






/* ==========================================================================
   Simple Pricing Cards
   ========================================================================== */
.pricing-card-simple {
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #eaeaea;
    height: 100%;
    transition: box-shadow 0.2s ease;
    font-size: 1.1rem; /* Added explicit body font size for pricing cards */
}

.pricing-card-simple:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.pricing-card-simple.highlight {
    border: 2px solid var(--primary-400);
    background-color: white;
}

.pricing-card-simple .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-500);
    margin: 1rem 0;
}

.pricing-card-simple .price-period {
    font-size: 1rem;
    color: var(--primary-400);
}

.pricing-card-simple .plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-600);
}

.pricing-card-simple .plan-badge {
    display: inline-block;
    background-color: var(--primary-100);
    color: var(--primary-600);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-card-simple .highlight-badge {
    background-color: var(--primary-200);
    color: var(--primary-700);
}

.pricing-card-simple ul.features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-card-simple ul.features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.1rem; /* Increased feature text size */
}

.pricing-card-simple ul.features li:before {
    content: "✓";
    color: var(--primary-400);
    position: absolute;
    left: 0;
}

.pricing-card-simple .cta-button {
    width: 100%;
    padding: 0.75rem;
    margin-top: 1rem;
}




.how-section {
    background-color: var(--primary-100);
    position: relative;
}



.pricing-section {
    background-color: #ffffff;
}




/* Fix button pointer events */
/* .btn {
    cursor: pointer !important;
    position: relative;
    z-index: 1;
}

.btn:hover {
    cursor: pointer;
} */

/* Ensure all links are clickable */
/* a {
    pointer-events: auto;
    position: relative;
    z-index: 1;
} */





.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    min-height: 200px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: none;
    position: relative;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
    font-size: 1.1rem; /* Added explicit font size for testimonials */
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 5rem;
    color: var(--primary-200);
    line-height: 1;
    font-family: serif;
    opacity: 0.5;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-500);
    position: relative;
    padding-left: 20px;
}

.testimonial-author::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background-color: var(--primary-400);
}


/* ==========================================================================
   Media Queries
   ========================================================================== */
   /* @media (max-width: 992px) {
    .section {
        padding: 2rem 0;
    }
    
    .hero-section {
        padding: 7rem 0 5rem;
    }
    
    .pricing-card.highlight {
        transform: translateY(-5px) scale(1.01);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 6rem 0 4rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .cta-section {
        padding: 2.5rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
} */