@charset "UTF-8";

:root {
    --brand-deep: #3b0f7a;
    --brand-mid: #6b1fcc;
    --brand-bright: #9450ff;
    --brand-soft: #d8c2ff;
    --brand-ink: #241447;
    --brand-muted: #6e6580;
    --surface: #f7f4fb;
    --accent-hover: #7a2fe0;
}

body {
    font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
    position: relative;
}

a {
    color: var(--brand-ink);
}

a:hover,
a:focus {
    color: var(--accent-hover);
}

h1 {
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 45px;
    font-weight: 500;
    color: var(--brand-deep);
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

h3 {
    color: var(--brand-ink);
    font-size: 33px;
    font-weight: 600;
}

p {
    color: var(--brand-muted);
}

.btn {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.375rem 1.35rem;
    transition: all 0.3s ease;
}

.btn-light {
    border-radius: 3px;
    background: #fff;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-deep);
    margin: 0.5rem;
    padding: 0.7rem 1.6rem;
    line-height: 1.8;
}

.btn-light:hover {
    color: var(--accent-hover);
}

.light-bg {
    background-color: var(--surface);
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

@media (max-width: 767px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }
}

/* NAVBAR */

.nav-menu {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-menu.is-scrolling,
.nav-menu.menu-is-open {
    background: linear-gradient(135deg, #3b0f7a 0%, #7a2fe0 100%);
    box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.12);
}

.nav-menu.is-scrolling {
    padding: 0;
}

.navbar-nav .nav-link {
    position: relative;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
        font-size: 14px;
    }

    .navbar-nav > .nav-item > .nav-link.active:after {
        content: "";
        border-bottom: 2px solid white;
        left: 1rem;
        right: 1rem;
        bottom: 5px;
        height: 1px;
        position: absolute;
    }
}

@media (max-width: 991px) {
    .navbar-nav .nav-item {
        text-align: center;
    }
}

/* HERO */

header {
    padding: 100px 0 0;
    text-align: center;
    color: #fff;
}

.bg-gradient {
    background-image: linear-gradient(
        160deg,
        #2a0a5c 0%,
        #5b18b8 36%,
        #8b3dff 68%,
        #c4a0ff 100%
    );
}

.tagline {
    font-size: 23px;
    font-weight: 400;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.img-holder {
    height: 0;
    padding-bottom: 33%;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .img-holder {
        padding-bottom: 50%;
    }
}

@media (max-width: 767px) {
    .tagline {
        font-size: 17px;
    }

    .img-holder {
        padding-bottom: 100%;
    }
}

/* FEATURES */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.75rem 1.5rem;
    border-left: 3px solid var(--brand-bright);
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-deep);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.65;
}

.gradient-fill:before {
    color: var(--brand-soft);
    background: linear-gradient(to bottom, #d8c2ff 0%, #6b1fcc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.box-icon {
    box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.14);
    padding: 10px;
    width: 70px;
    border-radius: 3px;
    margin-bottom: 1.5rem;
    background-color: #fff;
}

/* GALLERY */

.img-gallery .owl-item {
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.08);
    transform: scale(0.8);
    transition: all 0.3s ease-in;
    border-radius: 18px;
    overflow: hidden;
}

.img-gallery .owl-item.center {
    transform: scale(1);
}

.img-gallery .owl-item img {
    border-radius: 18px;
}

.owl-next.disabled,
.owl-prev.disabled {
    opacity: 0.5;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 60px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #d9ccec;
    width: 35px;
    height: 8px;
    border-radius: 10px;
    transition: all 0.3s ease-in;
}

.owl-theme .owl-dots .owl-dot:hover span,
.owl-theme .owl-dots .owl-dot.active span {
    background: #6b1fcc;
}

/* CTA */

.call-to-action {
    text-align: center;
    color: #fff;
    margin: 3rem 0;
}

.call-to-action .box-icon {
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    transform: scale(0.85);
    margin-bottom: 2.5rem;
}

.call-to-action h2 {
    color: #fff;
}

.call-to-action .tagline {
    font-size: 16px;
    font-weight: 400;
    color: white;
    max-width: 650px;
    margin: 0 auto;
}

.btn-light img {
    margin-right: 0.4rem;
    vertical-align: text-bottom;
}
