/* ######## Variables ######## */
:root {
	--primary: #085698;
	--darkPrimary: #064f8a;
	--background: #ffffff;
    --wallpaper: #f9f9f9;
	--secondary: #7EDE49;
	--tertiary: #248FDE;
}

/* ######## About Us Styling ######## */
#about-us-page {
    font-family: "Signika", sans-serif;
    gap: 125px;
    display: flex;
    flex-direction: column;
	overflow-x: hidden;
    position: relative;
}

.transition-image {
    width: 100%;
    height: 250px;
    z-index: 1;
}

.transition-image:nth-of-type(1) {
    height: 600px;
    margin-top: -400px;
    background-image: linear-gradient(to bottom, #085698 0%, #0985A6 25%, #11A5A0, #2ABC88, #56D163, #74DB4D);
}

.about-section {
    display: flex;
    flex-direction: row;
    padding-left: 6%;
    padding-right: 6%;
    position: relative;
}

.green {
    color: var(--secondary);
}

.blue {
    color: var(--primary);
}

/* ######## Tags ######## */
.tag {
    font-family: "Inter", sans-serif;
    width: fit-content;
    font-size: 13px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    color: black;
    background-color: white;
    padding: 10px;
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 25px;
    align-items: center;
    margin-bottom: 20px;
    transition: transform 200ms ease-in-out;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}

.tag img {
    width: 20px;
    height: 20px;
    color: white;
}

.tag-icon {
    height: 20px;
    width: 20px;
}

.tag-text {
    line-height: 16px;
}

.tag:hover {
    cursor: default;
}

/* ######## Icons ######## */
#icon-stars {
    background-image: url('../../static/images/icons/stars.svg');
}

#icon-download {
    background-image: url('../../static/images/icons/download.svg');
}

#icon-bolt {
    background-image: url('../../static/images/icons/bolt.svg');
    transition: background-image 200ms ease-in-out;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.about-download-button:active #icon-bolt {
    transition-duration: 0ms;
    background-image: url('../../static/images/icons/bolt-white.svg');
}

#icon-bolt-white {
    background-image: url('../../static/images/icons/bolt-white.svg');
}

#icon-info {
    transition: background-image 200ms ease-in-out;
    background-image: url('../../static/images/icons/info.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#about-watch-button:active #icon-info {
    transition-duration: 0ms;
    background-image: url('../../static/images/icons/info-black.svg');
}

#icon-art {
    background-image: url('../../static/images/icons/art.svg');
}

#icon-camera {
    background-image: url('../../static/images/icons/camera.svg');
}

#icon-tavendi {
    background-image: url('../../static/images/icons/tavendi.svg');
}

#icon-post {
    background-image: url('../../static/images/icons/post.svg');
    transform: scale(0.8);
}

#icon-chat {
    background-image: url('../../static/images/icons/chat.svg');
}

#icon-features {
    background-image: url('../../static/images/icons/features.svg');
}

#icon-graph {
    background-image: url('../../static/images/icons/graph.svg');
}

#icon-timer {
    background-image: url('../../static/images/icons/timer.svg');
}

#icon-free {
    background-image: url('../../static/images/icons/free.svg');
}

#icon-lock {
    background-image: url('../../static/images/icons/lock.svg');
}

#icon-cursor {
    background-image: url('../../static/images/icons/cursor.svg');
}

#icon-yoga {
    background-image: url('../../static/images/icons/yoga.svg');
}

#icon-play-light {
    background-image: url('../../static/images/icons/play-light.svg');
    height: 50px;
    width: 50px;
}

#icon-play-dark {
    background-image: url('../../static/images/icons/play-dark.svg');
}

#icon-people {
    background-image: url('../../static/images/icons/people.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.icon-quote {
    background-image: url('../../static/images/icons/quote.svg');
    background-repeat: no-repeat;
    background-size: contain;
    height: 36px;
    width: 36px;
}

.quote-user-rating {
    height: 15px;
    background-image: url('../../static/images/icons/rating.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

/* ######## Information Column (left) ######## */
#landing-section {
    padding-top: 200px;
    padding-bottom: 150px;
}

#about-left-column {
    z-index: 2;
}

#about-title {
    font-size: 72px;
    color: white;
    line-height: 100px;
    margin-bottom: 20px;
}

#about-description {
    color: white;
    font-size: 22px;
    line-height: 36px;
}

.about-button-row {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

#about-description-mobile {
    display: none;
}

