@font-face {
    font-family: 'Assistant';
    src: url('fonts/Assistant.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Butler';
    src: url('fonts/Butler_Bold.otf') format('opentype');
    font-weight: bold;
}

@font-face {
    font-family: 'Butler';
    src: url('fonts/Butler_ExtraBold.otf') format('opentype');
    font-weight: 800;
}

@font-face {
    font-family: 'Butler';
    src: url('fonts/Butler_Light.otf') format('opentype');
    font-weight: 300;
}

@font-face {
    font-family: 'Butler';
    src: url('fonts/Butler_Medium.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'Butler';
    src: url('fonts/Butler_Regular.otf') format('opentype');
    font-weight: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Italic.ttf') format('truetype');
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Poppins, sans-serif;
    background-color: #FBFBF9;
    color: #33312F;
    height: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

a {
    color: #61c9b0;
    text-decoration: none;
}

a:hover {
    color: #2FBA99;
}

.alert-success {
    background-color: #e0f7f2 !important;
    color: #157866 !important;
    border: none;
}
.alert-danger,
.alert-error {
    background-color: #fbe9e7 !important;
    color: #a8352f !important;
    border: none;
}
.alert-warning {
    background-color: #fff6e5 !important;
    color: #8c6b1f !important;
    border: none;
}
.alert-info {
    background-color: #eee5dc !important;
    color: #33312f !important;
    border: none;
}

.nav-links a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
}

.hamburger {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
    opacity: 0.7;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 20px;
    position: absolute;
    font-weight: 400;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
}

.mobile-menu.light {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: black;
}

.mobile-menu a {
    color: white;
    padding: 0 0;
    text-decoration: none;
    font-size: 15pt !important;
}

.mobile-menu.light a {
    color: black;
}

/* Responsive Behavior */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu.show {
        display: flex;
    }


}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding-top: 11px;
    padding-bottom: 10px;
}


.close-button {
    opacity: 0.7;
    font-size: 18px;
    color: white;
    cursor: pointer;
    padding: 0 0;
    line-height: 1;
    margin-right: -3px;
}

.mobile-menu.light .close-button {
    color: black;
}


.full-height-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #33312F;
    color: white;
    text-align: center;
    width: 100%;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden; /* Hide overflowing images */
}

/* Hide all slides initially */
.slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1);
    transition: transform 4s linear;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zoom-in {
    transition: transform 7s ease-out;
    transform: scale(1.09);
}

.zoom-in-last {
    transform: scale(1.05);
}

.slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;  /* Stacks the items vertically */
    justify-content: center;  /* Center vertically */
    align-items: center;      /* Center horizontally */
    text-align: center;
    color: white;
    background-color: #00000099;
}

.slideshow-overlay .title {
    font-size: 50pt;
    line-height: 1.2;
    font-family: Butler, serif;
    font-weight: 300;
}

.header .logo {
    height: 24px;
}

.header-light .logo {
    height: 24px;
}

