@import "/theme.css";

@media screen and (max-width: 768px) {
    .site-header > .nav-button { display: none; }
}

.site-content {
    padding: 0;
}
.entry {
    padding: 5% 8.33%;
    width: 100%;
}
.entry h1 {
    margin: 0;
    color: var(--tertiary);
    text-shadow: 1px 1px 10px var(--main-color-accent), 0 0 5px var(--secondary), 0 0 20px var(--main-color);
    font-family: 'Motley', Helvetica, Arial, Lucida, sans-serif;
    font-size: 130px;
}
.entry h2 {
    margin: 0;
    font-family: 'Motley', Helvetica, Arial, Lucida, sans-serif;
    font-size: 50px; 
}
.entry h3 {
    margin: 0;
    font-family: 'Roboto', Helvetica, Arial, Lucida, sans-serif;
    font-size: 25px; 
}
.entry p { 
    line-height: 1.8em; 
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
}
@media screen and (max-width: 768px) {
    .entry {
        flex-direction: column;
        justify-content: center;
    }
    .entry h1 { font-size: 50px; }
    .entry h2 { font-size: 30px; }
    .entry h3 { font-size: 20px; }
    .entry p { font-size: 16px; }
}

#summary {
    display: flex;
    position: relative;
    overflow: hidden;
    padding: 0;
    height: 1100px;
}
.summary-background {
    position: absolute;
    height: 100%;
}
.summary-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: linear-gradient(to right, var(--main-color) 20%, rgba(0,0,0,0));
    width: 60%;
    height: 100%;
}
.summary-video {
    position: relative;
    top: -100%;
    right: -5%;
    width: 100%;
    height: 3125px;
}
.summary-content {
    z-index: 1;
    padding: 30px 8.33% 0;
}
.summary-text h2 {
    text-shadow: 0 0 20px var(--main-color), 0 0 5px var(--secondary);
}
.summary-text p {
    width: 80%;
    text-shadow: 0 0 20px var(--main-color), 0 0 3px var(--secondary);
}
.summary-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}
.download-link {
    display: flex;
    overflow: hidden;
    box-shadow: 2px 2px 10px var(--main-color), 1px 1px 5px var(--secondary);
    align-items: center;
    border-radius: 8px;
    width: fit-content;
}
.download-link:hover {
    transform: scale(1.15);
}
@media screen and (max-width: 768px) {
    #summary {
        height: 100vh;
        justify-content: flex-start;
    }
    .summary-background {
        width: 100%;
        height: auto;
    }
    .summary-overlay {
        background-image: linear-gradient(to bottom, var(--main-color) 20%, rgba(0,0,0,0));
        width: 100%;
        height: 60%;
    }
    .summary-video {
        position: static;
        width: 100%;
        height: auto;
    }
    .summary-content {
        height: 100%;
    }
    .summary-text p {
        width: 100%;
    }
    .summary-links {
        flex-direction: column;
        gap: 10px;
    }
}

#customers {
    padding-bottom: 0;
}
#customers h2 {
    text-align: center;
    font-size: 32px;
}
.customers-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
.customers-logos img {
    background-color: var(--main-color);
}
@media screen and (max-width: 768px) {
    #customers h2 {
        margin-bottom: 20px;
        font-size: 20px; 
    }
    .customers-logos { 
        gap: 20px;
    }
    .customers-logos img {
        width: 100%;
        height: auto;
    }
}

#showcase {
    display: flex;
}
.showcase-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
}
.showcase-text h2 {
    background-color: var(--main-color);
    text-shadow: -1px -1px 4px var(--tertiary), 1px 1px 4px var(--tempo-blue);
    color: var(--tertiary-accent);
}
.showcase-text p {
    background-color: var(--main-color);
    width: 100%;
    margin: 0;
}
.showcase-list {
    background-color: var(--main-color);
    width: 50%;
    list-style-type: none;
}
.showcase-list li {
    margin-bottom: 32px;
}
.showcase-list li p {
    margin-top: 0;
}
@media screen and (max-width: 768px) {
    #showcase { 
        flex-direction: column; 
        padding: 5%;
    }
    .showcase-text { 
        margin-bottom: 16px;
        width: 100%;
    }
    .showcase-list {
        padding-left: 0;
        width: 100%;
    }
    .showcase-list li p {
        margin-top: 8px;
        font-weight: 400;
    }
}

