@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Paytone+One&display=swap');

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

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 1px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--text);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--action);
}

body {
    background-color: var(--background);
    color: var(--text);

    font-family: "Outfit", sans-serif;

    --background: #0F0D0E;
    --text: #F9F4DA;
    --action: #FCBA28;
    --shadow: #131313;
    --placeholder: #f9f4dab2;
    --theme1: #0BA95B;
    --theme2: #12B5E5;
    --theme3: #7B5EA7;
    --theme4: #F38BA3;
    --theme5: #FC7428;
    --theme6: #ED203D;
    --font-header1: 48px "Paytone One", sans-serif;
    --font-header2: 36px "Outfit", sans-serif;
    --font-header3: 25px "Outfit", sans-serif;
    --font-text: 16px;
    --borderradius: 30px;
    --letterspacing: .5px;

    cursor: url('../img/cursors/color-goldenrod-cursor.png'), auto;
}

h1 {
    font: var(--font-header1);
    letter-spacing: var(--letterspacing);
    font-weight: 800;
}

h2 {
    font: var(--font-header2);
    font-weight: 600;
}

h3 {
    font: var(--font-header3);
    letter-spacing: var(--letterspacing);
    font-weight: 700;
}

p {
    font-size: var(--font-text);
    letter-spacing: var(--letterspacing);
}

a {
    text-decoration: none;
    color: inherit;
    cursor: url('../img/cursors/color-goldenrod-pointer.png'), auto;
    letter-spacing: var(--letterspacing);
}

li {
    list-style-type: none;
}

input {
    outline: none;
    border: none;
    background-color: transparent;
    color: var(--text);
    border: 3px solid var(--action);
    padding: 15px 20px;
    font-size: var(--font-text);
    border-radius: var(--borderradius);
    font-size: 16px;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 60px #0F0D0E inset !important;
    -webkit-text-fill-color: var(--text) !important;
}

textarea {
    outline: none;
    border: none;
    background-color: var(--background);
    color: var(--text);
    border: 3px solid var(--action);
    padding: 20px;
    font-size: var(--font-text);
    border-radius: var(--borderradius);
    resize: none;
    width: 300px;
    height: 150px;
    font-size: 16px;
    font-family: "Outfit", sans-serif;
    color: var(--text);
}

textarea::placeholder {
    color: var(--placeholder);
}

button {
    border: none;
    outline: none;
    cursor: url('../img/cursors/color-goldenrod-pointer.png') auto;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: var(--borderradius);
    background-color: var(--action);
    color: var(--background);
    text-decoration: none;
    font: var(--font-header3);
    font-weight: 600;
    letter-spacing: var(--letterspacing);
    transition: 400ms ease-in-out;
    border: 3px solid var(--action);
}

.btn:hover {
    background-color: var(--background);
    color: var(--action);
    transition: 400ms ease-in-out;
}

.btn-light {
    display: inline-block;
    padding: 15px 35px;
    border-radius: var(--borderradius);
    background-color: var(--action);
    color: var(--background);
    text-decoration: none;
    font: var(--font-text);
    font-weight: 600;
    letter-spacing: var(--letterspacing);
    transition: 400ms ease-in-out;
    border: 3px solid var(--action);
}

.btn-light:hover {
    background-color: var(--background);
    color: var(--action);
    transition: 400ms ease-in-out;
}

.btn-outline {
    display: inline-block;
    padding: 15px 35px;
    border-radius: var(--borderradius);
    border: 3px solid var(--action);
    color: var(--action);
    text-decoration: none;
    font: var(--font-text);
    font-weight: 600;
    letter-spacing: var(--letterspacing);
    transition: 300ms ease-in-out;
}

.btn-outline:hover {
    background-color: var(--action);
    color: var(--background);
    border: 3px solid var(--action);
    transition: 300ms ease-in-out;
}

.link {
    color: var(--action);
    text-decoration: underline;
}

@media screen and (max-width: 600px) {

    body {
        min-height: 100svh;
        --font-header1: 30px "Paytone One", sans-serif;
        --font-header2: 20px "Outfit", sans-serif;
        --font-header3: 16px "Outfit", sans-serif;
        --font-text: 13px;
        --borderradius: 25px;
        --letterspacing: .5px;
    }

    a {
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
    }

    .btn-light {
        padding: 10px 20px;

    }

    .btn-outline {
        padding: 10px 20px;
    }

    input {
        padding: 10px 20px;
    }
}

/* Animations  */

@media screen and (min-width: 600px) {

    .fade-in {
        opacity: 0;
        transition: opacity 1.4s ease-out;
    }

    .fade-in.visible {
        opacity: 1;
    }
}