@media (max-width: 1024px) {
    .slideshow-overlay .title {
        font-size: 32pt;
    }

    .action-button {
        width: 180px !important;
        font-size: 16px;
    }

    .slideshow-overlay {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .slideshow-overlay .title {
        font-size: 24pt;
    }

    .action-button {
        display: block !important;
        width: 100% !important;
        margin: 10px 0 !important;
    }

    .slideshow-overlay {
        padding: 0 10px;
    }

}

@media (max-width: 480px) {
    .slideshow-overlay .title {
        font-size: 30pt;
    }

    .slideshow-container,
    .slides,
    .slides img {
        height: 100vh;
    }

    .slideshow-overlay {
        padding: 20px 10px 80px;
    }

    .header .logo {
        height: 19px;
    }

    .header-light .logo {
        height: 19px;
    }
}

.header {
    z-index: 500;
    height: 60px;
}

.header .container {
    display: flex;
    align-items: center;        /* vertical center */
    justify-content: space-between;
    height: 100%;
}

.blurred-background {
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-light {
    z-index: 500;
    height: 60px;
    position: fixed;
    width: 100%;
}

.header-light .container {
    display: flex;
    align-items: center;        /* vertical center */
    justify-content: space-between;
    height: 100%;
}

.header a {
    font-size: 11pt;
    color: white;
    opacity: 0.7;
    text-decoration: none;
    transition: opacity 0.15s linear;
}

.header a:hover {
    opacity: 1.0;
    cursor: pointer;
}

.header-light a {
    font-size: 11pt;
    color: #33312f;
    text-decoration: none;
    transition: opacity 0.15s linear;
}

.header-light a:hover {
    opacity: 0.85;
    cursor: pointer;
}

.action-button {
    height: 56px;
    line-height: 56px;
    font-weight: normal;
    vertical-align: middle;
    border-radius: 28px;
    font-size: 17px;
    cursor: pointer;
    opacity: 1.0;
    text-align: center;
}

.action-button.primary {
    background-color: #62c7b2;
    color: white;
}

.action-button.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    line-height: 54px;
}

@media (max-width: 768px) {
    .action-button {
        height: 44px;
        line-height: 44px;
        font-size: 15px;
    }

    .action-button.secondary {
        line-height: 36px;
    }
}

.action-button:hover {
    opacity: 0.9;
}

.intro-section {
    padding-top: 120px;
    padding-bottom: 150px;
    text-align: center;
}

.intro-section .title {
    font-family: Butler, serif;
    font-weight: 300;
    line-height: 1.1;
    font-size: 44pt;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 14pt;
    font-weight: 400;
}

@media (max-width: 768px) {
    .intro-section {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .intro-section .title {
        font-size: 28pt;
        line-height: 1.1;
        padding: 0 10px;
    }

    .intro-section p {
        font-size: 12pt;
        line-height: 1.4;
        padding: 0 10px;
    }
}

.how-it-works-section .title {
    font-family: Poppins, sans-serif;
    font-weight: 500;
    line-height: 1.1;
    font-size: 26pt;
    margin-bottom: 40px;
}

.how-it-works-section .step-title {
    font-size: 14pt;
    margin-bottom: 0;
    font-weight: 500;
}

.how-it-works-section .item {
    display: flex;
    align-content: center;
    align-items: center;
}

.how-it-works-section .step {
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 20px;
    background-color: #EDE6DC;
    align-items: center;
    align-content: center;
    font-weight: 500;
}

@media (max-width: 768px) {
    .how-it-works-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .how-it-works-section .title {
        font-size: 20pt;
        margin-bottom: 50px;
        margin-top: 30px;
        text-align: center;
    }

    .how-it-works-section .item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .how-it-works-section .item > div:first-child {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .how-it-works-section .step-title {
        font-size: 13pt;
    }

    .how-it-works-section .step {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .how-it-works-section .col-md-6[style*="padding: 60px"] {
        padding: 30px !important;
    }

    .how-it-works-section .action-button {
        margin: 20px auto 0;
        padding: 0;
        text-align: center;
    }
}

.how-it-works-section .col-md-6 {
    min-height: 200px;
}


.points-section {
    margin-top: 150px;
    background-color: white;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}

.points-section .title {
    font-family: Butler, serif;
    font-weight: 400;
    line-height: 1.1;
    font-size: 36pt;
    margin-bottom: 10px;
}

.points-section .item {
    margin-top: 70px;
}

.points-section .item .title {
    font-family: Poppins, sans-serif;
    font-weight: 500;
    font-size: 15pt;
    margin-top: 20px;
    margin-bottom: 8px;
}

.points-section .icon-container {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    text-align: center;
    padding-top: 20px;
    margin: 0 auto;
}

.points-section .icon-container img {
    height: 40px;
    object-fit: cover;
}

.points-section p {
    font-size: 15pt;
}

.points-section .card-title {
    font-size: 18pt;
}

@media (max-width: 768px) {
    .points-section {
        margin-top: 60px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .points-section .title {
        font-size: 26pt;
        margin-bottom: 20px;
    }

    .points-section p {
        font-size: 14pt;
    }

    .points-section .item {
        margin-top: 40px;
        font-size: 12.5pt;
    }

    .points-section .item .title {
        font-size: 12.5pt;
    }

    .points-section .item .content {
        font-size: 12.5pt;
    }

    .points-section .icon-container {
        width: 64px;
        height: 64px;
        border-radius: 32px;
        padding-top: 16px;
    }

    .points-section .icon-container img {
        height: 36px;
    }

    .points-section .row:last-of-type {
        margin-top: 60px;
    }

    .points-section .row .col-md-6 img {
        height: 200px !important;
    }

    .points-section .row .col-md-6 div[style*="padding: 40px"] {
        padding: 20px !important;
    }

    .points-section .info-cards .content {
        font-size: 12.5pt;
    }

}

.sales-section {
    padding-top: 70px;
    padding-bottom: 70px;
    color: white;
    text-align: center;
}

.sales-section .title {
    font-family: Butler, serif;
    font-weight: 300;
    line-height: 1.15;
    font-size: 44pt;
    margin-bottom: 10px;
}

.sales-section .sale-option-picker {
    font-size: 13pt;
    font-weight: 400;
    margin-top: 40px;
    height: 44px;
    border-radius: 22px;
    background-color: rgba(255, 255, 255, 0.2);

    display: inline-block;
    line-height: 44px;
    vertical-align: middle;
    padding-left: 2px; padding-right: 2px;
}

.sales-section .sale-option {
    height: 40px;
    border-radius: 20px;
    margin-right: 0;
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    opacity: 0.9;
    cursor: pointer;
    transition: opacity 0.1s linear;
}

.sales-section .sale-option.active {
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 1.0;
    color: #33312F;
}

.sales-section .sales-option-content {
    color: #33312F;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    margin-top: 40px;
    font-size: 13pt;
}

.sales-section .sales-option-content h2 {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .sales-section .title {
        font-size: 26pt;
        line-height: 1.2;
        padding: 0 10px;
    }

    .sales-section .sales-option-content {
        flex-direction: column;
        margin-top: 30px;
        margin-left: 2px;
        margin-right: 2px;
        padding: 15px;
    }

    .sales-section .sales-option-content ul {
        padding-left: 18px;
    }

    .sales-section .sales-option-content .action-button {
        width: 100% !important;
        max-width: 240px;
        margin-top: 20px;
    }

    .sales-section .sales-option-content div[style*="padding: 60px"] {
        padding: 30px !important;
    }

    .sales-section .sales-option-content .col-12 {
        margin-bottom: 30px;
    }

    /* Image containers */
    .sales-section .sales-option-content .col-12[style*="background-image"] {
        min-height: 240px;
        background-size: cover;
        background-position: center;
    }
}

.app-section {
    background-color: #fbfbf9;
    padding-top: 130px;
    padding-bottom: 120px;
    text-align: center;
}

.app-section .title {
    font-family: Butler, serif;
    font-weight: 400;
    line-height: 1.1;
    font-size: 36pt;
    margin-bottom: 10px;
}

.app-section .content {
    font-size: 15pt;
}

.app-section .screenshot {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .app-section .title {
        font-size: 26pt;
        line-height: 1.2;
    }

    .app-section .content {
        font-size: 12.5pt;
    }
}

.site-footer {
    background-color: #f7f7f5;
    padding-top: 20px;
    font-size: 12px;
    font-weight: 400;
    color: black;
}

.footer-bottom {
    text-align: center;
    margin-top: 80px;
    font-size: 13px;
    padding-bottom: 20px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    gap: 8px;
    color: #000000;
    margin-top: 5px;
    opacity: 0.75;
}

.footer-legal-links a {
    color: #000000;
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

.footer-legal-links a:hover {
    text-decoration: underline;
}

.footer-legal-links span {
    color: #000000;
    opacity: 0.5;
}