/* =====================================================
   GOOGLE FONTS
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');


/* =====================================================
   GLOBAL
   ===================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    margin-top: 0;
}

img {
    max-width: 100%;
    height: auto;
}


/* =====================================================
   HEADINGS
   ===================================================== */

.big-heading {
    font-size: 3.2rem;
    line-height: 1.3;
    color: #0D0B14;
}

.small-heading {
    font-size: 1rem;
    line-height: 1.6;
    color: #E9DDFB;
    font-weight: 400;
}

.section-heading {
    font-size: 3rem;
    line-height: 1.3;
}


/* =====================================================
   CONTAINER
   ===================================================== */

.container-fluid {
    padding: 7% 15%;
}


/* =====================================================
   SECTIONS
   ===================================================== */

.colored-section {
    background-color: #8B5CF6;
    color: #0D0B14;
}

.white-section {
    background-color: #efebeb;
}


/* =====================================================
   NAVBAR
   ===================================================== */

.navbar {
    padding: 0 0 4.5rem;
}

.navbar-brand {
    font-family: "Ubuntu", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.nav-item {
    padding: 0 18px;
}

.nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    color: #efe8fa;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
}


/* =====================================================
   BUTTONS
   ===================================================== */

.download-button {
    margin: 5% 3% 5% 0;
}


/* =====================================================
   TITLE SECTION
   ===================================================== */

#title {
    font-weight: 500;
    text-align: left;
}

#title .container-fluid {
    padding: 3% 15% 7%;
}


/* =====================================================
   TITLE IMAGE
   ===================================================== */

.title-image {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}


/* =====================================================
   FEATURES
   ===================================================== */

#features {
    position: relative;
}

.feature-icon {
    padding: 4.5%;
}

.feature-info {
    color: #5f5f63;
    line-height: 1.5;
}

.feature-title {
    font-size: 1.5rem;
}

.fas {
    color: #7C3AED;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}

.fas:hover {
    color: #8f64f2;
}


/* =====================================================
   TESTIMONIALS
   ===================================================== */

#testimonials {
    background-color: #7C3AED;
}

.testimonials-image {
    border-radius: 50%;
    width: 10%;
    max-width: 100px;
    margin: 20px;
}

.testimonials-header {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.testimonials-text {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #E9DDFB;
}


/* =====================================================
   PRESS
   ===================================================== */

#press {
    background-color: #7C3AED;
    padding-bottom: 3%;
}

.press-logo {
    margin: 20px 20px 50px;
    width: 15%;
    max-width: 150px;
}


/* =====================================================
   PRICING
   ===================================================== */

#pricing {
    padding: 100px 15%;
}

.pricing-column {
    padding: 2% 3%;
}

.price-text {
    font-size: 2rem;
    line-height: 1.5;
}


/* =====================================================
   CTA
   ===================================================== */

/* Add your CTA styles here */


/* =====================================================
   FOOTER
   ===================================================== */

.footer-text {
    color: #7b7b80;
    font-size: 1rem;
    font-weight: 500;
}

.social-icon {
    margin: 15px;
    color: #7b7b80;
    transition: color 0.2s ease;
}

.social-icon:hover {
    color: #A78BFA;
}


/* =====================================================
   LARGE DESKTOP
   1200px+
   ===================================================== */

@media (min-width: 1200px) {

    .container-fluid {
        padding-left: 12%;
        padding-right: 12%;
    }

    .big-heading {
        font-size: 3.5rem;
    }

    .section-heading {
        font-size: 3.2rem;
    }

    .title-image {
        max-width: 550px;
    }
}


/* =====================================================
   LAPTOP
   992px - 1199px
   ===================================================== */

@media (min-width: 992px) and (max-width: 1199px) {

    .container-fluid {
        padding: 6% 8%;
    }

    #title .container-fluid {
        padding: 4% 8% 6%;
    }

    .big-heading {
        font-size: 2.8rem;
    }

    .section-heading {
        font-size: 2.6rem;
    }

    .navbar-brand {
        font-size: 2.2rem;
    }

    .nav-item {
        padding: 0 10px;
    }

    .nav-link {
        font-size: 1.05rem;
    }

    .title-image {
        max-width: 450px;
    }

    .testimonials-header {
        font-size: 1.6rem;
    }

    .testimonials-text {
        font-size: 1.2rem;
    }

    #pricing {
        padding: 80px 8%;
    }
}


/* =====================================================
   TABLET
   768px - 991px
   ===================================================== */

