/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5fbff;
    color: #17324d;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    width: 100%;
    min-height: 72px;
    padding: 10px 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    background: #ffffff;
    border-bottom: 1px solid #d8eef8;

    box-shadow:
        0 4px 15px rgba(0, 105, 160, .08);

    position: sticky;
    top: 0;
    z-index: 1000;
}

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


/* =====================================================
   LOGO FOTO AKU.PNG
===================================================== */

.logo-shark {
    width: 64px;
    height: 64px;
    min-width: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 18px;

    background: #d9f5ff;
}

.logo-shark img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}

.logo h2 {
    color: #08466f;
    font-size: 18px;
    line-height: 1.2;
}

.logo span {
    color: #7691a5;
    font-size: 10px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu a {
    padding: 8px 13px;

    border-radius: 10px;

    color: #58748a;

    font-size: 13px;
    font-weight: 700;

    transition: .2s;
}

.menu a:hover,
.menu a.active {
    color: #ffffff;
    background: #079bd5;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    width: 100%;
    min-height: 560px;

    padding: 60px 7%;

    display: grid;

    grid-template-columns:
        1.15fr .75fr .95fr;

    align-items: center;

    gap: 25px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #bcefff,
            #e8faff,
            #f9fdff
        );
}

.hero-pattern {
    position: absolute;
    inset: 0;

    opacity: .22;

    pointer-events: none;

    background-image:
        radial-gradient(
            #16a9db 1px,
            transparent 1px
        );

    background-size: 25px 25px;
}

.welcome-card,
.character,
.promo-card {
    position: relative;
    z-index: 2;
}


/* =====================================================
   WELCOME
===================================================== */

.welcome-card {
    width: 100%;
    max-width: 520px;
}

.small-title {
    display: inline-block;

    padding: 7px 13px;
    margin-bottom: 14px;

    border-radius: 30px;

    background: #ffffff;
    color: #078dcc;

    font-size: 11px;
    font-weight: 800;
}

.welcome-card h1 {
    color: #073e67;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.05;

    margin-bottom: 18px;

    letter-spacing: -1px;
}

.wave-line {
    width: 85px;
    height: 5px;

    margin-bottom: 18px;

    border-radius: 20px;

    background: #079ed9;
}

.welcome-card p {
    max-width: 450px;

    color: #5d778b;

    font-size: 15px;

    margin-bottom: 25px;
}

.shop-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 12px 20px;

    border-radius: 11px;

    color: #ffffff;
    background: #079bd5;

    font-size: 13px;
    font-weight: 800;

    box-shadow:
        0 10px 24px rgba(0, 145, 205, .22);

    transition: .2s;
}

.shop-btn:hover {
    transform: translateY(-2px);
    background: #078bc1;
}


/* =====================================================
   CHARACTER
===================================================== */

.character {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 280px;
}

.character img {
    width: 100%;
    max-width: 270px;
    max-height: 300px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 18px 25px
            rgba(0, 90, 130, .14)
        );
}

.character-placeholder {
    width: 220px;
    height: 220px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 50%;

    background: #ffffff;

    font-size: 45px;

    box-shadow:
        0 18px 45px
        rgba(0, 100, 150, .12);
}


/* =====================================================
   PROMO
===================================================== */

.promo-card {
    padding: 25px;

    border-radius: 20px;

    background: rgba(255, 255, 255, .95);

    border: 1px solid #ffffff;

    box-shadow:
        0 18px 40px
        rgba(0, 90, 130, .10);
}

.promo-card h3 {
    color: #078fcb;

    font-size: 16px;

    margin-bottom: 14px;
}

.promo-card p {
    color: #617c90;

    font-size: 12px;

    margin: 6px 0;
}

.promo-card h2 {
    color: #073e67;

    font-size: 22px;

    margin: 17px 0;
}

.social {
    padding-top: 12px;

    border-top: 1px solid #deedf4;

    color: #617c90;

    font-size: 12px;

    line-height: 2;
}


/* =====================================================
   PRODUCTS
===================================================== */

.products {
    padding: 65px 7%;

    background: #ffffff;
}

.section-title {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}

.section-title > div {
    display: flex;

    align-items: center;

    gap: 10px;
}

.section-title span {
    color: #079ed9;

    font-size: 22px;
}

