@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans:wght@400;700&family=Sofia+Sans+Extra+Condensed:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Six+Caps&display=swap');

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #ded5f4; 
    font-family: 'Sofia Sans', sans-serif;
    color: #3a2e73;
    scroll-behavior: smooth;
    text-align: center;
}
.title-badge {
    position: absolute;
    transform: scaleY(1); /* Stretches the text to 1.5 times its original height */
    letter-spacing: 6px;
    font-weight: 900;
    top: 250px;
    left: 90px;
    background-color: rgba(145, 127, 193, 0.5); /* Semi-transparent background */
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    font-family: 'Six Caps', sans-serif;
    font-size: 70px; 
    z-index: 101; 
    transform-origin: top left; /* Scale from the top left corner */
    transition: transform 0.3s ease; /* Animate the scaling smoothly */
}


.titles {
    font-family: 'Six Caps', sans-serif;
    font-size: 95px;
    letter-spacing: 2px;
    color: #917fc1;
    margin-top: 10px; 
    margin-bottom: 10px; 
    text-align: center;
    font-weight: 900;

}
.titles1 {
    font-family: 'Six Caps', sans-serif;
    font-size: 55px;
    letter-spacing: 2px;
    color: #917fc1;
    margin-top: 10px; 
    margin-bottom: 10px; 
    text-align: center;
    font-weight: 900;
}


h1 {
    font-family: 'Big Shoulders Display', bold;
    font-size: 65px;
    font-weight: 900;
    letter-spacing: 2px;
    color: rgb(107, 88, 161);
}


.info-content-wrapper, .info-content-wrapper2, .info-content-wrapper4 {
    display: flex;
    flex-direction: row; 
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin: auto; 
    gap: 20px;
}







.bg {
    background: url('images/front-page.jpg') no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100vh;
}


.top-right-buttons {
    position: fixed;
    top: 10px;
    right: 10px; 
    text-align: right;
}

.top-right-buttons li {
    display: block;
    margin-bottom: 10px; 
}

.navigation {
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
}

.navigation ul {
    list-style: none;
    padding: 0;
}

.navigation li {
    display: inline;
    margin: 0 10px;
}

.nav-button {
    text-decoration: none;
    color: white;
    background: black;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: #5a498f;
}

.image-slider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 44px; 
    display: flex;
    justify-content: center;
}

.image-holder {
    display: flex; 
    justify-content: center; 
    width: 100%; 
}