.about-download-button {
    background-color: var(--secondary);
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: row;
    padding: 13px;
    font-size: 14px;
    padding-left: 33px;
    padding-right: 43px;
    width: fit-content;
    color: var(--primary);
    border-radius: 10px;
    margin-top: 40px;
    user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
    gap: 10px;
    align-items: center;
    border: var(--secondary) 2px solid;
    transition: background-color 200ms ease-in-out, color 200ms ease-in-out;;
    font-weight: 600;
}

.about-download-button:hover {
	cursor: pointer;
    background-color: #7dde49c0;
}

.about-download-button:active {
    transition: color 0ms ease;
    color: white;
}

.button-icon {
    height: 24px;
    width: 24px;
}

.button-icon svg {
    height: 24px;
    width: 24px;
}

#about-watch-button {
	border: rgba(255, 255, 255, 0.5) 2px solid;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
    background-color: rgba(255, 255, 255, 0.2);
	font-family: 'Inter', sans-serif;
    display: flex;
    height: 56px;
    width: 170px;
    font-size: 14px;
    margin-top: 40px;
    box-sizing: border-box;
	color: white;
	border-radius: 10px;
    flex-direction: row;
    justify-content: center;
    transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
    gap: 10px;
    align-items: center;
	user-select: none;
	-webkit-user-select: none;
    box-sizing: border-box;
	-ms-user-select: none;
}

#about-watch-button {
    color: white;
    transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
}

#about-watch-button:active a {
    transition-duration: 0ms;
    color: black;
    font-weight: 500;
}

#about-watch-button:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.4);
}

#about-watch-button:active {
    transition-duration: 0ms;
    color: black;
    background-color: white;
    font-weight: 500;
}

.stat-check {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    color: white;
    font-family: 'Inter', sans-serif;
    gap: 5px;
    font-size: 14px;
    align-items: center;
}

.stat-icon {
    background-image: url('../../static/images/icons/verified.svg');
    background-repeat: no-repeat;
    background-size: contain;
    height: 20px;
    width: 20px;
}

/* ######## Visual Column (right) ######## */
#about-right-column {
    z-index: 2;
    width: 275px;
    padding-left: 6%;
    position: relative;
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .phone-card {
        position: absolute;
        top: 0;
        right: 0;
        height: 400px;
        width: 275px;
        border-radius: 20px;
        border: 1px solid white;
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        padding: 30px;
        transition: z-index 200ms ease-in-out;
    }
}

.phone-card:nth-child(1) {
    background-color: rgb(216, 233, 251, 0.4);
    transform: translateX(-140px) translateY(40px);
}

.phone-card:nth-child(2) {
    background-color: rgba(36, 188, 171, 0.4);
    z-index: 3;
    transform: translateY(-60px);
}

.phone-card:nth-child(3) {
    background-color: rgba(0, 0, 0, 0.4);
    transform: translateX(105px) translateY(140px);
    z-index: 2;
}

.phone-card-image {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* ######## Demonstration ######## */
#about-description-container {
    overflow: visible;
    padding-bottom: 40px;
    padding-top: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#tag-demonstrate {
    background-color: white;
    color: black;
    margin-bottom: 40px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}

#bubble-mockup {
    height: 500px;
    width: 250px;
    filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.25));
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: background-image 200ms ease-in-out;
}

.selected {
    border-color: black !important;
}

.mockup-wrapper {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    border: white 3px solid;
}

.about-title {
    font-size: 60px;
    color: white;
}

#about-demonstration-container {
    max-width: 100%;
}

#about-demonstration-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: 40px;
    color: white;
}

.wrapper {
    align-items: center;
    display: flex;
    box-sizing: border-box;
    gap: 15px;
}

#about-demonstration-graph {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 530px;
}

.bubble-column {
    display: flex;
    flex-direction: column;
    justify-content: left;
    padding-top: 10px;
    gap: 5px;
    height: fit-content;
    font-size: 20px;
    text-align: start;
    color: var(--primary);
}

