* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    --text-color-default: #fff;
    --text-black: #0e0e0ead;
    --second-color: #62329ae0;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background: #fff;
    position: fixed;
    z-index: 999;
    width: -webkit-fill-available;
    transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.company-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    width: 3.5rem;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 1rem;
    list-style: none;
}

a {
    text-decoration: none;
}

.nav-fonts {
    font-size: 15px;
    font-weight: 700;
    color: #0e0e0e94;
    text-shadow: 0 1px 2px rgb(0 0 0 / 8%);
}

.nav-number {
    display: none;
    align-items: center;
    cursor: pointer;
}

.nav-number.active {
    display: flex;
    position: absolute;
    top: 14rem;
    left: 7rem;
}

.menu-toggle {
    display: flex;
    font-size: 30px;
    cursor: pointer;
}

.nav-links.active {
    display: flex;
    color: var(--second-color);
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #fff;
    text-align: center;
    padding: 1rem;
    height: 100dvh;
}

/* about */
.about-section {
    scroll-margin-top: 4rem;
}

.about-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1rem;
}

.text-card {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 1rem;
    height: -webkit-fill-available;
    font-size: 18px;
    text-align: start;
}

.text-card>h4 {
    font-size: 23px;
    font-weight: 500;
}

.img-card>img {
    width: 25rem;
    border-radius: 2rem;
}

/* product */
.product-section {
    scroll-margin-top: 4rem;
}

.product-wrapper {
    padding: 2rem 1rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.product-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    flex-direction: row;
}

.category-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
}

.card-product {
    background: #fff;
    min-width: -webkit-fill-available;
    border-radius: 0.7rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    cursor: pointer;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 14rem;
}

.image-container img {
    width: 100%;
    height: -webkit-fill-available;
    object-fit: cover;
    object-position: center;
}

.product-content {
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 0.5rem;
    padding: 0.5rem;
    font-size: 18px;
}

/* contact */
.contact-section {
    scroll-margin-top: 4rem;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
}

.form-group {
    position: relative;
    margin: 10px 0;
}

.form-group input,
textarea {
    width: 100%;
    padding: 0.5rem;
    font-size: 16px;
    border: 1.5px solid #ccc;
    border-radius: 4px;
    background: none;
    outline: none;
}

.form-group label {
    position: absolute;
    left: 12px;
    top: 10px;
    color: #888;
    font-size: 14px;
    pointer-events: none;
    background-color: white;
    padding: 0 4px;
    transition: 0.2s ease all;
}

/* Saat input difokuskan atau sudah diisi */
.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 8px;
    font-size: 12px;
    color: var(-text-black);
}

/* footer */

.maps {
    width: 100%;
}

.footer-wrapper {
    /* background-color: #62329a; */
    background-color: var(--second-color);
}

.footer-wrapper {
    padding: 2rem 1rem;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    text-align: start;
    align-items: flex-start;
    flex-direction: column;
}

.footer-content-wrapper {
    display: flex;
    flex-direction: column;
}

.footer-content-wrapper>h4 {
    color: #fff;
}

.footer-copy-right {
    text-align: center;
    background: var(--second-color);
    color: #fff !important;
    padding-bottom: 2rem;
}

.float-contact {
    position: inherit
}

.float-contact>img {
    position: fixed;
    z-index: 99999;
    bottom: 2rem;
    right: 1.3rem;
    width: 3.7rem;
    cursor: pointer;
}

.pages {
    display: flex;
    flex-direction: column;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3)), url('../images/slideshow/hero1.png') no-repeat center center / cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    /* text-shadow: 1px 1px 12px #333; */
}

.contents {
    font-size: 50px;
    padding: 0 1rem;
}

.contents>span,
.contents p {
    color: #fff;
}

.typewrite {
    font-weight: lighter;
    color: var(--second-color);
}

.hero-section>p {
    font-size: 2.2rem;
}

.hero-section>span {
    font-size: 2rem;
    font-weight: 200;
}

.hero-title {
    font-size: 22px;
    font-weight: 400;
}

.btn-order {
    border: 1px solid #fff;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    background: none;
    cursor: pointer;
}

.btn-order:hover {
    background: rgba(255, 255, 255, 0.1);
    transition: #fff ease-in-out 0.3s;
}

/* global */
p {
    font-size: 1rem;
    font-weight: 300;
    color: var(-text-black);
}

h3,
h4 {
    font-weight: 450;
}

.wt {
    color: #fff !important;
}

.btn-submit {
    border: none;
    border-radius: 0.4rem;
    padding: 0.5rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    background: var(--second-color);
    cursor: pointer;
}

.link-button {
    /* padding: 0.8rem 1rem; */
    padding: 0.5rem 0.7rem;
    border-radius: 11px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.8rem;
    color: #FFF;
    /* background: #62329a; */
    background: var(--second-color);
}

/* Default: Mobile (0px ke atas) */
/* Tidak perlu media query */
/* Tablet (≥ 768px) */
@media (min-width: 768px) {}

/* Laptop (≥ 992px) */
@media (min-width: 992px) {}

/* Desktop (≥ 1200px) */
@media (min-width: 1200px) {}

/* Large Desktop (≥ 1400px) */
@media (min-width: 1400px) {
    .navbar {
        padding: 2rem 6rem;
    }
}



/* responsive size
480px → HP kecil
768px → tablet
1024px → laptop
1280px+ → desktop */