@media (min-width: 768px) and (max-width: 991px) {

    .container-fluid {
        padding: 8% 7%;
    }

    #title {
        text-align: center;
    }

    #title .container-fluid {
        padding: 5% 7% 8%;
    }

    .big-heading {
        font-size: 2.6rem;
        line-height: 1.3;
    }

    .section-heading {
        font-size: 2.4rem;
    }

    .small-heading {
        font-size: 0.95rem;
    }

    .navbar {
        padding-bottom: 2.5rem;
    }

    .navbar-brand {
        font-size: 2rem;
    }

    .nav-item {
        padding: 8px 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .title-image {
        position: static;
        transform: none;
        width: 70%;
        max-width: 400px;
        margin: 40px auto 0;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .testimonials-image {
        width: 15%;
    }

    .testimonials-header {
        font-size: 1.5rem;
    }

    .testimonials-text {
        font-size: 1.1rem;
    }

    .press-logo {
        width: 20%;
        margin: 15px 15px 35px;
    }

    #pricing {
        padding: 70px 7%;
    }

    .price-text {
        font-size: 1.7rem;
    }
}


/* =====================================================
   MOBILE
   576px - 767px
   ===================================================== */

@media (min-width: 576px) and (max-width: 767px) {

    .container-fluid {
        padding: 10% 6%;
    }

    #title {
        text-align: center;
    }

    #title .container-fluid {
        padding: 5% 6% 10%;
    }

    .big-heading {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .section-heading {
        font-size: 2rem;
        line-height: 1.3;
    }

    .small-heading {
        font-size: 0.9rem;
    }

    .navbar {
        padding-bottom: 2rem;
    }

    .navbar-brand {
        font-size: 1.8rem;
    }

    .nav-item {
        padding: 6px 0;
    }

    .nav-link {
        font-size: 1rem;
    }

    .title-image {
        position: static;
        transform: none;
        width: 75%;
        margin: 30px auto 0;
    }

    .download-button {
        margin: 4% 1% 4% 0;
    }

    .feature-icon {
        padding: 5%;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .feature-info {
        font-size: 0.95rem;
    }

    .testimonials-image {
        width: 18%;
        margin: 15px;
    }

    .testimonials-header {
        font-size: 1.3rem;
    }

    .testimonials-text {
        font-size: 1rem;
    }

    .press-logo {
        width: 25%;
        margin: 15px 10px 30px;
    }

    #pricing {
        padding: 60px 6%;
    }

    .pricing-column {
        padding: 4% 2%;
    }

    .price-text {
        font-size: 1.6rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }
}


/* =====================================================
   SMALL MOBILE
   Below 576px
   ===================================================== */

@media (max-width: 575px) {

    .container-fluid {
        padding: 12% 5%;
    }

    #title {
        text-align: center;
    }

    #title .container-fluid {
        padding: 6% 5% 12%;
    }

    .big-heading {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .section-heading {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .small-heading {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .navbar {
        padding-bottom: 1.5rem;
    }

    .navbar-brand {
        font-size: 1.6rem;
    }

    .nav-item {
        padding: 5px 0;
    }

    .nav-link {
        font-size: 0.95rem;
    }

    .title-image {
        position: static;
        transform: none;
        width: 85%;
        max-width: 350px;
        margin: 25px auto 0;
    }

    .download-button {
        width: 100%;
        margin: 3% 0;
    }

    .feature-icon {
        padding: 7%;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .feature-info {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .testimonials-image {
        width: 25%;
        max-width: 80px;
        margin: 10px;
    }

    .testimonials-header {
        font-size: 1.15rem;
        line-height: 1.5;
    }

    .testimonials-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    #press {
        padding-bottom: 5%;
    }

    .press-logo {
        width: 30%;
        margin: 10px 5px 25px;
    }

    #pricing {
        padding: 50px 5%;
    }

    .pricing-column {
        padding: 5% 0;
    }

    .price-text {
        font-size: 1.5rem;
    }

    .footer-text {
        font-size: 0.85rem;
    }

    .social-icon {
        margin: 10px;
    }
}


/* =====================================================
   EXTRA SMALL PHONES
   Below 400px
   ===================================================== */

@media (max-width: 400px) {

    .big-heading {
        font-size: 1.65rem;
    }

    .section-heading {
        font-size: 1.55rem;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }

    .title-image {
        width: 90%;
    }

    .testimonials-header {
        font-size: 1.05rem;
    }

    .testimonials-text {
        font-size: 0.9rem;
    }
}