@import url('https://fonts.cdnfonts.com/css/satoshi');
@import url('https://fonts.cdnfonts.com/css/source-serif-pro');
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');


*{
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Satoshi', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
}

body.no-scroll {
    overflow: hidden;
}

.header {
    width: 100%;
    height: 100dvh;
}

.header video, img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.texts-overlay {
    position: absolute;
    margin: 4em;
    color: white;
    bottom: 0;
    left: 0;
}

.texts-overlay h1 {
    font-size: 4em;
    margin: 0.2em 0;
    line-height: 1.2em;
    margin: 0;
}

.texts-overlay span > .styled {
    font-family: "Source Serif 4", serif;
    font-style: italic;
    font-weight: 800;
    font-size: 1.04em;
}

.texts-overlay > .text-actions {
    margin-top: 6em;
    display: flex;
    gap: 3em;
}

.texts-overlay > .text-actions .action {
    display: flex;
    align-items: center;
}
.action > img {
    width: 1.3em;
    height: 1.3em;
    margin-right: 0.5em;
}

.action > p {
    margin: 0;
    font-size: 16px;
}

.action {
    transition: transform 0.3s ease;
}

.action:hover {
    cursor: pointer;
    transform: translateY(-3px);
}


.navbar {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: calc(100% - 2em);
    margin: 1em;
    z-index: 50;
    transition: background-color 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    border-radius: 12px;
}

.navbar.scrolled {
    background-color: rgba(230, 230, 230, 0.6);
    backdrop-filter: blur(8px);
    margin: 0.5em;
    padding: 20px;
    padding-inline: 30px;
    width: auto;
}

.navbar.scrolled > .nav-links > a {
    color: #161616;
}

.navbar.scrolled > img {
    filter: invert(1);
}

.navbar img {
    height: 16px;
    width: auto;
}

.navbar .nav-links {
    display: flex;
    gap: 4em;
    align-items: center;
    margin-left: 20em;
}

.menulinks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

.menulinks.open {
    opacity: 1;
    visibility: visible;
}

.menucontent {
    background-color: white;
    width: calc(100% - 4em - 20px);
    position: absolute;
    top: -100%;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    padding: 2em;
    margin: 10px;
    opacity: 0;
    border-radius: 10px;
    transition: top 0.4s ease, opacity 0.4s ease;
}

.menulinks.open .menucontent {
    top: 0;
    opacity: 1;
}

.menucontent a {
    color: #161616;
    text-decoration: none;
    font-size: 1.2em;
    opacity: 0;
    filter: blur(4px);
    transform: translateY(10px);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.menulinks.open .menucontent a {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.closemenu {
    position: absolute;
    top: 1em;
    right: 1em;
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.openmenu {
    margin-left: auto;
    cursor: pointer;
    display: none;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 15px;
}


.website-content {
    max-width: 1100px;
    margin-top: 10em;
}

.numbers {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3em;
}

.row-numbers {
    display: flex;
    flex-direction: row;
    gap: 7em;
}

.number {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

.number > h2 {
    margin: 0;
    font-size: 2.5em;
    color: #161616;
}

.number > p {
    margin: 0;
    font-size: 16px;
    color: #666;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #DBDBDB;
}


.bento {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 2em;
    margin-top: 4em;
}

.bento-row {
    display: flex;
    flex-direction: row;
    gap: 2em;
}

.bento-row > div {
    position: relative;
    overflow: hidden;
    background-color: #F7F7F7;
    border-radius: 20px;
    height: 325px;
    width: 100%;
}

.small-box {
    flex: 1.3;
}

.large-box {
    flex: 2;
}


.box-title {
    display: flex;
    align-items:flex-start;
    gap: 1em;
    padding: 35px;
}

.icon-bento {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 50px;
    aspect-ratio: 1/1;
    border-radius: 16px;
    background-color: #E9E9E9;
}

.icon-bento img {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.box-texts {
    display: flex;
    flex-direction: column;
    gap: 0.1em;
}

.box-texts h3 {
    margin: 0;
    font-size: 20px;
    color: #161616;
}

.box-texts p {
    margin: 0;
    font-size: 15px;
    color: #A3A3A3;
}

#intents {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    object-fit: contain;
    margin-top: auto;
}

#chevalet {
    position: absolute;
    right: 28%;
    bottom: 0;
    height: 50%;
    width: auto;
}

#menu {
    position: absolute;
    right: 0%;
    bottom: 0;
    height: 80%;
    width: auto;
}

#dashboard {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 90%;
    width: auto;
}

#ar {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 60%;
    width: auto;
}

.section-title {
    display: flex;
    flex-direction: column;
    margin-top: 10em;
    margin-bottom: 2em;
}

.section-title h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 700;
    color: #161616;
}

.section-title h2 {
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    color: #000000;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    margin-bottom: 8em;
}

.card {
    display: flex;
    flex-direction: column;
    background-color: #F7F7F7;
    border-radius: 20px;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.card > .card-title {
    display: flex;
    flex-direction: column;
    gap: 0em;
    padding: 35px;
}

.card > .card-title h2 {
    margin: 0;
    font-size: 20px;
    color: #161616;
}

.card > .card-title p {
    margin: 0;
    font-size: 15px;
    color: #A3A3A3;
}

.centered-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 65%;
    width: auto;
    object-fit: contain;
}

.inbox-img {
    width: calc(100% - 70px);
    height: auto;
    margin-top: auto;
    padding: 35px;
}