.section-title h2 {
    color: #073e67;

    font-size: 26px;
}

.product-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


/* =====================================================
   PRODUCT CARD
===================================================== */

.product-card {
    min-width: 0;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    border: 1px solid #dcecf4;

    border-radius: 17px;

    box-shadow:
        0 7px 25px
        rgba(0, 90, 130, .06);

    transition: .2s;
}

.product-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 14px 35px
        rgba(0, 100, 150, .12);
}

.product-image {
    width: 100%;
    height: 210px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #eefaff;
}

.product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: .3s;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.no-image {
    font-size: 50px;

    opacity: .65;
}


/* =====================================================
   PRODUCT INFO
===================================================== */

.product-info {
    padding: 17px;

    display: flex;

    flex-direction: column;

    flex: 1;
}

.product-info h3 {
    color: #173f5f;

    font-size: 16px;

    line-height: 1.35;

    margin-bottom: 7px;
}

.price {
    color: #079bd5;

    font-size: 18px;
    font-weight: 900;

    margin-bottom: 8px;
}

.product-info p {
    color: #71899a;

    font-size: 12px;

    line-height: 1.5;

    margin-bottom: 9px;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;
}

.product-info small {
    color: #8299a9;

    font-size: 11px;

    margin-bottom: 13px;
}


/* =====================================================
   CHECKOUT
===================================================== */

.cart-btn {
    width: 100%;

    margin-top: auto;

    padding: 11px 10px;

    border: none;

    border-radius: 10px;

    color: #ffffff;

    background: #079bd5;

    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    transition: .2s;
}

.cart-btn:hover:not(:disabled) {
    background: #0788be;

    transform: translateY(-2px);
}

.cart-btn:disabled {
    background: #aab8c1;

    cursor: not-allowed;
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    padding: 65px 7%;

    background: #eaf9ff;
}

.about-box {
    max-width: 850px;

    margin: auto;

    padding: 36px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #d4edf6;

    border-radius: 21px;

    box-shadow:
        0 10px 30px
        rgba(0, 100, 150, .07);
}

.about-box h2 {
    color: #073e67;

    font-size: 24px;

    margin-bottom: 11px;
}

.about-box p {
    max-width: 650px;

    margin: auto;

    color: #678294;

    font-size: 13px;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    width: 100%;

    padding: 50px 7%;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.2fr;

    gap: 30px;

    background: #073e67;

    color: #ffffff;
}

.footer-logo {
    display: flex;

    align-items: center;

    gap: 11px;
}

.footer-logo .logo-shark {
    background: rgba(255, 255, 255, .12);
}

.footer-logo h2 {
    font-size: 17px;
}

.footer-logo p {
    color: #a8d1e3;

    font-size: 11px;
}

footer h3 {
    font-size: 14px;

    margin-bottom: 12px;
}

footer a {
    display: block;

    width: fit-content;

    color: #afd4e4;

    font-size: 12px;

    margin-bottom: 7px;
}

footer p {
    color: #afd4e4;

    font-size: 12px;

    margin-bottom: 6px;
}


/* =====================================================
   CUTE RUNNING FOOTER
===================================================== */

.cute-footer {
    width: 100%;

    background: #073e67;

    overflow: hidden;

    flex-shrink: 0;
}

.running-text {
    width: 100%;

    overflow: hidden;

    white-space: nowrap;

    padding: 17px 0;
}

.running-content {
    display: inline-block;

    padding-left: 100%;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .2px;

    animation:
        runningCute 22s linear infinite;
}

@keyframes runningCute {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }

}


/* =====================================================
   PAGE HEADER
===================================================== */

.page-header {
    padding: 60px 7%;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #bcefff,
            #e9faff,
            #ffffff
        );
}

