/* ---------------------- */
/* FONT DEFINITIONS       */
/* ---------------------- */
@font-face {
    font-family: 'SF Compact Rounded';
    font-style: normal;
    font-weight: normal;
    src: url('/fonts/SFCompactRounded.ttf') format('truetype');
}

@font-face {
    font-family: 'SF Pro Rounded';
    font-style: normal;
    font-weight: normal;
    src: url('/fonts/SF-Pro.ttf') format('truetype');
}

/* ---------------------- */
/* BASE STYLES            */
/* ---------------------- */
body {
    background:
        url('/images/bottom-background.png') no-repeat -380px bottom,
        url('/images/cloud-bottom.png') no-repeat 400px bottom,
        radial-gradient(100% 100% at 50% 0%, #252229 0%, #121213 100%);
    background-color: #0b0e0e;
    background-size: auto, auto;
    background-repeat: no-repeat;
    font-family: 'SF Compact Rounded', sans-serif;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

.main-container {
    margin: auto;
}

.page-container {
    width: 95%;
}

.container {
    max-width: 1920px;
}
.header {
    max-width: 1400px;
}

/* ---------------------- */
/* NAVIGATION CLEAN LAYOUT */
/* ---------------------- */

.navbar {
    background: transparent;
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 94px;
}

.menu-items {
    display: flex;
    gap: 60px;
    margin: 0 auto;
}

.nav-item .nav-link {
    color: #ffffff;
    font-family: 'SF Compact Rounded', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px;
}

.nav-item .nav-link:hover {
    color: #A785FF;
}

/* ---------------------- */
/* CALL TO ACTION BUTTON  */
/* ---------------------- */
.cta,
.cta * {
    box-sizing: border-box;
}

.cta {
    align-items: center;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta:hover {
    background-color: #A785FF;
    border-color: #A785FF;
}

.download-app {
    color: #ffffff;
    font-family: 'SF Compact Rounded', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.vector {
    height: 24px;
}

/* ---------------------- */
/* HEADER AREA            */
/* ---------------------- */
.header-area {
    max-width: 1920px;
    align-items: center;
    background: url('/images/artwork.png') no-repeat;
    background-position: calc(100% - 100px) center;
    background-size: auto;
    display: flex;
    height: 395px;
    justify-content: center;
    margin: auto;
    padding-top: 10px;
    text-align: left;
    width: 90%;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-title {
    color: #fff;
    font-family: 'SfCompactRounded-Black', sans-serif;
    font-size: 96px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
}

.header-subtitle {
    color: #A785FF;
    font-size: 24px;
    margin-top: 10px;
}

/* ---------------------- */
/* FEATURE SECTION        */
/* ---------------------- */
.blur-container {
    background: rgba(255, 255, 255, 0.02);
    /* transparent white */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* Safari support */
    border-radius: 25px;
    padding: 40px;
    color: #fff;
    max-width: 960px;
    margin: 40px auto;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

h3 {
    font-size: 22px;
}
.feature-section {
    max-width: 1400px;
    margin: 0 auto;
    margin-top: -100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    flex-wrap: wrap; /* in case mobile stacks it */
  }  

.feature-container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 1650px;
}

.feature-left-modern {
    width: 50%;
}

.fancy-tagline {
    color: white;
    text-align: left;
    animation: floatTagline 6s ease-in-out infinite;
    padding: 20px 0;
}

.tagline-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tagline-sub {
    font-size: 18px;
    opacity: 0.85;
}

.testimonial-highlight {
    margin-top: 40px;
    color: white;
    font-family: 'SF Compact Rounded', sans-serif;
}

.quote-stars {
    font-size: 24px;
    margin: 0;
    letter-spacing: 2px;
}

.quote-text {
    font-size: 18px;
    font-style: italic;
    opacity: 0.9;
    margin-top: 5px;
}

.feature-right {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 50%;
}

.mockup-image,
.mockup-image-left {
    transform: translateX(70px) translateY(-170px);
    max-width: 100%;
}

/* ---------------------- */
/* ANIMATIONS             */
/* ---------------------- */
@keyframes floatTagline {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ---------------------- */
/* RESPONSIVE STYLES      */
/* ---------------------- */
@media (max-width: 768px) {

    .quote-text,
    .tagline-sub {
        padding: 0 15px;
        text-align: center;
    }

    .tagline-title {
        text-align: center;
    }

    .feature-container {
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }

    .mockup-image,
    .mockup-image-left {
        transform: none;
        margin-top: 20px;
        max-width: 80%;
    }

    .header-title {
        font-size: 64px;
        text-align: center;
    }

    .header-subtitle {
        text-align: center;
        font-size: 16px;
    }

    .header-content {
        text-align: center;
    }
}