#features {
    position: relative;
    box-shadow: 0 0 12px 5px var(--main-color-accent), 0 0 12px 5px var(--main-color-accent) inset;
    background-color: var(--main-color);
    margin: 0 8.33% 5%;
    border: 5px solid var(--tertiary);
    border-radius: 20px;
    padding-right: 0;
    padding-left: 0;
    width: 83.33%;
}
.features-heading {
    position: absolute;
    top: -32px;
    left: 10%;
    box-shadow: -20px 0 1px 0 var(--main-color), 20px 0 1px 0 var(--main-color);
    background-color: var(--main-color);
    border-radius: 10px;
    width: fit-content;
    text-align: center;
    text-shadow: -1px -1px 3px var(--tertiary), 2px 2px 10px var(--main-color-accent);
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    align-items: first baseline;
    justify-content: space-evenly;
    row-gap: 20px;
    padding-left: 0;
}
.card {
    display: block;
    box-shadow: 1px 1px 12px 2px var(--tempo-blue);
    background-color: var(--secondary);
    border: 1px solid var(--tempo-blue);
    border-radius: 25px;
    padding: 10px;
    width: 275px;
    text-align: center;
}
.card img {
    display: block;
    aspect-ratio: 3/4;
    box-shadow: inset 0 0 10px 1px var(--secondary-accent);
    background: var(--main-color) radial-gradient(circle at 50% 65%,var(--tertiary) 70%, var(--main-color-accent) 80%);
    margin: 10px auto;
    border-radius: 10px;
    height: 300px;
}
.card-text {
    margin: 25px 0;
    color: var(--main-color)
}
.card-text h3 {
    text-transform: uppercase;
}
.card-text p {
    text-align: left;
    line-height: 1.5rem;
    font-size: 14px;
    font-weight: 500;
}
.card .nav-button {
    text-align: center;
}
@media screen and (max-width: 768px) {
    #features {
        box-shadow: 0 0 5px 2px var(--main-color-accent), 0 0 5px 2px var(--main-color-accent) inset;  
    }
    .features-heading {
        box-shadow: -5px 0 1px 0 var(--main-color), 5px 0 1px 0 var(--main-color);
        top: -20px;
        left: 50%;
        transform: translate(-50%, 0);
        width: max-content;
    }
    .card-container { 
        align-items: center;
        flex-direction: column; 
    }
    .card { width: 250px; }
    .card img { height: 250px; }
    .card-text { margin-top: 5px; }
}

#audience {
    position: relative;
    box-shadow: inset 0 0 100px 10px var(--main-color-accent);
    background-color: var(--main-color);
    height: 700px;
}
.avatar {
    position: absolute;
    aspect-ratio: 1/1;
    background-image: radial-gradient(circle at 60% 75% ,var(--tertiary) 50%, var(--main-color-accent) 70%, var(--tempo-blue) 85%);
    border-radius: 50%;
    vertical-align: middle;
}
#audience .avatar:nth-child(1) {
    top: 5%;
    left: 10%;
    width: 22%;
}
#audience .avatar:nth-child(2) {
    top: 50%;
    left: 5%;
    width: 10%;
}
#audience .avatar:nth-child(3) {
    top: 65%;
    left: 15%;
    width: 14%;
}
#audience .avatar:nth-child(4) {
    top: 55%;
    left: 30%;
    width: 9%;
}
#audience .avatar:nth-child(5) {
    top: 35%;
    left: 35%;
    width: 7%;
}
#audience .avatar:nth-child(6) {
    top: 60%;
    left: 80%;
    width: 17%;
}
#audience .avatar:nth-child(7) {
    top: 10%;
    left: 90%;
    width: 4.5%;
}
.audience-text {
    position: absolute;
    top: 20%;
    left: 50%;
    padding: 20px;
    text-align: center;
    word-wrap: normal;
}
@media screen and (max-width: 768px) {
    #audience { height: auto; }
    #audience .avatar:nth-child(1) { 
        top: 2%; 
        width: 40%;
    }
    #audience .avatar:nth-child(2) { 
        top: 28%;
    }
    #audience .avatar:nth-child(3) { 
        top: 30%;
        left: 28%;
    }
    #audience .avatar:nth-child(4) { 
        top: 29%;
        left: 45%;
    }
    #audience .avatar:nth-child(5) { 
        top: 25%;
        left: 55%;
    }
    #audience .avatar:nth-child(6) { top: 85%; }
    #audience .avatar:nth-child(7) { top: 80%; }
    .audience-text {
        position: static;
        margin: 60% 0 50px;
    }
}

