/* style.css */

:root {
    --primary-color: #9985e3;
    --secondary-color: #e599db;
    --light-gray: #f8f9fa;
    --dark-gray: #a9a6a8;
    --text-color: #a09999;
    --text-color-white: white;
    --primary-color-rgb: 153, 133, 227;
    --secondary-color-rgb: 229, 153, 219;
    --vh: 100vh;
}



body {
    font-family: Avenir, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
    user-select: none;
    scroll-behavior: smooth;
    background-color: white;
    width: 100vw;
    overflow-x: hidden;
}



.section-home {
    height: calc(var(--vh) - 90px);
}


.section .button {
    display: block;
    padding: 5px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    background-color: #41a641;
    margin-top: 10px;
    border-radius: 35px;
    font-weight: bold;
    font-size: large;
    color: white;
    width: 78%;
    margin: 0 auto;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
    margin-top: 14px;
}

.button:hover{
    opacity: .8;
}

/*REMOVE ON LAUNCH*/
/*REMOVE ON LAUNCH*/
/*REMOVE ON LAUNCH*/
/*REMOVE ON LAUNCH*/
/*REMOVE ON LAUNCH*/
#soon-coming-disclaimer{
    position: fixed;
    bottom: 0px;
    width: 100vw;
    z-index: 500;
    background: orange;
    color: white;
    text-align: center;
    height: auto;
    border-top: 2px solid white;

}
#soon-coming-disclaimer p{
    margin: 0;
    line-height: 30px;
    padding: 10px;

}
#soon-coming-disclaimer p span{
    font-weight: bolder;
}

.section .button, .app-download-link, .temp-class-to-delete{
    pointer-events: none;
    opacity: .5;
}

footer{
    margin-bottom: 50px;
}

/*REMOVE ON LAUNCH*/
/*REMOVE ON LAUNCH*/
/*REMOVE ON LAUNCH*/
/*REMOVE ON LAUNCH*/
/*REMOVE ON LAUNCH*/


.navbar {
    padding-left: 30px;
    padding-right: 30px;
    background: linear-gradient(90deg, #6f58c4, #6f58c4, #9457db);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: calc(100vw - 60px);
    height:90px;
    top: 0;
    z-index: 100;

}

.logo img {
    max-height: 50px;
    vertical-align: middle; 
}

.logo {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);

}

span.resona-logo-text {
    position: absolute;
    font-family: Avenir;
    font-size: 35px;
    font-weight: bold;
    margin-left: 75px;
    color: #6e57c3;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    white-space: pre;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu li a, .nav-menu li span {
    text-decoration: none;
    color: var(--text-color-white);
    font-weight: bold;
    font-size: initial;
    transition: color 0.3s ease;

}

.nav-menu li a:hover,.nav-menu li span:hover  {
    opacity: .8;
}

.nav-menu li span{
    cursor: pointer;
}


#language-buttons{
    margin-top: 40px;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 90px;
    background: linear-gradient(90deg, #6f58c4, #6f58c4, #9457db);

}

