/* ============================================
   Motion Tech - Coming Soon Page Styles
   ============================================ */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* ===== MAIN CONTAINER ===== */
.main-container {
    min-height: 100vh;
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 240px 0 65px;
    background-image: url('../images/background-image.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.coming-texture {
    display: grid;
    gap: 50px;
    place-items: center;
}

/* Add overlay for better text readability */
.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(255, 255, 255, 0.85);*/
    z-index: 0;
}

/* Ensure content is above overlay */
.main-container>* {
    position: relative;
    z-index: 1;
}

/* ===== LOGO SECTION ===== */
.logo-section {
    text-align: center;
    margin-bottom: 0px;
    position: absolute;
    top: -50px;
    z-index: 20;
}

.main-logo {
    width: 440px;
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto 15px;

}

.coming-soon-badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #F2E0D5, rgba(255, 255, 255, 0) 20.8%, #009DFF 130.85%);
    backdrop-filter: blur(150px);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 25px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(93, 173, 226, 0.3);
    margin-top: 25px;
    margin-bottom: 60px;
}

/* ===== CONTENT SECTION ===== */

.content-section-wrapper {
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(75px);
    padding: 20px;
    width: 100%;
}

.content-section {
    text-align: center;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.main-heading {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 8px;
    color: #2C5F7C;
    text-transform: uppercase;
    margin: 0px 0 30px;
    line-height: 1.2;
}

.sub-heading {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #999999;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.divider-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #009FFF 0%, rgba(255, 255, 255, 0.73) 100%);
    margin: 0 auto 40px;
    border-radius: 2px;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    display: grid;
    grid-template-columns: repeat(5, 0fr);
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.category-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: opacity(0.7);
    transition: all 0.3s ease;
    box-shadow: 0px 0px 50px 0px #0000001A;
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.category-icon:hover {
    transform: translateY(-5px);
    filter: opacity(1);
}

.category-label {
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* ===== DESCRIPTION SECTION ===== */
.description-section {
    max-width: 800px;
    margin: 40px auto 40px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.description-text {
    font-size: 12px;
    line-height: 1.8;
    color: #858585;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ===== CIRCLE LOGO SECTION ===== */
.circle-logo-section {
    position: absolute;
    bottom: 120px;
    left: 60px;
}

.circle-logo {
    width: 150px;
    height: 150px;
    display: block;
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(100px);
    z-index: 10;
}

.footer-text {
    font-size: 12px;
    color: #999999;
    letter-spacing: 1.5px;
    font-weight: 400;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

@media screen and (max-width: 768px) {

    /* Change background image for mobile */
    /* Change background image for mobile */
    .main-container {
        background-image: url('../images/bg-img-for-mobile-screen.png');
        background-attachment: scroll;
        padding: 320px 0px 65px;
    }


    /* Logo Section */
    .logo-section {
        width: 100% !important;
        left: 0 !important;
        top: 40px !important;
    }

    .main-logo {
        width: 320px !important;
        max-width: 90%;
    }

    .coming-soon-badge {
        font-size: 12px;
        padding: 7px 28px;
        letter-spacing: 1.5px;
    }

    .coming-texture {
        gap: 0;
    }

    .coming-soon-badge {
        margin-bottom: 18px;
    }

    /* Content Section */
    .main-heading {
        font-size: 28px;
        letter-spacing: 4px;
        margin: 20px 0 12px;
    }

    .sub-heading {
        font-size: 16px;
        letter-spacing: 3px;
        margin: 0 0 15px;
    }

    .divider-line {
        width: 50px;
        margin: 0 auto 30px;
    }

    /* Categories Section */
    .categories-section {
        gap: 25px;
        margin: 10px 0;
    }

    .category-icon {
        width: 50px;
        height: 50px;
    }

    .category-label {
        font-size: 12px;
    }

    /* Description Section */
    .description-section {
        padding: 15px;
        margin: 30px auto 100px;
    }

    .description-text {
        font-size: 12px;
        line-height: 1.7;
    }

    /* Circle Logo - Center it on mobile */
    .circle-logo-section {
        position: absolute;
        bottom: 75px;
        left: 50%;
        transform: translateX(-50%);
    }

    .circle-logo {
        width: 100px;
        height: 100px;
    }

    /* Footer */
    .footer-text {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media screen and (max-width: 480px) {
    .main-container {
        padding: 250px 0 65px;
    }

    .main-logo {
        width: 95%;
    }

    .main-heading {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .coming-texture {
        gap: 0px;
        margin-top: -50px;
    }

    .coming-soon-badge {
        margin-bottom: 30px;
    }

    .sub-heading {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .categories-section {
        gap: 12px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-label {
        font-size: 11px;
    }

    .description-section {
        padding: 20px 15px;
        margin: 30px auto 85px;
    }

    .description-text {
        font-size: 12px;
    }

    .circle-logo {
        width: 80px;
        height: 80px;
    }

    .circle-logo-section {
        bottom: 70px;
    }
}

/* ===== LARGE DESKTOP ===== */
@media screen and (width > 1440px) {
    .main-container {
        padding: 240px 0px 65px;
    }

    .main-logo {
        width: 520px;
    }

    .main-heading {
        font-size: 48px;
        letter-spacing: 10px;
    }

    .sub-heading {
        font-size: 22px;
        letter-spacing: 5px;
    }

    .categories-section {
        gap: 50px;
        margin: 10px 0;
    }

    .category-icon {
        width: 90px;
        height: 90px;
    }

    .description-section {
        max-width: 900px;
        padding: 20px 25px;
        margin: 40px auto 50px;
    }

    .description-text {
        font-size: 14px;
    }

    .circle-logo {
        width: 180px;
        height: 180px;
    }

    .circle-logo-section {
        bottom: 140px;
        left: 80px;
    }
}

@media (min-width: 787px) and (max-width: 1439px) {
    .description-section {
        margin: 30px auto 130px;
    }

    .circle-logo-section {
        bottom: 70px;
        left: 50%;
        transform: translateX(-50%);
    }
}