.messages-text {
    position: relative;
    box-shadow: 40px 20px var(--tertiary);
    background-color: var(--secondary-accent);
    margin: auto;
    margin-bottom: 150px;
    border-radius: 20px;
    padding: 50px;
    width: 90%;
    text-align: center;
    color: var(--main-color);
}
.messages-text::after {
    display: block;
    position: absolute;
    bottom: -75px;
    left: 0;
    box-shadow: 30px 15px var(--tertiary);
    background-color: var(--secondary-accent);
    border-radius: 11px;
    height: 35px;
    width: 30%;
    color: var(--secondary-accent);
    text-align: left;
    text-shadow: 10px 10px var(--tertiary);
    line-height: 30px;
    font-size: 200px;
    content: ".";
}
.messages-review {
    display: flex;
}
.satellite-container {
    width: 20%;
}
.satellite {
    box-shadow: 5px 10px 1px 0 var(--tertiary);
    background-color: var(--secondary-accent);
    border-radius: 50% 0 50% 50%;
    height: 80px;
    width: 80px;
}
.satellite::before, .satellite::after {
    display: block;
    position: relative;
    background-color: var(--tempo-blue);
    background-image:
        linear-gradient(to right, var(--secondary-accent) 2px, transparent 1px),
        linear-gradient(to bottom, var(--secondary-accent) 3px, transparent 2px);
    background-size: 10px 10px;
    border: var(--secondary);
    height: 40px;
    width: 100px;
    content: '';
    transform: rotate(40deg);
}
.satellite::before {
    top: -40px;
    left: -80px;
}
.satellite::after {
    left: 60px;
    bottom: -40px;
}
.review-container {
    position: relative;
    box-shadow: 3px 5px 1px var(--tertiary);
    background-color: var(--secondary-accent);
    border-radius: 10px;
    padding: 20px 50px;
    height: fit-content;
    color: var(--main-color);
    line-height: 40px;
}
.review-container::before {
    display: inline-block;
    position: absolute;
    top: -50px;
    left: -10px;
    color: var(--secondary-accent);
    text-shadow: 5px 1px 1px var(--tertiary);
    font-size: 150px;
    content: ".";
    transform: rotate(40deg);
}
.review-source {
    margin-bottom: 20px;
}
.review {
    text-align: center;
    font-weight: 300;    
}
@media screen and (max-width: 768px) {
    .messages-text { box-shadow: 20px 20px var(--tertiary); }
    .messages-review { flex-direction: column; }
    .satellite-container { margin-bottom: 100px; }
    .review-container { padding: 20px; }
}

#plans {
    margin: 0 8.33%;
    padding: 20px 0 50px;
    width: auto;
}
.plan-container {
    display: flex;
    justify-content: space-evenly;
}
.plan {
    background-color: #060606;
    border: 10px ridge var(--secondary-accent);
    border-radius: 20px;
    width: 300px;
    color: var(--tempo-green);
    text-shadow: 1px 1px 2px var(--tempo-blue);
}
.plan-description {
    position: relative;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
}
.plan-button {
    position: absolute;
    right: 10px;
    background-color: var(--tertiary);
    border-radius: 10px;
    padding: 5px 15px;
    color: var(--secondary);
    text-shadow: none;
    text-decoration: none;
    font-weight: 900;
}
.plan-button:hover {
    background-color: var(--secondary);
    color: var(--tertiary);
}
.plan-denomination {
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
}
.plan-price {
    font-size: 50px;
}
.plan-description p {
    margin: 0;
    font-size: 15px;
}
.plan-benefits {
    margin: 0;
    padding: 10px 30px;
    list-style-type: circle;
}
.plan-benefits li {
    padding: 10px 0;
    font-family: 'Roboto', sans-serif;
}
@media screen and (max-width: 768px) {
    .plan-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .plan-benefits li {
        padding: 5px 0;
    }
}

#demo {
    padding: 0;
    text-align: center;
}
.demo-text {
    background-color: var(--main-color);
    padding: 20px;
}
.demo-bottom {
    box-shadow: -5px 0 50px var(--secondary-accent);
    background-color: var(--tempo-blue);
    margin-top: 50px;
    border-radius: 10% 10% 0 0;
    height: 50px;
}