
#navbar {
    background-color: var( --my-gray) !important;
}

#logo {
    font-size: 2rem;
    font-weight: 1000;
}

#banner-text-container {
    align-content: center;
}

#banner-text {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

#banner-demo-frame-container {
    max-width: 412px;
    max-height: 715px;
    overflow: hidden;
    border-left: 10px solid black;
    border-right: 10px solid black;
    border-top: 40px solid black;
    border-bottom: 40px solid black;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0 2px 5px;
}

#banner-demo-frame {
    width: 990px;
    height: 1600px;
    transform: scale(0.4);
    transform-origin: top left;
}

.section {
    min-height: 80vh;
}

.section-primary-text {
    font-size: 3rem;
    font-weight: bold;
}
.section-secondary-text {
    color: var(--bs-gray-700);
    font-size: 1.5rem;
}

.section-card {
    width: 380px;
    padding: 20px;
    margin-bottom: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.section-card:hover {
    transform: translateY(-6px);
}

.section-card-secondary-text {
    color: var(--bs-gray-700);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
}

.section-card-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: var(--my-orange-gradient);
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .section {
        margin-top: 10vh;
        margin-bottom: 10vh;
    }
    .section-primary-text {
        font-size: 2rem;
    }
    .section-secondary-text {
        font-size: 1.2rem;
    }
    .section-card {
        width: 100%;
    }
    #banner-text-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #banner-text {
        font-size: 2rem;
        text-align: center;
    }
    #banner-demo-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    #banner-demo-frame-container {
        margin-top: 5vh;
    }
}