/* Header ------------------------------------- Header */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    width: 100%;
    position: absolute;
    top: 0;
}

.logo {
    height: 55px;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--action);
    font-weight: 600;
}

main {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 50px;
    margin-top: 150px;
    gap: 150px;
    overflow: hidden;
}

.overlay-register {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f0d0ef2;
    justify-content: center;
    align-items: center;
    z-index: 10;
}


.overlay-content {
    background-color: var(--background);
    padding: 30px;
    border-radius: var(--borderradius);
    position: relative;

}

.form-register {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 30px;
}

.socials-login {
    display: flex;
    gap: 15px;
}

.social-login {
    border-radius: var(--borderradius);
    background-color: var(--background);
    padding: 10px 20px;
    color: var(--action);
    font-size: var(--font-text);
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
    border: 2px solid var(--action);
    cursor: url('../img/cursors/color-goldenrod-pointer.png') 2 2, auto;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
}


/*  Homepage - Hero ---------------------- Homepage - Hero */

.hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    width: 460px;
    text-align: center;
}

.hero-content img {
    height: 250px;
}

.yellow {
    color: var(--action);
    font-size: 17px;
}

.para-review {
    position: absolute;
    width: 250px;
    padding: 10px;
    border-radius: var(--borderradius);
    transition: transform 300ms ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background-color: var(--shadow);
}

.para-review-text {
    text-align: center;
}

.para-review-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.para-review-img {
    width: 27px;
    height: 27px;
}

.para-review-text p {
    font-size: 17px;
    color: var(--placeholder);
}

.para-review-info span {
    font-size: 12px;
}

.para-review-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.para-review img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 100%;
}

.para-one {
    top: 100px;
    right: 30px;
    transform: rotate(15deg);
}

.para-two {
    top: 400px;
    right: 10px;
    transform: rotate(15deg);
}

.para-three {
    top: 100px;
    left: 30px;
    transform: rotate(-15deg);
}

.para-four {
    top: 400px;
    left: 30px;
    transform: rotate(-15deg);
}

/*  Homepage - Cards ---------------------- Homepage - Cards  */

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 1100px;
}

.card {
    width: 320px;
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    transition: 300ms ease;
    border-radius: var(--borderradius);
}

.card img {
    width: auto;
    height: 100px;
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.time {
    display: flex;
    align-items: center;
    gap: 3px;
    position: absolute;
    bottom: 65px;
    font-weight: 700;
}

.level {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 30px;
}

.level span {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid var(--text);
}

.level-active {
    background-color: var(--text);
}

.theme1 {
    background-color: var(--theme1);
}

.theme2 {
    background-color: var(--theme2);
}

.theme3 {
    background-color: var(--theme3);
}

.theme4 {
    background-color: var(--theme4);
}

.theme5 {
    background-color: var(--theme5);
}

.theme6 {
    background-color: var(--theme6);
}

/*  Homepage - Teaser -----------------------  Homepage - Teaser */

.teaser {
    background-image: url(../img/illustrations/ooorganize.svg);
    background-position: center;
    height: 700px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.teaser-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.teaser-video {
    background-color: var(--shadow);
    height: auto;
    width: 100%;
    margin: 0 auto;
    max-width: 855px;
    border-radius: var(--borderradius);
    overflow: hidden;
}

.teaser-video video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.quote-img {
    height: 100%;
    width: 750px;
}

.quote-img-mobile {
    display: none;
}

/*  Homepage - Reviews ---------------------- Homepage - Reviews */

.review-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--background);
    border-radius: var(--borderradius);
    color: var(--text);
}