.hero-content {
    flex: 1;
    text-align: left;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    min-height: calc(var(--vh) - 90px);
}


    .hero-block {
      display: none;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .hero-block.visible {
      display: block;
      opacity: 1;
    }


.hero-text-container {
    min-height: calc((var(--vh)*0.7) - 90px - 100px);
    max-height: calc((var(--vh)*0.7) - 90px - 100px);
    padding-top: calc(var(--vh)*0.1);
    padding-left:40px;
}

.hero-content h1{
    font-size: calc(min(6vw, (var(--vh)*0.07)));
    margin-bottom: 20px;
    margin-left: 2vw;
    color: white;
    line-height: 1.2;
    opacity:0;
    padding-right: 40px;
    transition: opacity 0.5s ease;
    background: linear-gradient(
      41deg,
      white,
      white,
      white,
      rgba(245, 214, 237, 0.7), 
      white,
      white 
    );
    background-size: 200% 1000%;
    background-clip: text;
    animation: HeroTitleGlowEffecct 10s ease infinite, LoadContentHeroH1 1s ease forwards 0s;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: HeroTitleGlowEffecct 10s ease infinite, LoadContentHeroH1 1s ease forwards 0s;
    will-change: background-position, opacity;
}
@keyframes HeroTitleGlowEffecct {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}


@keyframes LoadContentHeroH1 {
  from{
    opacity: 0;
    transform: translateX(-50px) ;

  }
  to{
    opacity: 1;

    transform: translateX(0px);
   
  }
}

@keyframes LoadContentHeroP {
  from{
    opacity: 0;
    transform: translateY(50px) ;

  }
  to{
    opacity: 1;

    transform: translateY(0px);
   
  }
}

.hero-content p {
    font-style: italic;
    font-size: calc(min(2vw, (0.035*var(--vh))));
    margin-bottom: 20px;
    margin-left: 2vw;
    margin-right: 20vw;
    color: white;
    line-height: 1.2;
    padding-right: 40px;
    transition: opacity 0.5s ease; 
    opacity:0;
    will-change: opacity;
    animation: LoadContentHeroP 1s ease forwards 0s;

}

.hero-content ul {
    font-style: normal;
    font-size: calc(min(2vw, (0.035*var(--vh))));
    margin-bottom: 20px;
    margin-left: 2vw;
    margin-right: 20vw;
    color: white;
    line-height: 1.8;
    padding-right: 40px;
    list-style: none;
    transition: opacity 0.5s ease-in-out; 
    opacity:0;
    will-change: opacity;
    animation: LoadContentHeroP 1s ease forwards 0s;

}

@keyframes LoadContentHeroI {
  from{
    opacity: 0;
    transform: scale(.5) ;

  }
  to{
    opacity: 1;

    transform: scale(1);
   
  }
}
.hero-content ul i {

    font-size: large;
    background: var(--secondary-color);
    color: white;
    border-radius: 30px;
    margin-right: 10px;
    padding: 5px;
    height: 25px;
    width: 25px;
    text-align: center;
    line-height: 25px;
    animation: LoadContentHeroI 1s ease forwards 0s;

}



.hero-content h1.fade-out,
.hero-content p.fade-out,
.hero-content ul.fade-out {
    opacity: 0;
}



.hero-image {
    padding-right: 5vw;
    height: calc((0.9*var(--vh)) - 90px);
    max-height: calc(60vw - 90px);
    will-change: width, height;
    z-index: 2;
}


.videoWrap {

    width: calc(((0.9*var(--vh)) - 90px) * 0.463); 
    height: calc((0.9*var(--vh)) - 90px);
    aspect-ratio: 0.463;
    max-height: calc(60vw - 90px);
    max-width: calc((60vw - 90px)* 0.463);
    border-radius: 35px;
    background-color: #e1ceed;
    outline: 14px solid #e1ceed;
    opacity: 0;
    will-change: opacity, transform, width, height;
    transform:translateX(500px);
    box-shadow: 0px 0px 25px 8px rgba(0, 0, 0, 0.5);
    animation: LoadVideoWrap 0.5s ease forwards, subtleFloat 5s linear infinite 0.5s; 
}

@keyframes LoadVideoWrap {
  from {
    opacity: 0;
    transform: translateX(500px);  
  }
  to {
    opacity: 1;
    transform: translateX(0px); 
  }
}

@keyframes subtleFloat {
    0% {
        transform: translateX(0px) translate(0, 0) scale(1);
        box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.5);
    }
    50% {
        transform: translateX(0px) translate(0.5px, 1px) scale(1.01);
        box-shadow: 0px 0px 25px 16px rgba(0, 0, 0, 0.5);
    }
    100% {
        transform: translateX(0px) translate(0, 0) scale(1);
        box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.5);
    }
}
#myVideo {
    height: 100%;
    object-fit: cover;
    border-radius: 35px;
}

.app-download-wrap {
    position: absolute;
    left: calc(2vw + 40px);
    bottom: 80px;
}

.hero-content .app-download-wrap a.app-download-link {
    margin-right: 40px;
}

.app-download-wrap a.app-download-link {
    text-decoration: none;
}

.app-download-wrap img.app-download-img {
    width: 180px;

    outline: 2px solid white;
    border-radius: 10px;
}


.app-download-wrap p {
    margin-left: 0;
    margin-bottom: 40px;
}

span.purchase-info {
    background: #fbaf25;
    border-radius: 25px;
    padding: 7px;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: bold;
    color: white;
    font-size: large;
    margin: 0 auto;
}



.section {
    width: 100vw;
    width: auto;
    text-align: center;
    background-color: white;
    overflow-x: hidden;
}


.about,
.how-it-works,
.features,
.subscriptions,
.testimonials,
.organizational,
.why,
.cta {
    padding-top:90px;
    padding-bottom:90px;
}

.about h2,
.how-it-works h2,
.features h2,
.subscriptions h2,
.testimonials h2,
.organizational h2,
.why h2,
.cta h2 {
    margin-bottom: 40px;
    font-size: 2.5em;
    color: var(--primary-color);
}

.about h3,
.how-it-works h3,
.features h3,
.subscriptions h3,
.testimonials h3,
.organizational h3,
.why h3,
.cta h3 {
    font-size: x-large;
    color: var(--secondary-color);
}

.about p,
.how-it-works p,
.features p,
.subscriptions p,
.testimonials p,
.organizational p,
.why p,
.cta p {
    font-size: larger;
}