.page-header span {
    color: #079bd5;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}

.page-header h1 {
    margin: 8px 0;

    color: #073e67;

    font-size: 40px;
}

.page-header p {
    color: #668397;

    font-size: 13px;
}


/* =====================================================
   OTHER
===================================================== */

.see-all {
    color: #079bd5;

    font-size: 12px;

    font-weight: 800;
}

.products-button {
    display: flex;

    justify-content: center;

    margin-top: 35px;
}

.about-btn {
    display: inline-block;

    margin-top: 18px;

    padding: 10px 17px;

    border-radius: 10px;

    color: #ffffff;

    background: #079bd5;

    font-size: 12px;

    font-weight: 800;
}


/* =====================================================
   ABOUT PAGE
===================================================== */

.about-page {
    padding: 70px 7%;

    background: #f4fbff;
}

.about-content {
    max-width: 950px;

    margin: auto;

    text-align: center;
}


/* =====================================================
   FOTO ASYA.PNG
===================================================== */

.about-icon {
    width: 190px;
    height: 190px;

    margin: 0 auto 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 28px;

    background: #ffffff;

    box-shadow:
        0 10px 30px
        rgba(0, 100, 150, .08);
}

.about-icon img {
    width: 100%;
    height: 100%;

    display: block;

    /*
       CONTAIN = FOTO UTUH
       JADI TIDAK KE POTONG
    */
    object-fit: contain;
}

.about-content > h2 {
    color: #073e67;

    font-size: 29px;

    margin-bottom: 17px;
}

.about-content > p {
    max-width: 750px;

    margin: 0 auto 14px;

    color: #668294;

    font-size: 13px;
}


/* =====================================================
   ABOUT CARDS
===================================================== */

.about-cards {
    margin-top: 42px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.about-cards > div {
    padding: 23px;

    background: #ffffff;

    border: 1px solid #d9edf5;

    border-radius: 17px;

    box-shadow:
        0 8px 25px
        rgba(0, 100, 150, .06);
}

.about-card-icon {
    font-size: 28px;

    margin-bottom: 9px;
}

.about-cards h3 {
    color: #073e67;

    font-size: 15px;

    margin-bottom: 6px;
}

.about-cards p {
    color: #718899;

    font-size: 12px;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-box {
    margin-top: 38px;

    padding: 26px;

    border-radius: 19px;

    background:
        linear-gradient(
            135deg,
            #d7f6ff,
            #effcff
        );

    border: 1px solid #c3ebf7;
}

.contact-box h3 {
    color: #073e67;

    margin-bottom: 11px;
}

.contact-box p {
    color: #55778d;

    font-size: 12px;

    margin: 5px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .hero {
        grid-template-columns:
            1fr 1fr;

        padding-left: 5%;
        padding-right: 5%;
    }

    .welcome-card {
        grid-column: 1;
    }

    .character {
        grid-column: 2;
    }

    .promo-card {
        grid-column: 1 / 3;

        max-width: 650px;

        width: 100%;

        margin: 10px auto 0;
    }

    .products,
    .about {
        padding-left: 5%;
        padding-right: 5%;
    }

    .product-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    footer {
        padding-left: 5%;
        padding-right: 5%;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 750px) {

    /* NAVBAR */

    .navbar {
        min-height: auto;

        padding: 10px 5%;

        display: flex;

        flex-wrap: wrap;

        gap: 8px;
    }

    .logo {
        width: auto;

        flex: 1;

        min-width: 0;
    }

    .logo-shark {
        width: 52px;
        height: 52px;

        min-width: 52px;

        border-radius: 15px;
    }

    .logo h2 {
        font-size: 16px;
    }

    .logo span {
        font-size: 9px;
    }

    .menu {
        width: 100%;

        display: flex;

        justify-content: center;

        gap: 3px;

        overflow: visible;
    }

    .menu a {
        padding: 8px 10px;

        font-size: 11px;

        white-space: nowrap;
    }


    /* HERO */

    .hero {
        width: 100%;

        min-height: auto;

        padding: 42px 20px 45px;

        display: grid;

        grid-template-columns: 1fr;

        gap: 25px;

        text-align: left;
    }

    .welcome-card {
        width: 100%;

        max-width: none;

        grid-column: auto;
    }

    .small-title {
        padding: 6px 12px;

        font-size: 10px;

        margin-bottom: 14px;
    }

    .welcome-card h1 {
        width: 100%;

        font-size: 42px;

        line-height: 1.05;

        letter-spacing: -1px;

        margin-bottom: 16px;

        word-break: normal;
    }

    .wave-line {
        width: 70px;
        height: 4px;

        margin-left: 0;
        margin-right: 0;

        margin-bottom: 18px;
    }

    .welcome-card p {
        width: 100%;

        max-width: 390px;

        font-size: 14px;

        line-height: 1.6;

        margin-bottom: 22px;
    }

    .shop-btn {
        padding: 11px 18px;

        font-size: 12px;

        border-radius: 10px;
    }


    /* CHARACTER */

    .character {
        grid-column: auto;

        width: 100%;

        min-height: 180px;

        display: flex;

        justify-content: center;

        order: 2;
    }

    .character img {
        width: 190px;

        max-width: 190px;

        max-height: 200px;
    }

    .character-placeholder {
        width: 180px;
        height: 180px;

        font-size: 38px;
    }


    /* PROMO */

    .promo-card {
        grid-column: auto;

        width: 100%;

        max-width: 100%;

        margin: 0;

        padding: 21px;

        border-radius: 17px;

        order: 3;
    }

    .promo-card h3 {
        font-size: 14px;
    }

    .promo-card p {
        font-size: 11px;
    }

    .promo-card h2 {
        font-size: 20px;
    }

    .social {
        font-size: 11px;
    }


    /* PRODUCTS */

    .products {
        padding: 50px 5%;
    }

    .section-title {
        margin-bottom: 22px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .section-title span {
        font-size: 19px;
    }

    .product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 13px;
    }

    .product-image {
        height: 155px;
    }

    .product-info {
        padding: 13px;
    }

    .product-info h3 {
        font-size: 13px;
    }

    .price {
        font-size: 15px;
    }

    .product-info p {
        font-size: 11px;
    }

    .product-info small {
        font-size: 10px;
    }

    .cart-btn {
        font-size: 10px;

        padding: 9px 5px;
    }


    /* ABOUT */

    .about {
        padding: 50px 5%;
    }

    .about-box {
        padding: 28px 18px;
    }

    .about-box h2 {
        font-size: 21px;
    }

    .about-box p {
        font-size: 12px;
    }


    /* FOOTER */

    footer {
        padding: 40px 5%;

        grid-template-columns:
            1fr 1fr;

        gap: 25px 18px;
    }

    .footer-logo {
        grid-column: 1 / 3;
    }

    footer h3 {
        font-size: 13px;
    }

    footer a,
    footer p {
        font-size: 11px;
    }


    /* RUNNING TEXT */

    .running-text {
        padding: 15px 0;
    }

    .running-content {
        font-size: 11px;
    }


    /* PAGE HEADER */

    .page-header {
        padding: 45px 5%;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 12px;
    }


    /* ABOUT PAGE */

    .about-page {
        padding: 50px 5%;
    }

    .about-content > h2 {
        font-size: 23px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    /* FOTO ASYA MOBILE */

    .about-icon {
        width: 190px;
        height: 190px;

        margin-bottom: 35px;

        border-radius: 28px;
    }
                                                    .about-icon img {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }                                           
}


/* =====================================================
   SMALL PHONE
===================================================== */

@media (max-width: 430px) {

    .navbar {
        padding: 9px 4%;
    }

    .logo-shark {                                       width: 50px;
        height: 50px;

        min-width: 50px;
    }

    .menu a {
        padding: 7px 8px;

        font-size: 10px;
    }

    .hero {
        padding: 35px 18px 40px;

        gap: 22px;
    }

    .welcome-card h1 {
        font-size: 37px;

        line-height: 1.06;
    }

    .welcome-card p {
        font-size: 13px;

        max-width: 330px;
    }

    .character {
        min-height: 160px;
    }

    .character img {
        width: 170px;

        max-width: 170px;

        max-height: 180px;
    }

    .character-placeholder {
        width: 160px;
        height: 160px;
    }

    .promo-card {
        padding: 19px;
    }

    .promo-card h3 {
        font-size: 13px;
    }

    .promo-card p {
        font-size: 10px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 210px;
    }

    footer {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        grid-column: auto;
    }
                                                
    /* FOTO ABOUT DI HP KECIL */

    .about-icon {
        width: 180px;
        height: 180px;
    }

    .about-icon img {
        object-fit: contain;
    }

}


/* =====================================================
   VERY SMALL PHONE
===================================================== */

@media (max-width: 360px) {
                                                    .menu a {
        padding: 7px 6px;

        font-size: 9px;
    }

    .welcome-card h1 {
        font-size: 33px;
    }

    .welcome-card p {
        font-size: 12px;
    }

    .character img {
        width: 150px;

        max-width: 150px;
    }

    .about-icon {
        width: 165px;
        height: 165px;
    }

}