.review-block {
    background-color: var(--shadow);
    color: var(--text);
    padding: 100px;
    border-radius: var(--borderradius);
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.review-block h3 {
    color: var(--action);
}

.review-block ul {
    font-size: 19px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-block ul li img {
    height: 20px;
    rotate: 40deg;
}

.review-books {
    position: absolute;
    right: 150px;
    top: 70px;
    width: 80px;
    height: 80px;
}

.review-block li {
    display: flex;
    gap: 10px;
}

.review-cards {
    display: flex;
    translate: -250px;

}

.review-card {
    width: 400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 15px;
    box-shadow: var(--background) 5px 5px 0px 3px;
    border-radius: var(--borderradius);
}

.rotate-right {
    rotate: 4.5deg;
    z-index: 3;
}

.rotate-left {
    rotate: -4.5deg;
}

.review-card-top {
    display: flex;
    gap: 10px;
    align-items: center;
}

.review-card-top img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* About --------------------------------------------  About */

.about {
    display: flex;
    max-width: 1000px;
    flex-direction: column;
    gap: 60px;
    padding: 50px;
    margin-top: 50px;
}

.about-txt {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-profiles {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.profiles {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.profile {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    align-items: center;
}

.profile img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 3px solid var(--action);
}

/* Tearms --------------------------------------------- Tearms  */

.tearms {
    display: flex;
    max-width: 1000px;
    flex-direction: column;
    gap: 60px;
    padding: 50px;
    margin-top: 50px;
}

.tearms-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tearms-txts {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.tearms-txt {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tearms-txt ul {
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tearms-txt li {
    list-style: disc;
}

/* Reviews -------------------------------------------- Reviews */

.reviews {

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    gap: 60px;
    padding: 50px;
    margin-top: 50px;
}

.reviews-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}



/* Course ----------------------------------------------------  Course */

.container {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1300px;
    position: relative;
}

.timeline {
    width: 35%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.steps {
    display: flex;
    flex-direction: column;
    padding-left: 13px;
    gap: 50px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-header h3 {
    color: var(--action);
}

.step-content {
    padding-left: 60px;
}

.circle {
    background-color: var(--background);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 5px solid var(--action);
    z-index: 2;
}

.active {
    background-color: var(--action);
}

.disable {
    opacity: 50%;
}

.line {
    width: 0px;
    height: 460px;
    border: 3px solid var(--action);
    position: absolute;
    left: 30px;
    top: 80px;
}

.course {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.course-btn {
    position: absolute;
    bottom: -50px;
    right: 0px;
}

.btn-prev {
    margin-right: 10px;
}

video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.play {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--action);
}

.play-icon {
    font-size: 100px;
}

#overlay-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f0d0ea6;
    display: none;
    border-radius: 10px;
}

#video-player {
    position: relative;
    width: 100%;
    height: 100%;
}

#start-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    outline: none;
    border: none;
    cursor: pointer;
    z-index: 3;
}

/* iconify-icon {
    cursor: url('../img/cursors/color-goldenrod-pointer.png'), auto;
} */

/* Course Done - Overlay */

.overlay-final {
    display: none;
    position: fixed;
    z-index: 3;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0f0d0ece;
}

.modal-final {
    position: relative;
    margin: 2% auto;
    padding: 30px;
    width: 95%;
    height: 95%;
    background-color: var(--background);
    background-image: url(../img/content/confetti_overlay2.png);
    background-position: center;
    background-size: contain;
    border-radius: var(--borderradius);
}

.modal-final-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.txt-final {
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 15px;
}

.final-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.form-final {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.input-final {
    width: 300px;
}

.input-final::placeholder {
    color: var(--placeholder);
}

.img-final {
    width: 250px;
    height: 100%;
}

/* Footer ---------------------------------------------  Footer */

footer {
    width: 100%;
    padding: 0 30px;
    margin-top: 100px;
}

.footer-content {
    height: 300px;
    width: 100%;
    display: flex;
    background-color: #131313;
    border-radius: var(--borderradius);
}

.footer-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.footer-info a {
    text-decoration: underline 2px;
    padding: 10px;
}

.footer-info ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-newsletter {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.footer-newsletter-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-newsletter-title img {
    height: 40px;
}

.footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: var(--borderradius);
}

#newsletter-message {
    position: absolute;
    bottom: 30px;
    font-size: 13px;
}

.form-grp {
    display: flex;
    gap: 15px;
}

.footer-credit {
    display: flex;
    justify-content: center;
    height: 70px;
    align-items: center;
}

.footer-credit span {
    color: var(--action);
    font-size: 12px;
}

/* Responsive (Media Queries) -------------------------- Responsive (Media Queries) */

@media screen and (max-width: 1175px) {

    .review-section {
        position: relative;
        height: 600px;
    }

    .para-review {
        display: none;
    }

    .review-books {
        display: none;
    }

    .review-block {
        padding: 30px;
    }

    .review-cards {
        position: absolute;
        bottom: 0;
    }

    .course {
        width: 60%;
    }

    .timeline {
        width: 40%;
    }
}

@media screen and (max-width: 980px) {

    main {
        margin-top: 100px;
        padding: 30px;
    }

    .homepage {
        margin-top: 130px;
    }

    .logo {
        height: 45px;
    }

    /* TEASER */

    .teaser-video {
        width: 100%;
    }

    /* FOOTER */

    .footer-content {
        flex-direction: column-reverse;
        gap: 60px;
        height: 100%;
        padding: 50px;
    }

    /* ABOUT */

    .profiles {
        flex-direction: column;
        gap: 60px;
    }

    /* COURSE */

    .container {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .timeline {
        width: 100%;
        padding-bottom: 100px;
    }

    .course {
        width: 100%;
        gap: 15px;
    }

    .course-btn {
        position: absolute;
        bottom: 15px;
        right: 30px;
    }
}

@media screen and (max-width: 750px) {

    .review-cards {
        bottom: -100px;
    }
}

@media screen and (max-width: 600px) {

    body {
        min-height: 100svh;
    }

    main {
        padding: 15px;
        gap: 100px;
        margin-top: 85px;
    }

    /* HOMEPAGE - HEADER */

    header {
        height: 85px;
        padding: 0px 15px;
    }

    .logo {
        height: 35px;
    }

    .overlay-content {
        padding: 0px;
    }

    /* HOMEPAGE - HERO */

    .hero {
        width: 300px;
    }

    .hero img {
        height: 180px;
    }

    /* HOMEPAGE - CARDS */

    .cards {
        gap: 30px;
    }

    .card {
        width: 100%;
        height: 220px;
        padding: 30px;
    }

    .remove {
        display: none;
    }

    .card img {
        width: auto;
        height: 70px;
        position: absolute;
        right: 30px;
        bottom: 20px;
    }

    .time {
        bottom: 50px;
    }

    .level {
        display: flex;
        gap: 10px;
        position: absolute;
        bottom: 20px;
    }

    .level span {
        width: 20px;
        height: 20px;
    }

    /* HOMEPAGE - TEASER */

    .teaser-content {
        gap: 15px;
    }

    .teaser {
        background-image: none;
        height: 100%;
    }

    /* HOMEPAGE - QUOTE */

    .quote-img {
        display: none;
    }

    .quote-img-mobile {
        height: 100%;
        width: 100%;
        display: block;
    }

    /* HOMEPAGE - REVIEWS */

    .review-section {
        height: 600px;
        overflow: hidden;
        width: 100vw;
        padding: 15px;
    }

    .review-block {
        padding: 15px;
        width: 100%;
    }

    .review-cards {
        bottom: 50px;
    }

    .review-card {
        padding: 20px;
        width: 300px;
    }

    .review-card p {
        font-size: 12px;
    }


    /* ABOUT */

    .about {
        padding: 0 15px;
        margin-top: 0;
    }

    /* TEARMS */

    .tearms {
        padding: 0 15px;
        margin-top: 0;
    }

    .tearms-txts {
        gap: 30px;
    }

    /* REVIEWS */

    .reviews {
        padding: 0 15px;
        margin-top: 0;
    }

    /* COURSE */

    .steps {
        gap: 30px;
    }

    .step-content {
        padding-left: 40px;
    }

    .line {
        border-width: 1px;
        left: 24px;
        top: 60px;
        height: 280px;
    }

    .circle {
        width: 24px;
        height: 24px;
        border-width: 2px;
    }

    .play-icon {
        font-size: 85px;
    }

    .play-txt {
        display: none;
        cursor: url('../img/cursors/color-goldenrod-pointer.png'), auto;
    }

    #start-button {
        top: 42.5%;
    }

    /* FINAL */

    .modal-final {
        background-size: contain;
        background-image: none;
        margin: auto;
        width: 100%;
        height: 100%;
    }

    .img-final {
        width: 180px;
    }

    .form-final {
        gap: 15px;
    }

    /* FOOTER */

    footer {
        padding: 15px;
    }

    .footer-content {
        padding: 30px 15px;
    }

    .footer-info {
        gap: 20px;
    }

    .footer-newsletter-title img {
        height: 30px;
    }

    .input-newsletter {
        width: 180px;
    }

    #newsletter-message {
        bottom: -30px;
        font-size: 12px;
    }
}

@media screen and (max-width: 400px) {
    .review-cards {
        bottom: 30px;
    }
}


/* Minimum media queries */

@media screen and (min-width: 1530px) {

    main {
        margin-top: 200px;
    }
}

@media screen and (min-width: 800px) {

    .card.theme1:hover {
        box-shadow: 0px 0px 10px 1px var(--theme1);
        transition: 300ms ease;
    }

    .card.theme2:hover {
        box-shadow: 0px 0px 10px 1px var(--theme2);
        transition: 300ms ease;
    }

    .card.theme3:hover {
        box-shadow: 0px 0px 10px 1px var(--theme3);
        transition: 300ms ease;
    }

    .card.theme4:hover {
        box-shadow: 0px 0px 10px 1px var(--theme4);
        transition: 300ms ease;
    }

    .card.theme5:hover {
        box-shadow: 0px 0px 10px 1px var(--theme5);
        transition: 300ms ease;
    }

    .card.theme6:hover {
        box-shadow: 0px 0px 10px 1px var(--theme6);
        transition: 300ms ease;
    }
}