
/* Override primary and secondary colors */
:root {
    --white-text: #F9F5EE;
    --white-text-2: #EFECE7;
    --red-accent: #A00C0C;
    --btn-primary: #A00C0C;
    --white-text-3: #d1c3c1;
}

body {
font-family: 'Montserrat', serif;
background-color: #230505;
}

.text-color-white-3 {
    color: var(--white-text-3);
}

/* Background image for the first section */
.hero-section {
background-image: url('/static/images/course-2-long/hero-background.png'); /* Replace with your image path */
background-size: cover;
background-repeat: no-repeat;
color: #fff; /* Make text color white for contrast */
padding: 10px 0; /* Add some padding */
position: relative; /* Ensure the overlay is positioned relative to the hero section */
overflow: hidden;
}
.hero-content {
display: flex;
align-items: start;
align-items: center;
flex-direction: column;
}

.hero-title {
font-size: 52px;
font-weight: 700;
margin-top: 4rem;
text-transform: uppercase;
white-space: nowrap;
color: var(--white-text);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 3rem;
}

.hero-icon {
    margin-right: 1rem;
}

.slogan {
    font-size: 24px;
    margin-bottom: 1rem;
    color: var(--white-text-3);
    white-space: nowrap;
}


.left-section {
    padding-left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    z-index: 2;
    transform: translateX(5%);
}

.header-container {
    height: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.logo-container{
    transform: translateX(-30%);
}

.logo {
    /* margin-top: -5rem; */
    animation: scaleUp 1s ease-out forwards; /* Customize duration and easing as needed */
    transform-origin: center; /* Keep the scale centered */
    opacity: 0; /* Initial state */
}


.section-title {
    text-align: center;
    margin-top: 2rem;
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--white-text);
}

.hero-horizontal-line {
    width: 100%;
    height: 1px;
    background-color: var(--red-accent);
    margin: 2rem 0;
}

.hero-button {
    display: inline-block;
    cursor: pointer;
    background-color: var(--red-accent);
    text-transform: uppercase;
    text-decoration: none;
    z-index: 2;
    color: var(--white-text);
    letter-spacing: 2px;
    position: relative;
    margin-top: 3rem;
    font-size: 24px;
    border-radius: 8px;
    padding: 15px 15px;
}

.hero-button:hover {
    background-color: #8a0a0a;
    transform: scale(1.03); 
}

.hero-button-mobile:hover {
    background-color: #8a0a0a;
    transform: scale(1.03); 
}

/* Custom CSS for styling sections and footer */
.section {
padding: 50px 0;
text-align: center;
overflow: hidden;
}

.gold-text{
    color: #FBE5BF;
}

.infographics-container{
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.section-2-text-col {
    order: 3;
    color: var(--white-text);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    text-align: left;
    line-height: 2.6;
    z-index: 2;
}

.footer {
padding: 20px 0;
text-align: center;
background-color: #f8f9fa;
}

.icon {
font-size: 2.5rem;
color: var(--bs-primary);
margin-bottom: 10px;
}

/* Custom styling for agenda cards */
.agenda-card {
text-align: left;
margin: 1rem auto;
background-color: #41292a;
padding: 1.5rem;
color: #EFECE7;
border: none;
max-width: 60%;
border-radius: 8px;
box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
transition: transform 0.3s ease;
}

.agenda-horizontal-line {
    width: 100%;
    height: 1px;
    background-color: var(--red-accent);
    margin: 1.5rem 0;
}

.agenda-card:hover {
transform: translateY(-5px);
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}

.agenda-card .card-title {
font-size: 1.25rem;
font-weight: bold;
color: #007bff;
}
/* Ensures each card has consistent height and the content is distributed vertically */
.card-body {
display: flex;
flex-direction: column;
}


 /* Loading Spinner Styles */
 .spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e4e1dc; /* Light background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top */
  }

  .spinner {
    background-position: center;
    animation: pulse 1s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @keyframes pulse {
    0% {
      transform: scale(0.9);
    }
    50% {
      transform: scale(1);
    }
    100% {
      transform: scale(0.9);
    }
  }


.gradient-hero-overlay {
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(0deg, #230505, #23050500);
}

/* Override the primary button color */
.btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.btn-primary:hover {
    background-color: #e51b5e !important; /* Adjust hover state if needed */
    border-color: #e51b5e !important;
}

.side-image {
    transform: translateY(2%);
}

.section-2-side-img{
    transform: translateY(5%);
    overflow: hidden;
}

.info-card {
    background-color: #E7E0D4E5;
    border-radius: 8px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
    color: var(--red-accent);
    margin-bottom: 4rem;
    padding: 1.5rem;
}

.info-card-text {
    font-size: 18px;
}

.info-card-text-accent {
    font-size: 20px;
    font-weight: 800;
}

.section-4-text{
    color: var(--white-text);
    font-size: 24px;
}

.cards-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-self: end;
    margin-top: 3rem;
    width: 100%;
    z-index: 2;
    transform: translateX(15%);
}

.instagram-link {
    color: #A00C0C; /* Change this to your desired color */
    text-decoration: none; /* Optional: removes underline */
}

.instagram-link:hover {
    color: #cc0000; /* Optional: changes color on hover */
}

.info-card-inset{
    transform: translate(50%);
}

.info-section-image-container {
    transform: translateY(20%); 
    z-index: 1;
}

.info-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    padding-top: 3rem;
    background-image: url('/static/images/course-2-long/background-2.png');
    background-size: cover;
}

