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

body {
    font-family: 'Montserrat', serif;
    background-color: #0C090B;
    overflow-x: hidden;
}

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

.montserrat-italic {
    font-style: italic;
}

/* Import font file for disruptors script*/
@font-face {
    font-family: 'Disruptors';
    src: url('/static/fonts/Disruptor-Regular.otf');
}

.disruptors {
    font-family: 'Disruptors', sans-serif;
}

.pink-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

.pink-effects-sm {
    display: none;
}

.pink-effects-background {
    background-image: url('/static/images/course-3-short/pink-effects-background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
}

.pink-effects-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.pink-effects-background > * {
    position: relative;
    z-index: 2;
}

/* Section 2 custom styling */
.section-2-image-wrapper {
    display: flex;
    align-items: flex-end;
}

.section-2-image-container {
    position: relative;
    width: 85%;
    margin-left: auto;
}

.section-2-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: bottom;
}

.section-2-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 15;
}

.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: #85003B;
    transform: scale(1.03); 
}

/* Background image for the first section */
.hero-section {
    background-color:#000000;
    /* Replace with your image path */
    background-size: cover;
    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;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: start;
    align-items: center;
    flex-direction: column;
    margin-bottom: 5rem;
}

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

.hero-subtitle {
    font-size: 32px;
    color: var(--white-text-3);
    text-transform: uppercase;
}

.left-section {
    padding-left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

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

.hero-details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-wrap: nowrap;
    margin-bottom: 3rem;
    color: var(--white-text-3);
}

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

.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 */
}

.motivation-text {
    margin-top: -3rem;
    margin-bottom: 4rem;
}


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

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

.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: 20px;
    font-size: 24px;
    border-radius: 8px;
    padding: 15px 35px;
}

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

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

.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: #3b1326;
    padding: 1.5rem;
    color: #EFECE7;
    border: none;
    max-width: 70%;
    border-radius: 8px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.agenda-content {
    line-height: 2rem;
}

.agenda-horizontal-line {
    width: 100%;
    height: 1px;
    background-color: #AD004E;
    margin: 1.5rem 0;
}

.section-3-custom {
    z-index:1000; 
    position: relative;
}