.image-holder img {
    display: block; 
    height: auto; 
    max-width: 22%; 
    border-radius: 30px; 
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.slide-arrow {
    position: absolute;
    top: 30%; 
    cursor: pointer;
    font-size: 30px; 
    color: black; 
    background-color: rgba(145, 127, 193, 0.5);; 
    border: none;
    padding: 10px; 
    border-radius: 50%; 
}
.left-arrow {
    left: 35%; 
    transform: translateY(100%);
}
.right-arrow {
    right: 35%; 
    transform: translateY(100%);
}


@media (max-width: 1068px) {
    .image-slider {
        size: 100%; 
    }
    .image-holder img.active {
        size: 100%; 
    }
    .title-badge {
        font-size: 30px; /* Smaller font size for smaller screens */
        letter-spacing: 9px; /* Reduce letter spacing for smaller screens if needed */
        top: 60px;
        font-weight: 700;
        left: 30px;
        padding: 5px; /* Adjust padding as necessary */
        transform: scaleY(0,5); /* Reset the stretching effect if necessary */
    }

    .left-arrow, .right-arrow {
        /* Smaller screens might need different positioning */
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .left-arrow {
        left: 30%; /* Closer to the edge for smaller screens */
    }

    .right-arrow {
        right: 30%; /* Closer to the edge for smaller screens */
    }
    .bg {
        background: url('images/front-page.jpg') no-repeat center center fixed; 
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: contain;
        height: 100vh;
    }
}





/* SECOND PAGE */
.ceiling-image {
    width: 100%;
    height: auto; 
    display: block;
    margin: 20px 0; 
}

.small-image2 {
    width: 90%;
    max-width: 300px; 
    height: auto;
    margin: 10px auto 20px; 
}

.info-boxes {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 18px; 
    padding: 10px;
    margin-top: 10px; 
    line-height: 1.6; 
    margin-bottom: 1em;
}
.info-box {
    
    flex-grow: 1; 
    flex-basis: 0;
    max-width: 100%; 
    padding: 15px;
    background-color: #ede9f8;
    border: 10px solid #3a2e73;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-family: 'Sofia Sans', sans-serif;
    font-size: 0.8rem; 
    text-align: center;
    transition: transform 0.3s ease;
    line-height: 1.6;
    padding-bottom: 8px;
}
.info-box p {
    margin-bottom: 5px; 
}
.info-box:hover {
    transform: translateY(-5px); 
}
.info-box-button {
    background-color: #917fc1; 
    color: white;
    border: 8px solid #ede9f8; 
    padding: 0 30px; 
    margin: 30px auto; 
    display: block; 
    text-align: center; 
    border-radius: 50px; 
    font-family: 'Sofia Sans', sans-serif;
    text-decoration: none;
    font-weight: 900;
    font-size: 30px;
    text-align: center; 
    transition: transform 0.3s ease; 
    transition: background-color 0.3s ease, color 0.3s ease; 
    box-sizing: border-box;
    cursor: pointer;
    height:60px;


}


.info-box-button:hover {
    background-color: #5a498f; 
    color: #ffffcc; 
}

@media (max-width: 768px) {
    .info-box {
        flex-basis: 100%; 
    }
}



/* ALIGN ROW */
.info-content-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between; 
    align-items: stretch; 
    width: 95%;
    margin: auto; 
    gap: 20px;
    overflow: hidden;
    flex-wrap: nowrap;
}

.side-image {
    max-width: 30%; 
    height: auto;
    object-fit: contain;

}
.info-boxes2 {
    flex: 1;
    justify-content: stretch; 
    gap: 20px;
    width: 100%; 
    display: flex;
    flex-direction: column; 
    align-items: stretch;
}

.info-box2 {
    box-sizing: border-box;
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    width: 100%; 
    box-sizing: border-box;
    padding: 5px;
    background-color: #ede9f8; 
    border: 8px solid #3a2e73 ; 
    font-family: 'Sofia Sans', sans-serif; 
    font-size: 18px;
    line-height: 1.4;
    text-align: center; 
    transition: transform 0.3s ease; 
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 50px; 
    color: #3a2e73;
    margin: 0 0; 
    padding: 10px;
    
}

.info-box12 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    background-color: #ede9f8;
    border: 8px solid #3a2e73;
    font-size: 18px;
    line-height: 1.4;
    text-align: left;
    border-radius: 50px;
    color: #3a2e73;
    margin: 5px 5px;

}

.info-box2 > p:last-child,
.info-box12 > div:last-child {
    margin-bottom: 0; 
}

.outer-box {
    display: flex;
    justify-content: space-between; 
    gap: 10px;
    padding: 20px;
}
.info-column-features, .info-column-download {
    flex: 1; 
    margin-right: 5px;
    padding-right: 5px;
}

.info-column-features ul {
    padding: 0;
    list-style-type: disc; 
    margin-left: 20px; 
}

.info-column-download {
    margin-right: 0; 
}

.info-column-download a {
    color: #3a2e73;
    text-decoration: underline;
}

.features-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px; 
}

.features-list {
    flex-basis: calc(50% - 10px); 
    list-style-type: none;
    padding: 0;
    margin: 0; 
}

.features-list li {
    color:#ede9f8;
    text-align: center; 
    background-color: #917fc1; 
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 10px; 
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.1);
}

.download-text {
    font-weight: 600;
    font-size: 18px; 
    margin: 20px 0; 
    text-align: center; 
}

.store-badges {
    display: flex;
    justify-content: center; 
    align-items: center; 

    gap: 100px; 
}

@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
    }

    .features-list {
        flex-basis: 100%;
    }

    .info-box12 {
        text-align: center; 
    }

    .store-badges {
        flex-direction: row; 
    }
}