.black-cards {
    display: flex;
    flex-direction: flex;
    gap: 2em;
    margin-bottom: 8em;
}

.black-cards > div {
    position: relative;
    background-color: #0F0F0F;
    padding: 35px;
    color: white;
    border-radius: 20px;
}

.black-texts h2 {
    position: relative;
    z-index: 10;
    margin: 0;
    font-size: 2.5em;
}

.black-texts p {
    margin: 0;
    font-size: 15px;
    color: #A3A3A3;
    margin-top: 10em;
}

.black-img {
    position: absolute;
    right: 35px;
    top: 35px;
    height: 50%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.black-cards > div:hover > .black-img {
    transform: rotate(5deg);
}

/* FAQ Styles */

.faq-section {
    display: flex;
    gap: 6em;
    margin-top: 10em;
    margin-bottom: 10em;
}

.faq-title h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #161616;
    margin: 0;
    line-height: 1.2;
}

.faq-items {
    flex-grow: 1;
}

.faq-item {
    border-bottom: 1px solid #DBDBDB;
    padding: 1.5em 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question p {
    margin: 0;
    font-size: 1.2em;
    font-weight: 600;
    color: #161616;
}

.faq-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-answer p {
    margin: 0;
    padding-top: 1em;
    color: #666;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    max-height: 200px; /* Adjust as needed */
}

/* Footer Styles */

.footer-wrapper {
    position: relative;
    margin-top: 10em;
    width: 100%;
}

.footer {
    position: sticky;
    bottom: 0;
    width: 100%;
    background-color: #121212;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-content {
    display: flex;
    gap: 6em;
    width: 100%;
    padding: 4em;
}

.footer-left {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.footer-left h2 {
    font-size: 2.5em;
    margin: 0;
    line-height: 1.2;
}

.footer-left p {
    color: #A3A3A3;
    max-width: 400px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1em;
}

.footer-copy {
    margin: 0;
    margin-top: auto;
    font-size: 0.9em;
}

.footer-right {
    flex: 1;
}

.form-row {
    display: flex;
    gap: 1.5em;
}

.form-row .form-group {
    flex: 1;
    width: calc(50% - 0.75em);
}

.form-group {
    margin-bottom: 1.5em;
}

.form-group label {
    display: block;
    margin-bottom: 0.5em;
    color: #A3A3A3;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background-color: #1f1f1f;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 0.8em;
    color: white;
    font-family: 'Satoshi', sans-serif;
    box-sizing: border-box;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23A3A3A3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8em center;
    padding-right: 2.5em; /* Make space for the arrow */
}

.footer-button {
    background-color: white;
    color: #121212;
    border: none;
    width: 100%;
    padding: 1em 2em;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1em;
    transition: background-color 0.3s ease;
    font-family: 'Satoshi', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.footer-button:hover {
    background-color: #e0e0e0;
}

.footer-button.sending {
    cursor: wait;
}

.footer-button.success {
    background-color: #28a745;
    color: white;
    cursor: default;
}

.footer-button.error {
    background-color: #dc3545;
    color: white;
    cursor: default;
}


/* Responsive Styles */

@media (max-width: 1200px) {
    .website-content {
        width: calc(100% - 10em);
        margin-inline: 5em;
    }

    .row-numbers {
        gap: 5em;
    }
    .texts-overlay > .text-actions {
        flex-direction: column;
        gap: 1em;
    }
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .navbar.scrolled {
        width: calc(100% - 1em - 40px);
        padding-inline: 20px;
    }
    .black-cards {
        flex-direction: column;
        gap: 2em;
    }

    .website-content {
        width: calc(100% - 4em);
        margin-inline: 2em;
        margin-top: 6em;
    }

    .texts-overlay h1 {
        font-size: 3em;
    }

    .row-numbers {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3em;
    }

    .navbar .nav-links {
        display: none; /* Hide nav links on small screens, you can implement a hamburger menu here */
    }

    .openmenu {
        display: block;
    }
    
    .section-title h1 {
        font-size: 1.8em;
    }
    .section-title h2 {
        display: none;
    }
    .overlay-bottom {
        height: 90%;
    }
    .small-box {
        display: none;
    }

    .faq-section {
        flex-direction: column;
        gap: 2em;
        margin-top: 6em;
        margin-bottom: 6em;
    }

    .faq-title h2 {
        font-size: 2.5em;
    }

    .footer-wrapper {
        margin-top: 6em;
    }

    .footer-content {
        flex-direction: column;
        gap: 4em;
    }
}

@media (max-width: 600px) {

    .bento-row {
        flex-direction: column;
    }
    .small-box {
        display: flex;
    }

    .bento-row > div {
        min-height: 250px;
    }

    .box-texts h3 {
        font-size: 1.1em;
    }

    #menu {
        height: 60%;
    }

    #chevalet {
        height: 40%;
        right: 20%;
    }

    .box-texts p {
        display: none;
    }
    .website-content {
        width: calc(100% - 4em);
        margin-inline: 1em;
    }

    .texts-overlay {
        width: calc(100% - 4em);
        margin: 2em;
    }

    .texts-overlay h1 {
        font-size: 2.5em;
    }
    

    .row-numbers {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .faq-title h2 {
        font-size: 2em;
    }

    .faq-question p {
        font-size: 1em;
    }

    .footer-wrapper {
        margin-top: 4em;
    }

    .footer-content {
        padding: 2em;
    }

    .footer-left h2 {
        font-size: 2em;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        width: 100%;
    }
}