.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: #efece7f6;
    /* 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);
    }
}

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

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

.noto-serif-subtitle {
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.side-image {
    transform: translateY(15%);
    z-index: -15;
}

.info-card {
    background-color: #DAD6D8;
    border-radius: 8px;
    color: var(--red-accent);
    margin-bottom: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
}

.info-card-text {
    font-size: 20px;
    line-height: 2rem;

}

.info-card-text-accent {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 900;
}

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

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

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

.start-sign {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    transform: translateX(-11rem);
}

.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: 4rem;
    margin-top: 1rem;
    width: auto;
    cursor: pointer;
}

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

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

.pricing-subsection {
    background-color: rgba(173, 0, 78, 0.55);
    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);
}

.pricing-header {
    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: row;
    align-items: center;
    justify-content: space-between;
}

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

.price {
    font-size: 38px;
}

.currency {
    font-size: 38px;
}

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

.section-2-custom {
    text-align: left;
}

.section-2-text-column {
    margin-bottom: 6rem;
    text-align: left;
    font-size: 20px;
}

.section-2-text-column-heading {
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.section-2-5-custom {
    padding-bottom: 0;
}

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

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

.foot-note {
    margin-top: 4rem;
    margin-bottom: 5rem;
    text-align: center;
}

.foot-note-text {
    color: var(--white-text-2);
    font-size: 16px;
    margin-bottom: 1rem;
}

.instagram-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.instagram-handle {
    color: #F0006C;
    font-size: 16px;
    text-decoration: none;
}

.results-section {
    background-color: #640430;
    padding: 80px 0;
    padding-bottom: 0;
    color: var(--white-text);
}

.results-description {
    max-width: 90%;
    margin: 0 auto 3rem auto;
}

.instagram-icon-large {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.results-instagram-text {
    font-weight: 600;
    letter-spacing: 1px;
}

.instagram-handle-link:hover {
    color: #d10062;
    text-decoration: underline;
}

.results-image {
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.4);
}



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

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

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

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

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

.agenda-title {
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 0.5rem;
}

.agenda-subtitle {
    text-align: center;
    font-weight: 300;
    font-size: 24px;
    margin-bottom: 1rem;
    color: var(--white-text-3);
    text-transform: uppercase;
}

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

.info-card-2 {
    background-color: #DAD6D8;
    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-2-text {
    font-size: 18px;
}

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

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

.section-benefits {
    position: relative;
    background-color: #2C0F1C;
    color: #FFF;
    margin-top: -8rem;
    padding-top: 0;
    padding-bottom: 50px;
    z-index: 25;
}

.benefits-subheading {
    color: var(--white-text-2);
    font-size: 20px;
    font-weight: 700;
}

.benefits-horizontal-line {
    width: 80%;
    height: 2px;
    background-color: var(--red-accent);
    margin: 1.5rem 0;
}

.benefits-bullet-points {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 400;
    line-height: 2.5rem;
}

.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-3-long/tier-background.png');
    background-size: cover;
    position: relative;
}

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

.tier-main-point {
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.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: 8rem;
}

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

}

.tier-card-black{
    background: linear-gradient(45deg,#351726, #512138);
    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: 24px;
}

.start-sign-wrapper {
    margin-bottom: 2rem;
}

.discount-cross {
    position: absolute;
    top: -8%;
    left: 0%;
    width: 3rem;
    height: auto;
}

.installment-note-container {
    margin-top: 1rem;
    margin-bottom: 2rem;
    border: 1px solid var(--white-text-2);
    padding: 1rem;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
}

.installment-note-text {
    color: var(--white-text-2);
    font-size: 16px;
}

.discount-cross-euro {
    position: absolute;
    top: -8%;
    left: 16%;
    width: 3rem;
    height: auto;
}

.currency {
    font-size: 24px;
}

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

.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;
}

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

@media (max-width: 1024px) {
    .gradient-hero-overlay {
        height: 20%;
    }

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

    .cards-container-2 {
        margin-top: -1rem;
        width: 90%;
        z-index: 0;
        transform: translateX(0);
    }

    .info-section {
        padding-top: 0;
    }

    .info-section-2-overlay-bottom {
        height: 20%;
    }

    .info-section-2-image-container {
        transform: translateX(0); 
        z-index: 1;
    }
    .info-card-2-text-accent {
        font-size: 16px;
    }
    .info-card-2-text {
        font-size: 16px;
    }
    .info-card-2 {
        margin-bottom: 2rem;
        padding: 1rem;
        z-index: 2;
    }
    .info-card-2-inset{
        transform: translate(0%);
    }
    .info-section-2-image-container {
        max-width: 65%;
        z-index: 1;
    }

    .start-sign {
        font-size: 24px;
        transform: translateX(0);
    }

    .pink-effects {
        display: none;
    }
    .pink-effects-background {
        background-image: url('/static/images/course-3-short/pink-effects-background-mobile.png');
    }
    .side-image {
        transform: scale(1.2) translateY(15%);
    }

    .pink-effects-sm {
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 170%;
        z-index: 3;
    }

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

    .pink-effects-background::before {
        content: none;
    }

    .section-2-image-wrapper {
        order: 2;
    }

    .foot-note {
        margin-top: 0;
        margin-bottom: 0;
    }

    .results-section {
        padding: 50px 20px;
        padding-bottom: 0;
    }

    .motivation-text {
        margin-top: -1rem;
    }
    
    .section-2-5-custom {
        padding-top: 0;
    }

    .results-description {
        font-size: 16px !important;
        max-width: 100%;
    }
    
    .instagram-handles {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .results-instagram-text {
        font-size: 14px !important;
    }

    .section-2-overlay {
        height: 15%;
    }
    .section-2-text-column {
        order: 1;
        margin-bottom: 2rem;
        font-size: 16px;
        padding: 0 3rem;
    }

    .section-2-text-column-heading {
        font-size: 16px;
    }

    .section-2-image-container {
        width: 70%;
        margin: 0 auto;
    }

    .section-2-image {
        max-width: 100%;
    }

    .section-2-custom {
        overflow-x: hidden;
        padding: 50px 20px !important;
        font-size: 16px !important;
        text-align: center !important;
    }

    .left-section {
        padding-left: 0;
        align-items: center;
    }

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

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

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

    /* 
    .side-image {
        transform: scale(1.4);
    } */

    .button-holder {
        display: flex;
        justify-content: center;
    }

    .hero-section {
        background-color: #000000;
        padding: 1rem 1rem;
        overflow: hidden;
        min-height: 46rem;
        background-position: bottom;
    }

    .benefits-bullet-points {
        font-size: 16px;
        line-height: 2rem;
    }

    .hero-details {
        margin-bottom: 0rem;
    }

    .hero-title {
        text-align: center;
        font-size: 40px;
        font-weight: 900;
        text-wrap: wrap;
        margin-top: 0;
    }

    .hero-subtitle {
        font-size: 20px;
        font-weight: 400;
        text-transform: uppercase;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .slogan {
        text-align: center;
        font-size: 60px;
        text-wrap: wrap;
    }

    .hero-button {
        position: absolute;
        bottom: 6%;
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .agenda-card {
        max-width: 90%;
    }

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

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

    .agenda-subtitle {
        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 {
        font-size: 18px;
    }

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

    .checkout-modal-overview-headilne {
        margin-top: 0 !important;
    }
}

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

.star-icon {
    width: 10%;
    transform-origin: center;
    transition: transform 0.1s ease;
}

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

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


@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: #AD004E;
    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: #85003B;
    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;
}