.about-graph-bubble {
    display: flex;
    flex-direction: row;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 3px solid white;
    border-radius: 25px;
    padding: 15px;
    gap: 15px;
    width: 400px;
    height: 23%;
    cursor: default;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
    transition: transform 200ms ease-in-out, border-color 200ms ease-in-out;
    user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.about-graph-bubble:hover {
    transform: scale(1.03);
    cursor: pointer;
}

.about-graph-bubble:active {
    transition-duration: 0ms;
    border: var(--primary) 3px solid;
}

.bubble-text {
    font-family: 'Inter', sans-serif;
    text-align: left;
    color: rgb(85, 85, 85);
    font-size: 14px;
}

.about-graph-text {
    width: fit-content;
}

.about-graph-icon {
    box-sizing: border-box;
    height: 44px;
    width: 44px;
    color: white;
    background-color: black;
    background-image: linear-gradient(to top, #13b59f, #13b59f, #5089e0);
    border-radius: 12px;
    border: white 2px solid;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.about-graph-icon div {
    height: 28px;
    width: 28px;
    background-repeat: no-repeat;
    background-size: contain;
}

/* Mockup Pages */
.mockup-one {
    background-image: url('../../static/images/camera_mockup.png');
}

.mockup-two {
    background-image: url('../../static/images/generate_mockup.png');
}

.mockup-three {
    background-image: url('../../static/images/post_mockup.png');
}

.mockup-four {
    background-image: url('../../static/images/mockup.png');
}

/* ######## Features ######## */
#about-features {
    scroll-margin-top: 10vh;
    padding-bottom: 40px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    height: fit-content;
    justify-content: center;
    text-align: center;
    align-items: center;
}

#feature-title {
    text-align: center;
}

#feature-caption {
    font-family: 'Inter', sans-serif;
    margin-top: 20px;
    margin-bottom: 60px;
    color: white;
}

.feature-cards-row {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-bottom: 30px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    height: 200px;
    width: 400px;
    padding: 30px;
    padding-top: 20px;
    padding-bottom: 0px;
    box-sizing: border-box;
    gap: 15px;
    text-align: left;
    backdrop-filter: blur(3px);
    border: white 3px solid;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
    overflow-y: hidden;
}

.cards-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: linear-gradient(to right, #13b59f, #5089e0);
    border-radius: 14px;
    border: white 2px solid;
}

.feature-card-icon div {
    height: 28px;
    width: 28px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.feature-card-icon svg {
    height: 36px;
    width: 36px;
    color: var(--primary);
}

.feature-card-title {
    font-size: 20px;
    color: var(--primary);
}

.feature-card-description {
    color: rgb(94, 94, 94);
    font-family: 'Inter', sans-serif;
    line-height: 24px;
    font-weight: 500;
}

/* ######## Demo Video ######## */
#about-demo-video {
    flex-direction: column;
    align-items: center;
    padding-bottom: 10px;
}

#about-demo-video {
    scroll-margin-top: 150px;
}

#demo-title {
    color: white;
}

#demo-caption {
    color: white;
    font-family: 'Inter', sans-serif;
    margin-top: 20px;
    margin-bottom: 60px;
}

#video-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    aspect-ratio: 16 / 9;
    background-color: rgba(255, 255, 255, 0.3);
    border: 3px solid white;
    padding: 20px;
    border-radius: 40px;
}

#demo-video {
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    box-sizing: border-box;
    outline: none !important;
}

#demo-video:nth-of-type(2) {
    display: none;
}

#play-button-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#demo-play-btn {
    width: 80px;
    height: 80px;
    background-image: linear-gradient(to right, #268ad7, #034daf);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    transition: filter 300ms ease-in-out;
    padding-left: 3px;
    box-sizing: border-box;
    filter: brightness(100%);
    user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
    margin-bottom: 10px;
    border: 2px solid white;
}

#demo-play-btn:hover {
    filter: brightness(110%);
    cursor: pointer;
}

#demo-play-btn:active {
    transition-duration: 0ms;
    filter: brightness(160%);
}

#demo-play-btn svg {
    height: 50px;
    width: 50px;
}

#video-caption {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 5px;
}

#video-duration {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgb(230, 230, 230);
}

/* ######## Testimonials ######## */
#about-testimonials {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

#tag-testimonials {
    background-color: white;
    color: black;
    margin-bottom: 40px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}

#testimonials-title {
    color: white;
}

#testimonials-caption {
    color: white;
    font-family: 'Inter', sans-serif;
    margin-top: 20px;
    margin-bottom: 60px;
}

#quote-container {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.quote-card {
    width: 375px;
    height: 220px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
    border: 3px solid white;
    border-radius: 25px;
    padding: 30px;
    box-sizing: border-box;
    position: relative;
}

.quote-icon {
    height: 56px;
    width: 56px;
    background-image: linear-gradient(to right, #13b59f, #13b59f, #5089e0);
    border-radius: 15px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid white;
    color: white;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
}

.quote-text {
    font-family: 'Inter', sans-serif;
    color: rgb(90, 90, 90);
    line-height: 22px;
    font-style: italic;
}

.quote-user-row {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
    gap: 20px;
}

.user-icon {
    height: 54px;
    width: 54px;
    border-radius: 40px;
    background-color: black;
    border: solid 3px white;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
    object-fit: cover;
 }

.quote-user-column {
    display: flex;
    flex-direction: column;
}

.quote-user-city {
    color: gray;
    font-size: 13px;
    margin-bottom: 3px;
}

/* ######## Play Download ######## */
#about-play {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 250px;
}