.cta
 {
    background-color: var(--light-gray);
}




.about__content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 80vw;

}

#about-image-rotator {
    width: 400px;
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 35px;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.2);
    margin: 20px;
}


#about-image-rotator img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; 
    transition: opacity 0.2s ease; 
}

#about-image-rotator img.active {
    opacity: 1; 
}

.about__text {
    flex: 1;
    text-align: left;
    padding: 20px;
    margin-left: 20px;
}



.why__content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 80vw;

}


.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;

}


.card {
    flex: 1 1 300px;
    background: white;
    padding: 20px;
    border: 8px solid #e0e0e0;
    border-radius: 35px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover{

    transform: scale(1.01);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.card h3{
    margin: 0;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.eureka-quote {
  position: absolute;
  font-style: italic;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  color: var(--dark-gray);
  padding: 20px;
  opacity: 0;

}
.eureka-quote small{
    font-weight: bold;
    font-size: medium;
    color: var(--text-color);
}
.eureka-quote p{
    margin: 0;
    margin-bottom: 15px;
}
.card:hover .eureka-quote {
  opacity: 1;

}

.why .app-download-wrap{
    margin-top:50px;
    margin-bottom:50px;
    position: unset;
}

.how-it-works__steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 80vw;
    margin: 0 auto;
}

.how-it-works__step {
    flex: 1;
    min-width: 230px;
    max-width: 300px;
    margin: 20px;
    padding: 20px;
    text-align: center;
    border: 8px solid #e0e0e0;
    border-radius: 35px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background: white;
}

.how-it-works__step:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.how-it-works__step img {
    max-width: 100%;
    margin-bottom: 15px;
}

.how-it-works__step h3 {
    color: var(--primary-color);
    font-size: x-large;
}

.how-it-works__step .bold-span{
    font-weight:bolder;
    color: var(--text-color);
    cursor: pointer;
}
.how-it-works__step .bold-span:hover{
    opacity:.8;
}


.features__list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 80vw;
    margin: 0 auto;
}


.features__feature {
    flex: 1;
    min-width: 250px;
    max-width:  300px;
    margin: 20px;
    padding: 20px;
    text-align: center;
    border: 8px solid #e0e0e0;
    border-radius: 35px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.features__feature:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.features__feature i {
    font-size: 4em;
    color: var(--primary-color);
    margin-top: 15px;
}


.subscriptions__plans {
    display: flex;
    flex-wrap: wrap;
    max-width: 80vw;
    margin: 0 auto;
    margin-bottom: 90px;
}

.pay-per-use__plans{
        display: flex;
    flex-wrap: wrap;
    max-width: 80vw;
    margin: 0 auto;

}


.subscriptions__plan {
    flex: 1;
    margin: 20px; 
    padding: 20px;
    text-align: center;
    border: 8px solid #e0e0e0;
    border-radius: 35px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.subscriptions__plan:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.subscriptions__plan h3 {
    font-size: xx-large;
}

.subscriptions__price {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.subscriptions__plan ul {
    list-style: none;
    padding: 0;
    margin: 0;

    margin-bottom: 35px;
}

.subscriptions__plan ul li {
    margin-bottom: 8px;
}


.testimonials__list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 80vw;
    margin: 0 auto;
}


.testimonials__testimonial {
    flex: 1;
    min-width: 250px;
    max-width:  300px;
    margin: 20px;
    padding: 20px;
    text-align: center;
    border: 8px solid #e0e0e0;
    border-radius: 35px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonials__testimonial:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.testimonials__testimonial p:last-child {
    font-style: normal;
    font-weight: bold;
    margin-top: 15px;
}


.cta{
    padding: 20px;
}

.cta h2{
    line-height: 1.2;
}
.cta .app-download-wrap{
    position: unset;
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 20px;
    width: fit-content;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
}


.cta p{
    font-size: larger;
    font-weight: bold;
    font-style: italic;
    width: 50%;
    margin: 0 auto;

}

.highlight-link{
    font-weight: bolder;
    user-select: text;
}

footer {
    background-color: #6e56c2;
    padding: 20px;

}

footer p, .footer__link{
    color: lightgrey;
    text-align: center;
    margin: 0;
}

.footer__link {
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.footer__link:hover {
    opacity: .8;
}



.testimonials__rating {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    font-size: x-large;
}

.testimonials__rating i {
    font-size: 1.2em;
    margin-right: 0.1em; 
    color: lightgray; 
}

.testimonials__rating i.filled {
    color: gold; 
}



.section-description-wrapper {
    width: 100%;
    margin: 20px; 
    padding: 20px; 
    font-size: larger;
}





.organizational__content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 80vw;

}

#organizational-image-rotator {
    width: 400px;
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 35px;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.2);
    margin: 20px;
}


#organizational-image-rotator img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1; 
    transition: opacity 0.2s ease; 
}


.organizational__text {
    flex: 1;
    text-align: left;
    padding: 20px;
    margin-left: 20px;
}

.highlight-link{
    font-weight: bolder;
    user-select: text;
}

#auth-modal p{
    font-size: large;
}
.login-option {
    position: relative;
    width: calc(100% - 2px);
    background: white;
    height: 48.4px;
    border: 1px solid #e6e6e6;
    overflow: hidden;
    border-radius: 4px;
    margin: 0 auto 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-option-selected, .login-option:hover {
  background: lightgray;
}

.login-option-icon {
  position: absolute;
  left: 14px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-option i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-option i::before {
  display: block;
  line-height: 1;
  font-size: 22px;
  text-align: center;
}


.login-option .fa-apple {
  color: black;
}

.login-option .fa-facebook {
  color: #3b5998 ;
}

/* Google image */
.login-option img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}


/* Center text */
p.login-option-text {
  margin: 0;
  font-size: large;
  font-weight: 700;
  text-align: center;
}


#support h2 i{
    vertical-align: middle;
    font-size: xxx-large;
}