@media (max-width: 768px) {
    .info-content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .side-image,
    .info-boxes2,
    .info-boxes3 {
        width: 100%;
        max-width: none; 
        height: auto;
    }
    .info-box2,
    .info-box3 {
        flex: none; 
    }
    .side-image {
        order: -1; 
    }
}












.small-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 10px auto 20px; 
}

.small-image3 {
    width: 80%; 
    height: 500px; 
    object-fit: contain; 
    margin-top: 5px; 
    margin-bottom: 15px; 
    display: block; 
    margin-left: auto; 
    margin-right: auto;
}


/* CONTACTS */
.info-content-wrapper2 {
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    align-items: stretch;
    width: 95%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.content-and-form {
    display: flex;
    flex: 1;
}

.info-boxes3 {
    order: 1;
    width: 90%; 
    display: flex;
    flex-direction: column; 
    align-items: center; 
    position: relative;
    z-index: 2; 
}
.info-boxes3, .info-box3 {
    width: 100%;
}
.info-box3 {
    box-sizing: border-box;
    padding: 20px;
    background-color: #ede9f8; 
    border: 8px solid #3a2e73; 
    margin-bottom: 20px; 
    font-family: 'Sofia Sans', sans-serif; 
    font-size: 15px;
    text-align: left; 
    transition: all 0.3s ease;
    border-radius: 50px; 
    color: #3a2e73;
}

.contact-image {
    max-width: 50%;
    object-fit: contain;
    height: auto;
}
.outer-box2 {
    display: flex;
    flex-direction: row;
}
.info-column2 {
    display: flex;
    flex-direction: column; 
    flex: 1; 
    margin-right: 10px; 
    line-height: 1; 
    margin-top: -2em;
    margin-bottom: -1em;
}
.info-column2:last-child {
    margin-right: 0; 
}
label, input, textarea {
    margin: 8px 0;
    width: 100%; 
}

@media (max-width: 768px) {
    .info-content-wrapper2 {
        flex-direction: column;
    }
    .content-and-form, .info-boxes3, .contact-image {
        width: 100%;
        max-width: none;
    }
    .info-boxes3 {
        width: auto; 
    }
    .contact-image {
        order: -1; 
    }
}



.info-box.full-width .info-boxes {
    width: 100vw; 
    max-width: 100%; 
    margin-left: calc(-50vw + 50%); 
    box-sizing: border-box; 
    padding: 0 20px; 
}



/* Buttons */
.fixed-buttons {
    position: fixed;
    left: 0; 
    bottom: 80px;
    width: 100%; 
    z-index: 100; 
  }
  .fixed-button-left,
  .fixed-buttons-right .fixed-button {
    pointer-events: auto; 
    position: absolute; 
    margin: 0;
    padding: 10px 20px;
    background-color: #917fc1; 
    color: white; 
    font-weight: 900;
    text-decoration: none; 
    border-radius: 50px; 
    border: 8px solid #ede9f8; 
    text-align: center;
    font-size: 20px;
    transition: background-color 0.3s, opacity 0.3s; /
  }
  .fixed-button-left {
    left: 20px;  
  }
  .fixed-button-left + .fixed-button-left {
    left: 20px;
    bottom: 80px; 
  }
  .fixed-buttons-right {
    right: 0px; 
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .fixed-buttons-right .fixed-button + .fixed-button {
    margin-top: 0px; 
  } 
  .fixed-buttons-right .fixed-button:hover, 
  .fixed-button-left:hover {
    background-color: #5a498f; 
    color: #fff; 
  }
  

  .submit-button {
    background-color: #917fc1; /* Replace with actual color code of other buttons */
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}
submit-button:hover {
    background-color: #5a498f; /* A darker variant for hover state */
}

footer {
    text-align: center;
    padding: 20px;
    background: #917fc1; 
    font-family: 'Big Shoulders Display', bold;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.footer-text {
    text-align: center;
    flex: 1; /* This makes the .footer-text expand the entire width of the .footer-content container */
}

@media screen and (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: center; /* This will center the .footer-text in the container for widths of 768px and above */
    }
}

.info-box3 h4 {
    margin-bottom: 30px; /* Adjust the value as needed */
}


.features-list li a {
    color: #ffffff; /* Adjust the color code to white or any other color you prefer */
}
