* {
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

/* Navbar Start*/
.navbar {
    position : sticky;
    top : 0;
    z-index: 99999;
    display : flex;
    background-color: #ffffff;
    justify-content: space-between;
    align-items : center;
    border-bottom : 2px solid #00549C;
    padding : 0 70px 10px;
}

.navbar img {
    width : 100px;
}

.navbar-nav a{
    display : inline-block;
    padding : 0 20px;
    font-size: 30px;
    color : #00549C;
}

.navbar-nav a::after { 
    content : '';
    display : block;
    padding-bottom : 8px; 
    border-bottom : 2px solid #00549C;
    transform : scaleX(0);
    transition : 0.2s linear;
}

.navbar-nav a:hover::after {
    transform : scaleX(0.5);
}

.navbar-extra {
    color : #00549C;
}

#ham-menu {
    display : none;
}

/* Navbar End*/

/* Hero Section Start */
.hero {
    display : flex;
    min-height: 100vh;
    align-items: center;
    background-repeat: no-repeat;
    background-size : cover;
    background-position: center;
    background-image: url("/gambar/ice cream.jpg");
}

.content {
    padding : 1.4rem 7%;
    max-width: 60em;
}

.content h1 {
    font-size: 4em;
    color : #ffffff;
    text-shadow: 1px 1px 3px #00000083;
    line-height: 1;
}

.content p {
    font-size: 2rem;
    color : #dad7df;
    text-shadow: 1px 1px 3px #00000083;
}


.content p span {
    font-family: helvetica;
    font-size: 3rem;
    font-weight: bold;
    color : #00549C;
    
}
/* Hero Section End */

/* Produk Start */
.produk {
    padding : 90px 7% 20px;
    text-align: center;
}

.produk h2 {
    font-size : 5rem;
    color : #00549C;
}

.produk-grid {
    display : grid;
    grid-template-columns: repeat(4, 1fr);
    gap : 20px;
    padding : 10px 70px;
}

.produk-grid > div {
    display : grid;
    font-size : 30px;
    justify-items: center;
    align-items: center;
    text-align: center;
    padding : 15px;
}

.produk-grid img {
    max-width : 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    margin-top : 10px;
}

.produk-grid p {
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
    color :#00549C;
}
/* Produk End */

/* Kemitraan Start */

/* Container Utama Kemitraan */
.kemitraan {
    max-width: 1000px;
    margin: 0px auto;
    padding: 85px 0px 10px;
    font-family: Arial, sans-serif;
    color: #333;
}

.kemitraan h2 {
    text-align: center;
    font-size: 5rem;
    margin-bottom: 30px;
    color: #00549C;
}

.kemitraan h3 {
    margin-top: 25px;
    font-size: 1.3rem;
    color: #444;
    border-bottom: 2px solid #ddd;
    padding-bottom: 8px;
}

/* Mengatur Blok Kemitraan */
.mitra-blok {
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
}

.mitra-blok span {
    font-weight: bold;
}

.mitra-blok img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
}

.mitra-blok p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 15px auto;
}

/* Mengatur Tampilan Foto Kreasi Es */
.kreasi-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.menu-item img {
    max-height: 120px;
    margin-top: 10px;
    border: 1px solid #eee;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Mengatur List Peralatan */

.peralatan-list h3 {
    text-align: center;
}

.peralatan-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.peralatan-list li {
    padding: 12px 15px;
    border-bottom: 1px dashed #eee;
    line-height: 1.6;
    font-size: 1rem;
}

.peralatan-list li:last-child {
    border-bottom: none;
}

.note {
    display: block;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin: 3px 0;
}

/* Mengubah Link Shopee Jadi Tombol Orange */
.btn-shopee {
    display: inline-block;
    background-color: #ee4d2d; /* Warna Orange Shopee */
    color: white !important;
    text-decoration: none;
    padding: 4px 10px;
    font-size: 0.85rem;
    border-radius: 4px;
    font-weight: bold;
    margin: 2px 4px;
    transition: background 0.2s;
}

.btn-shopee:hover {
    background-color: #d73a1e;
}

/* Kemitraan End */

/* Kontak Start */
.kontak {
    font-size: 25px;
    color : #00549C;
    display : block;
    text-align: center;
    justify-content: center;
}

.kontak p {
    display : block;
    margin : 50px;
}
/* Kontak End */

/*footer start */
.footer {
    background-color: #00549C;
    padding : 20px;
    border-top : 2px solid #00549C;
    text-align: center;
}
/*footer end */

/* Media Query Start */
@media (max-width : 1366px){
    html {
        font-size : 75%;
    }
}

@media (max-width : 1080px){
    html, body { font-size : 62.5%;
                overflow-x: hidden;
                max-width: 100%;
    }

    #ham-menu {
        display : inline-block;
        padding : 10px;
    }

    #ham-menu svg {
        width : 60px;
        height : 60px;
        stroke-width : 2.5;
        color : #333;
    }

    .navbar-nav {
        position : absolute;
        right : -320px;
        top : 100px;
        background-color :#00549C;
        width : 300px;
        height: 100vh;
        overflow-y: auto;
        transition: 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 9999;
    }

    .navbar-nav a {
        color : #ffffff;
        display : block;
        padding : 25px 25px; 
        font-size: 3rem;   
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .navbar-nav a::after {
        display : none !important;
    }
    
   .navbar-nav.active {
        right : 0;
    }

}

@media (max-width : 450px){
    html {
        font-size : 55%;
    }
}
/* Media Query End */