.info-section-overlay-top {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 10%;
    background: linear-gradient(0deg, #230505 0%, #23050500 90%);
}

.info-section-overlay-bottom {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, #230505, #23050500);
    transform: translateY(-100%);
}

.pricing-subsection {
    background-color: #A00C0C8C;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.5);
}

.agenda-title{
    font-size: 20px;
    text-align: center;
}

.pricing-header {
    margin-bottom: 2rem;
    font-size: 40px;
    text-transform: uppercase;
}

.price-container {
    color: #F9F5EE;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
}

.price-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.tier-section {
    background-image: url('/static/images/course-2-long/background3.png');
    background-size: cover;
    position: relative;
}
.text-left {
    text-align: left;
}

.tier-section-overlay{
    height:30% !important;
}

.tier-card {
    background-color: #231E19;
    border-radius: 8px;
    margin-bottom: 2rem;
    padding: 1.5rem;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

.tier-section-row{
    width: 80%;
}

.tier-name {
    font-size: 24px;
    font-weight: 800;
    margin-top: 1rem;
    text-transform: uppercase;
}

.tier-header{
    min-height: 10rem;
}

.tier-horizontal-line {
    width: 100%;
    height: 3px;
    background-color: var(--red-accent);
    margin-bottom: 1.5rem;

}

.tier-card-black{
    background: linear-gradient(45deg,#2f0606, #3a2122);
    color: #F9F5EE;
}

.tier-content {
    text-align: left;
    font-size: 16px;
    font-weight: 400;
}

.tier-content-accent {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 800;
}

.tier-card-gold{
    background: linear-gradient(90deg, #523D28, #8b734f);
    color: #F9F5EE;
}

.discounted-price {
    position: relative;
    font-size: 28px;
}

.discount-cross {
    position: absolute;
    top: 2%;
    left: 0%;
}

.price {
    font-size: 48px;
}

.currency {
    font-size: 40px;
}

.currency-small {
    font-size: 32px;
}

.pricing-button {
    background-color: var(--red-accent);
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight:600;
    margin-bottom: 2rem;
    margin-top: 2rem;
    width: auto;
    cursor: pointer;
}

.buy-button-row{
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-button-mobile{
    display: none;
}

.pricing-button:hover {
    background-color: #8a0a0a;
    transform: scale(1.03); 
}

.section-2-text-accent{
    text-transform: uppercase;
}

.random-sentence {
    font-size: 24px;
    font-weight: 400;
    margin-top: 2rem;
    color: var(--white-text);
}

.pricing-text {
    max-width: 70%; 
    font-size: 24px;
}

.scroll-button{
    position: absolute;
    bottom: 40%;
    background-color: var(--red-accent);
    color: white;
    padding: 1rem 0.5rem;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    z-index: 999;
}

.scroll-button:hover {
    background-color: #8a0a0a;
    transform: scale(1.03); 
}

.sold-out-button {
    background-color: #6c757d;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight:600;
    margin-bottom: 2rem;
    margin-top: 2rem;
    width: auto;
    cursor: pointer;
}

@media (max-width: 768px) {
    .left-section {
        padding-left: 0px;
        padding-right: 0px;
        align-items: center;
        text-align: center;
        transform: translateX(0);
    }

    .hero-content {
        align-items: center;
    }

    .logo-container{
        transform: translate(0);
    }

    .header-container {
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gradient-hero-overlay {
        height: 10%;
    }

    .side-image {
        max-width: 80%;
    }

    .slogan {
        font-size: 24px;
        margin-bottom: 1rem;
        color: var(--white-text-3);
        white-space: normal;
    }
    
    .section-2-text-col {
        line-height: 1.6;
        text-align: center;
        order: 1;
    }

    .section-2-text-accent {
        margin-top: 2rem;
        font-weight: 700;
        color: #CF2A2A;
    }

    .pricing-header {
        font-size: 24px;
    }

    .pricing-text {
        max-width: 90%;
        font-size: 14px;
    }

    .button-holder {
        display: flex;
        justify-content: center;
    }
    .hero-section {
        background-image: url('/static/images/course-2-short/hero-background-mobile.png');
        background-position: bottom;
        padding: 1rem 1rem;
        overflow: hidden;
        min-height: 12rem;
    }

    .hero-title {
        text-align: center;
        font-size: 40px; 
        font-weight: 900;
        margin-top: 0px;
        white-space: normal;
    }
    .hero-details {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-wrap: nowrap;
    }
    .hero-subtitle {
        font-size: 16px;
        font-weight: 400;
        max-width: 90%;
        text-transform: none;
    }
    .section-title {
        font-size: 24px;
        margin-top: 0;
    }
    .hero-button {
        display: none; 
    }
    .hero-button-mobile {
        display: inline-block;
        position: absolute;
        bottom: 1rem;
        padding: 1rem 2rem;
        cursor: pointer;
        background-color: var(--red-accent);
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 8px;
        z-index: 2;
        color: var(--white-text);
        letter-spacing: 2px;
    }
    .section-2-side-img{
        transform: translateY(5%);
        overflow: hidden;
        max-width: 70%;
    }
    .agenda-card {
        max-width: 90%;
    }
    .hero-horizontal-line {
        width: 100%;
        height: 1px;
        background-color: var(--red-accent);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .agenda-title {
        text-align: center;
        font-size: 18px;
    }
    .info-img-column {
        order: 2 !important;
    }
    
    .info-txt-column {
        display: flex;
        justify-content: center;
        align-items: center;
        order: 1 !important;
    }

    .cards-container {
        margin-top: -1rem;
        width: 90%;
        z-index: 0;
        transform: translateX(0);
    }
    .info-section-overlay-bottom {
        height: 20%;
    }

    .info-section-image-container {
        transform: translateX(0); 
        z-index: 1;
    }
    .info-card-text-accent {
        font-size: 16px;
    }
    .info-card-text {
        font-size: 16px;
    }
    .info-card {
        margin-bottom: 2rem;
        padding: 1rem;
        z-index: 2;
    }
    .info-card-inset{
        transform: translate(0%);
    }
    .info-section-image-container {
        max-width: 65%;
        z-index: 1;
    }
    .section-4-text{
        color: var(--white-text);
        font-size: 16px;
        line-height: 1.7;
    }
    .price-details {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .checkout-modal-overview-headilne{
        margin-top:0 !important;
    }
    .mobile-no-padding{
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .tier-section-row{
        width: 100%;
    }
    .tier-header{
        min-height: 0rem;
    }
    .tier-horizontal-line {
        width: 100%;
        height: 3px;
        background-color: var(--red-accent);
        margin-bottom: 1.5rem;
        margin-top: 1.5rem;
    
    }
}

.horizontal-line {
    border-top: 3px solid #FAF5EE;
    min-width: 60%;
    margin-bottom: 2.5rem;
    z-index: 1;
}

.info-img-column {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2;
}

.info-txt-column {
    order: 1;
}


@keyframes scaleUpMobile {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    100% {
        transform: scale(0.7);
        opacity: 1;
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.btn-modal-cross{
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1rem;
}


/* Left Column Styling */
.checkout-left {
    background-color: #f8f9fa; /* Light gray */
    min-height: 100%; /* Full modal height */
  }
  
  /* Right Column Styling */
  .checkout-right {
    background-color: var(--white-text-2); /* Dark gray */
    color: white; /* White text */
    min-height: 100%; /* Full modal height */
  }
  
  .checkout-right .btn {
    background-color: #ffc107; /* Custom color for the button */
    border: none;
    color: black;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .checkout-right .btn:hover {
    background-color: #e0a800; /* Slightly darker on hover */
  }
  
  .checkoout-headline {
    font-size: 14px;
    font-weight: 700;
    color: black;
    text-transform: uppercase;
  }

  .checkout-modal-overview-headilne {
    font-size: 16px;
    font-weight: 300;
    color: black;
    text-transform: uppercase;
    margin-top: 4rem;
    margin-bottom: 3rem;
    margin-left: 2rem; 
  }

  .to-payment-button {
    display: inline-block;
    background-color: #A00C0C;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;    
    margin-top: 1rem;
    width: auto;
    cursor: pointer;
    border: none;
  }

  .to-payment-button:hover {
    background-color: #8a0a0a;
    transform: scale(1.03); 
  }

  .checkout-overview-horizontal-line{
    width: 100%;
    height: 1px;
    background-color: black;
    margin: 1.5rem 0;
  }

  .checkout-overview-container{
    color:black;
  }
  
  .close-modal-button {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    font-size: 1.5rem;
    color: black;
    cursor: pointer;
  }