#tag-play {
    background-color: black;
    border: 2px solid white;
    box-shadow: 2.5px 2.5px 0 0 black;
}

#play-row {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
}

#play-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#play-people-image {
    height: 300px;
    width: 500px;
    object-fit: cover;
    border-radius: 25px;
    border: 2px solid white;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}

#play-title {
    color: white;
    max-width: 70%;
}

#badge-container {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.app-badge {
    height: 60px;
    width: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 100ms ease-in-out, filter 100ms ease;
}

.app-badge:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.app-badge:active {
    filter: brightness(65%);
}

.app-badge:nth-of-type(1) {
    width: 200px;
}

#play-caption {
    color: white;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
}

#footer-transition {
    transform: rotateX(180deg);
    margin-bottom: -10px;
    height: 300px;
    margin-top: -150px;
}

/* ######## Mobile Styling ######## */
@media (max-width: 580px) {
    /* ######## General Styling ######## */
	.transition-image {
		width: 100vw;
        margin-top: -1px;
        margin-bottom: -1px;
	}

    .transition-image:nth-of-type(1) {
        margin-top: -550px;
        margin-bottom: -1px;
    }

    .about-section {
		width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
	}

    /* ######## Landing Section ######## */
    #landing-section {
        padding-top: 85px;
        display: flex;
        flex-direction: column;
        gap: 100px;
        padding-bottom: 10px;
    }

    #about-right-column {
        display: none;
    }

    #about-title {
        font-size: 50px;
        line-height: 60px;
        margin-top: 50px;
    }

    #about-description {
        display: none;
    }

    #about-description-mobile {
        display: block;
        font-family: 'Inter', sans-serif;
        color: white;
        line-height: 24px;
    }

    .about-download-button {
        width: 50%;
        max-width: 170px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        box-sizing: border-box;
        overflow: hidden;
        padding: 10px;
        text-align: center;
    }

    .stat-check {
        display: none;
    }

    #mobile-mockup {
        height: fit-content;
        padding: 15px;
        background-color: rgba(255, 255, 255, 0.25);
        border: 3px solid white;
        border-radius: 50px;
        width: fit-content;
        margin-top: 50px;
        margin-right: auto;
        margin-left: auto;
    }


    #mobile-display {
        background-image: url('../../static/images/mockup.png');
        background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
        height: 500px;
        width: 250px;
    }

    .about-button-row {
        justify-content: center;
    }

    #about-watch-button {
        display: none;
    }

    /* ######## Demonstration Section ######## */
    .wrapper {
        justify-content: space-between;
        gap: 10px;
    }

    #about-demonstration-graph {
        justify-content: center;
    }

    .about-graph-bubble {
        width: fit-content;
        height: fit-content;
        padding: 5px;
        border-radius: 20px;
    }

    .bubble-column {
        display: none;
    }

    /* ######## Features Section ######## */
    .feature-cards-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .feature-card {
        transition: height 200ms ease-in-out;
    }

    .feature-card-title {
        display: flex;
        flex-direction: row;
        width: calc(100% - 62px);
    }

    .feature-card-title::after {
        content: '';
        display: flex;
        height: 24px;
        width: 24px;
        background-image: url('../../static/images/icons/expand.svg');
        background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
        margin-left: auto;
        transition: transform 200ms ease-in-out;
    }

    .collapsed-card {
        height: 98px;
    }

    .collapsed-card .cards-row {
        margin-bottom: 0px;
    }

    .collapsed-card .feature-card-description {
        display: none;
    }

    .collapsed-card .feature-card-title::after {
        transform: rotate(-90deg);
    }

    /* ######## Video Section ######## */
    #about-demo-video {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    #video-container {
        width: 90%;
        aspect-ratio: 9 / 16;
    }

    /* ######## Testimonials Section ######## */
    #about-testimonials {
        text-align: center;
    }

    #quote-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .quote-card {
        text-align: left;
    }

    /* ######## Download Section ######## */
    #play-section {
        max-width: 100%;
    }

    #play-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        text-align: center;
    }

    #play-column {
        max-width: 100%;
    }

    #badge-container {
        max-width: 100%;
    }

    .app-badge:nth-of-type(1) {
        width: 100%;
        height: 50px;
        aspect-ratio: 4 / 1;
    }

    .app-badge:nth-of-type(2) {
        width: 100%;
        height: 50px;
        aspect-ratio: 3 / 1;
    }

    #play-people-image {
        max-width: 100%;
        aspect-ratio: 2 / 1;
        height: 200px;
        margin-top: 30px;
    }

    #play-title {
        margin-left: auto;
        margin-right: auto;
    }

}