.modal-text-content {
  width: 100%; 
  height: 40vh; 
  padding: 10px;
  font-family: monospace; 
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f9f9f9;
  resize: vertical;
  box-sizing: border-box;
  outline: 0;
}


@media (max-width: 1500px) {
    
    .nav-menu {
        display: none; 
    }

}



@media (max-width: 1150px) {
    
    .section {
        height: auto;
    }

    span.purchase-info {
        padding: 20px;
        display: block;
        max-width: 80%;

    }


    .logo img {
        max-height: 40px; 
    }

    span.resona-logo-text {
        font-size: 30px;
        margin-left: 65px;

    }



    .hero {
        flex-direction: column; 
        text-align: center;
    }

    .hero-content {
        text-align: center;
        padding-right: 0;
        align-self: unset;
        margin-top: unset;
        min-height:unset;
        padding-bottom: 50px;

    }
    
    .hero-text-container{
        padding-top: 0; 
        padding-left: 0;
        min-height: 420px;;
        max-height: unset;
    }

    .hero-content h1 {
        font-size: 8vw;
        margin-left: 0;
        padding-right: 0;
        padding: 25px;
    }

    .hero-content p {
        margin-left: unset;
        padding-right: unset;
        font-size: 4.5vw;
        padding-left:25px;
        padding-right: 25px;
        margin-right: 0;
    }

    .hero-content ul {
        width: fit-content;
        margin:0 auto;
        justify-items: left;
        font-size: inherit;
    }
    .hero-content ul li {
        margin-bottom: 20px;
    }
    .hero-image {
            padding-top: 80px;
            order: -1;
            padding-right: 0;
            max-height: calc(0.9*var(--vh));
    }


    .videoWrap {

        width: calc((0.7*var(--vh)) * 0.463); 
        height: calc((0.7*var(--vh))); 
        aspect-ratio: 0.463; 
        max-height: calc(0.7*var(--vh));
        max-width: calc((0.7*var(--vh)) * 0.463);
    }

    .app-download-wrap {
        position: unset;
        left: unset;
        bottom: unset;
        margin-top: 50px;
    }

    .app-download-wrap a.app-download-link {
        margin-right: unset;
        margin:0;
    }

    .app-download-wrap img.app-download-img {
        width: 150px;
        max-width: 40vw;
    }

    .hero-content .app-download-wrap a.app-download-link {
        margin-right: 10px;
    }

    .about__content,
    .how-it-works__steps,
    .features__list,
    .subscriptions__plans,
    .pay-per-use__plans,
    .testimonials__list,
    .organizational__content,
    .cta__buttons {
        flex-direction: column;
        width: calc(100vw - 40px);
    }


    #about-image-rotator, #organizational-image-rotator {
        width: 250px;
        height: 250px;
    }
    .about__text, .organizational__text {
        text-align: center;
        margin-left: 0;
    }

    .how-it-works__step,
    .features__feature,
    .subscriptions__plan,
    .testimonials__testimonial,
    .section-description-wrapper {
        width: 65%;
        margin: 0 auto;
        padding: 15px;
        margin-bottom: 40px;
    }



    .button--appstore img,
    .button--playstore img {
        width: 25px;
        margin-right: 5px;
    }

    .cta p{
        font-size: large;
        font-weight: bold;
        font-style: italic;
        width: 90%;
        margin: 0 auto;

    }


    #support h2{
        font-size: x-large;
    }
    #support h2 i{
        font-size: xx-large;
    }

}











