:root {
    --bg: #fff3e0;
    --bg2: #feddc5;
    --red1: #cc2f2c;
    --red2: #851f21;
    --blue1: #2c3142;
    --blue2: #7a87a9;
    --yellow1: #f1a31e;
    --yellow2: #d98f28;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
}

body {
    background-color: var(--bg);
    font-family: "Lato", sans-serif;
    color: #000;
}

/* Page 1 */
/* Hero Section start*/
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 7% 2rem 7%;
    background-color: var(--bg);
    gap: 3rem;
    background-size: cover;
}

/* Teks kiri */
.hero .content {
    flex: 1;
}

.hero .content h1 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
}

.hero .content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #222;
}

/* Gambar kanan */
.hero img {
    flex: 1;
    max-width: 50%;
    border-radius: 0.5rem;
    object-fit: cover;
}
/* Hero Section end*/

/* WhatIsJEOL Section start*/
.jeol {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 7% 2rem 7%;
    gap: 3rem;
    background-color: var(--red1);
    background-image: url(../assets/img/what-is-jeol.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

/* Teks kiri */
.jeol .content {
    flex: 1;
}

.jeol .content h1 {
    font-family: "Playfair Display", serif;
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--bg);
}

.jeol .content h1 span {
    font-size: 10rem;
    display: inline-block;
    transform: rotate(36deg) translateX(30px) translateY(60px);
    line-height: 0.1;
}

.jeol .content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--bg);
}

.jeol .content button {
    background-color: var(--bg);
    color: var(--red1);
    font-size: 1rem;
    font-weight: bold;
    padding: 0.7rem 3.4rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* WhatIsJEOL Section end*/

/* CeritaJEOLFood Section start*/
.cerita {
    padding: 2% 7% 5%;
    background-color: var(--bg);
    text-align: center;
}

.cerita-header h1 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    color: #222;
    margin-bottom: 0.5rem;
}

.cerita-header p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.cerita-cards {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    padding: 1rem;
    width: 250px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: auto;
    min-height: 320px;
}

.yellow {
    background-color: var(--yellow1);
}

.red {
    background-color: var(--red1);
}

.blue {
    background-color: var(--blue2);
}

.card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

.card h3 {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 0.3rem;
}

.yellow p {
    margin-top: 2rem;
}

.red p {
    margin-top: 2.8rem;
}

.blue p {
    margin-top: 4rem;
}

.card p {
    font-size: 0.9rem;
    color: #000;
}

.more {
    margin-top: 2.4rem;
}

.more a button {
    background-color: var(--red1);
    color: var(--bg);
    font-size: 1rem;
    font-weight: bold;
    padding: 0.7rem 3.4rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* CeritaJEOLFood Section end*/

/* ProdukJEOLFood Section start */
.produk {
    padding: 7% 7% 5%;
    background-color: var(--bg);
    text-align: center;
}

.produk-header h1 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    color: #222;
    margin-bottom: 0.5rem;
}

.produk-header p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.produk img {
    width: 80%;
    padding-top: 2rem;
    border-radius: 0.5rem;
}
/* ProdukJEOLFood Section end */

/* Order Section start */
.order {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 7% 2rem 7%;
    background-color: var(--yellow1);
    background-image: url(../assets/img/ecomerce\ bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

/* Teks kiri */
.order .content {
    flex: 1;
}

.order .content h1 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
}

.order .content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #222;
}
/* Order Section end */
/* Media Quary Home Start */
@media screen and (min-width: 1600px) {
    /* Hero Home */
    .hero .content {
        flex: 1;
    }

    .hero .content h1 {
        font-family: "Playfair Display", serif;
        font-size: 4rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }

    .hero .content p {
        font-size: 1.3rem;
        line-height: 1.6;
        color: #222;
    }

    .hero img {
        max-width: 55%;
    }

    /* What is Jeol home*/
    .jeol {
        min-height: 90vh;
        background-size: cover;
    }

    .jeol .content h1 {
        font-size: 7rem;
    }

    .jeol .content h1 span {
        font-size: 12rem;
    }

    .jeol .content p {
        font-size: 1.3rem;
    }

    .jeol .content button {
        font-size: 1.3rem;
        padding: 1rem 4rem;
        border-radius: 50px;
    }

    /* Cerita Jeol Food home*/
    .cerita {
        padding: 5rem;
    }

    .cerita-header h1 {
        font-size: 4rem;
    }

    .cerita-header p {
        font-size: 1.3rem;
    }

    .cerita-cards {
        gap: 5rem;
    }

    .card {
        width: 320px;
        min-height: 380px;
    }

    .card h3 {
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .card p {
        margin-top: auto;
    }

    .yellow {
        background-color: var(--yellow1);
    }

    .red {
        background-color: var(--red1);
    }

    .blue {
        background-color: var(--blue2);
    }

    .card img {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 0.8rem;
    }

    .card h3 {
        font-size: 1.3rem;
        color: #000;
    }

    .yellow h3 {
        margin-bottom: 3rem;
    }

    .red h3 {
        margin-bottom: 4.3rem;
    }

    .blue h3 {
        margin-bottom: 4.3rem;
    }

    .card p {
        font-size: 0.9rem;
        color: #000;
        margin-top: auto;
    }

    .more {
        margin-top: 3rem;
    }

    .more a button {
        font-size: 1.4rem;
        padding: 1rem 4rem;
    }

    /* Product jeol Home */
    .produk {
        padding: 2% 5%;
    }

    .produk-header h1 {
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    .produk-header p {
        font-size: 1.3rem;
    }

    .produk img {
        width: 70%;
    }

    /* Order Home */
    .order .content h1 {
        font-size: 3.5rem;
    }

    .order .content p {
        font-size: 1.5rem;
        line-height: 1.6;
    }
}
/* Media Quary Home End */

/* Page 2 */
/* About Us Page start */
/* About Us Section */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 7% 2rem 7%;
    background-color: var(--bg);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    max-width: 50%;
    border-radius: 0.5rem;
    object-fit: cover;
}

.about-text {
    flex: 1;
    max-width: 500px;
}

.about-text h1 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #222;
    margin-bottom: 2rem;
    text-align: justify;
}

.about-button {
    background-color: var(--red1);
    color: var(--bg);
    padding: 0.7rem 2.4rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.about-button:hover {
    background-color: var(--red2);
}

.apa-jeol {
    background-color: var(--red2);
    padding: 80px 7%;
    text-align: center;
}

.apa-jeol-container h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: var(--bg);
    margin-bottom: 1rem;
}

.apa-jeol-container p {
    font-size: 1rem;
    color: var(--bg);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.sejarah-jeol {
    min-height: 100vh;
    background-color: var(--bg);
    padding: 100px 7%;
    background-image: url(../assets/img/sejarah-jeol.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.sejarah-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    gap: 2rem;
}

.sejarah-text {
    grid-column: span 6;
}

.sejarah-text h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #111;
}

.sejarah-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.sejarah-logo {
    grid-column: span 6;
    text-align: center;
}

.sejarah-logo img {
    max-width: 999px;
}

.founder-jeol {
    background-color: var(--red1);
    padding: 100px 7%;
    background-image: url(../assets/img/pendiri-jeol.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.founder-container {
    background: rgba(133, 31, 33, 0.7);
    padding: 60px 40px;
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.founder-container h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: var(--bg);
    margin-bottom: 1.5rem;
}

.founder-profile img {
    width: 120px;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.founder-profile h4 {
    color: var(--bg);
    margin-bottom: 0.25rem;
}

.founder-title {
    color: var(--bg);
    font-style: italic;
    margin-bottom: 1rem;
}

.founder-desc {
    color: var(--bg);
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
}

.legalitas-jeol {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 7% 2rem 7%;
    background-color: var(--bg);
    gap: 3rem;
    background-size: cover;
}

.legalitas-container h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: #222;
    margin-bottom: 2rem;
    text-align: left;
}

.legalitas-flex {
    display: flex;
    flex: 1 1 250px;
    max-width: 75%;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
}

.legalitas-item img {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
/* About Us Page end */
/* Media Queey About Us Start */
@media screen and (min-width: 1600px) {
    /* About Us Section */
    .about-content {
        gap: 3rem;
        width: 100%;
        max-width: 2000px;
    }

    .about-image {
        flex: 1;
        max-width: 55%;
    }

    .about-text {
        flex: 1;
        max-width: 550px;
    }

    .about-text h1 {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }

    .about-text p {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
    }

    .about-button {
        padding: 1rem 3rem;
        font-size: 1.5rem;
    }

    .apa-jeol {
        padding: 120px 7%;
    }

    .apa-jeol-container h2 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .apa-jeol-container p {
        font-size: 1.5rem;
        max-width: 900px;
    }

    .sejarah-jeol {
        padding: 220px 7%;
        background-size: cover;
    }

    .sejarah-text h2 {
        font-size: 3rem;
        margin-bottom: 2.3rem;
    }

    .sejarah-text p {
        font-size: 1.4rem;
        line-height: 1.6;
    }

    /* Founder Section */
    .founder-jeol {
        padding: 200px 7%;
        background-size: cover;
    }

    .founder-container {
        padding: 100px 80px;
        max-width: 900px;
    }

    .founder-container h2 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .founder-profile img {
        width: 200px;
        border-radius: 1rem;
        margin-bottom: 1.5rem;
    }

    .founder-profile h4 {
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }

    .founder-title {
        font-size: 1.2rem;
    }

    .founder-desc {
        font-size: 1.2rem;
    }

    /* legalitas Section */
    .legalitas-container h2 {
        font-size: 3.2rem;
        margin-bottom: 2.5rem;
    }
}
/* Media Query About Us End */

/* Page 3 */
/* Blog Section start */
/* Bagian header blog */
/* Khusus halaman blog */
.blog-page .navbar .logo,
.blog-page .navbar .logo .logo-text,
.blog-page .navbar-nav a {
    color: var(--bg);
}

.blog-page .navbar-nav a:hover {
    color: var(--red1);
}

.blog-header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 7% 2rem 7%;
    background-image: url(../assets/img/blog-page.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    gap: 3rem;
}

/* Kontainer teks kiri */
.blog-header .content {
    flex: 1;
    color: var(--bg);
}

/* Judul blog */
.blog-header .content h1 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Paragraf deskripsi */
.blog-header .content p {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
}

/* Blog Section lanjutan - Pempek & Batagor Card */
.blog-wrapper {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 7%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.blog-card {
    background-color: var(--yellow1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    font-family: "Lato", sans-serif;
}

.blog-img-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.blog-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-title-overlay {
    font-family: "Playfair Display", serif;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--bg);
    font-size: 24px;
    font-weight: bold;
}

.blog-card p {
    padding: 24px;
    font-size: 16px;
    line-height: 1.7;
    color: #000;
}

/* Manfaat Section */
.manfaat-section {
    background-color: var(--red2);
    padding: 3rem 2rem;
    border-radius: 16px;
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.manfaat-section .text {
    flex: 1 1 60%;
    color: var(--bg);
}

.manfaat-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.manfaat-section p,
.manfaat-section ol,
.manfaat-section li {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

.manfaat-section ol {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.manfaat-section ol > li {
    margin-bottom: 1rem;
    font-weight: bold;
}

.manfaat-section ol li ul {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
    font-weight: normal;
}

.manfaat-section .image {
    flex: 1 1 30%;
    display: flex;
    justify-content: center;
}

.manfaat-section .image img {
    max-width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* Query Blog Section Start */
@media screen and (min-width: 1600px) {
    /* Judul blog */
    .blog-header .content h1 {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }

    /* Paragraf deskripsi */
    .blog-header .content p {
        font-size: 1.5rem;
        max-width: 800px;
    }

    /* Blog Section lanjutan - Pempek & Batagor Card */
    .blog-wrapper {
        max-width: 1400px;
        margin: 100px auto;
        padding: 0 5%;
        gap: 3rem;
    }

    .blog-card {
        border-radius: 1.5rem;
    }

    .blog-title-overlay {
        padding: 20px 30px;
        color: var(--bg);
        font-size: 2rem;
    }

    .blog-card p {
        padding: 24px;
        font-size: 1.2rem;
        line-height: 1.7;
        color: #000;
    }

    /* Manfaat Section */
    .manfaat-section {
        padding: 4rem 3rem;
        border-radius: 1.5rem;
        max-width: 1210px;
        margin: 20px auto;
        gap: 3rem;
    }

    .manfaat-section h2 {
        font-size: 2.2rem;
        margin-bottom: 1.4rem;
    }

    .manfaat-section p,
    .manfaat-section ol,
    .manfaat-section li {
        font-size: 1.2rem;
        line-height: 1.6;
    }
}
/* Query Blog Section End */
/* Blog Section end */

/* Page 4 */
/* Product Section start */
.product-hero {
    min-height: 100vh;
    padding: 115px 7% 2rem 7%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--bg);
}

.product-hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
}

.product-hero-content h1 span {
    color: var(--red1);
}

.product-hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #222;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.product-hero-image img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 8px;
}

/* Product Details */
#pempek {
    background-color: var(--red1);
    padding: 4rem 7%;
    color: var(--bg);
}

#batagor {
    background-color: var(--bg);
    padding: 4rem 7%;
}

#crispy {
    background-color: var(--yellow2);
    padding: 4rem 7%;
    color: var(--bg);
}

#cuko {
    background-color: var(--bg);
    padding: 4rem 7%;
}

/* Baris pertama: teks & gambar */
.product-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 2rem;
    height: 370px;
}

#cuko .product-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 2rem;
    height: 430px;
}

/* Kolom teks */
.product-content .text {
    flex: 1 1 45%;
}

.product-content .text h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-content .text h2 span {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
}

.product-content .text #text-pempek p,
.product-content .text #text-pempek ul,
.product-content .text #text-batagor p,
.product-content .text #text-batagor ul,
.product-content .text #text-crispy p,
.product-content .text #text-crispy ul,
.product-content .text #text-cuko p,
.product-content .text #text-cuko ul {
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-content .text ul {
    padding-left: 1.5rem;
}

.product-content .text ol {
    padding-left: 1rem;
}

.product-content .text ul,
.product-content .text ol li ul,
.product-content .text ul ul {
    list-style-type: disc;
}

.product-content .text #text-pempek,
.product-content .text #text-batagor,
.product-content .text #text-crispy,
.product-content .text #text-cuko {
    padding-top: 1.2rem;
    text-align: justify;
}

/* Kolom gambar */
.product-content .image {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
}

.product-content .image img {
    max-width: 320px;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#cuko .product-content .image img {
    max-width: 340px;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Baris kedua: tombol */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 8rem;
    margin-top: 3rem;
    padding-top: 35px;
}

.product-tabs .tab-btn-pempek {
    padding: 1rem 3rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background-color: var(--red1);
    color: var(--bg);
    font-weight: 600;
    transition: 0.3s ease;
}

.product-tabs .tab-btn-batagor,
.product-tabs .tab-btn-cuko {
    padding: 1rem 3rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background-color: var(--bg);
    color: #000;
    font-weight: 600;
    transition: 0.3s ease;
}

.product-tabs .tab-btn-crispy {
    padding: 1rem 3rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background-color: var(--yellow2);
    color: var(--bg);
    font-weight: 600;
    transition: 0.3s ease;
}

.product-tabs .tab-btn-pempek.active,
.product-tabs .tab-btn-pempek:hover {
    background-color: var(--bg);
    color: var(--red1);
}

.product-tabs .tab-btn-batagor.active,
.product-tabs .tab-btn-batagor:hover,
.product-tabs .tab-btn-crispy.active,
.product-tabs .tab-btn-crispy:hover,
.product-tabs .tab-btn-cuko.active,
.product-tabs .tab-btn-cuko:hover {
    background-color: var(--red1);
    color: var(--bg);
}

/* Testimonial Section */
.testimonial {
    background-color: var(--red1);
    padding: 5rem 7%;
    color: var(--bg);
    text-align: center;
}

.testimonial-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.testimonial-header h2 span {
    display: block;
    color: var(--bg);
}

.testimonial-header p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: var(--bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.testimonial-card {
    background-color: var(--bg);
    color: var(--red1);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    width: 260px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
    height: 80px;
    margin-bottom: 1rem;
}

.testimonial-card h4 {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.testimonial-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
}
@media screen and (min-width: 1600px) {
    .product-hero {
        padding: 200px 6% 1.5rem 6%;
    }

    .product-hero-content h1 {
        font-size: 4rem;
    }

    .product-hero-content p {
        font-size: 1.3rem;
        line-height: 1.6;
        max-width: 800px;
    }

    .product-hero-image img {
        width: 100%;
    }

    /* Product Details */
    #pempek {
        padding: 5rem 7%;
    }

    #batagor {
        padding: 5rem 7%;
    }

    #crispy {
        padding: 5rem 7%;
    }

    #cuko {
        padding: 5rem 7%;
    }

    /* Baris pertama: teks & gambar */
    .product-content {
        height: 600px;
    }

    #cuko .product-content {
        height: 600px;
    }

    /* Kolom teks */
    .product-content .text h2 span {
        font-size: 3rem;
    }

    .product-content .text h2 {
        font-size: 2.8rem;
    }

    .product-content .text #text-pempek p,
    .product-content .text #text-pempek ul,
    .product-content .text #text-batagor p,
    .product-content .text #text-batagor ul,
    .product-content .text #text-crispy p,
    .product-content .text #text-crispy ul,
    .product-content .text #text-cuko p,
    .product-content .text #text-cuko ul {
        font-size: 1.3rem;
        line-height: 1.6;
    }

    /* Kolom gambar */
    .product-content .image img {
        max-width: 450px;
        border-radius: 1rem;
    }

    #cuko .product-content .image img {
        max-width: 450px;
        border-radius: 1rem;
    }

    /* Baris kedua: tombol */
    .product-tabs {
        padding-top: 40px;
    }

    .product-tabs .tab-btn-pempek {
        padding: 1.2rem 3.2rem;
        font-size: 1.3rem;
        font-weight: 600;
    }

    .product-tabs .tab-btn-batagor,
    .product-tabs .tab-btn-cuko {
        padding: 1.2rem 3.2rem;
        font-size: 1.3rem;
        font-weight: 600;
    }

    .product-tabs .tab-btn-crispy {
        padding: 1.2rem 3.2rem;
        font-size: 1.3rem;
        font-weight: 600;
    }

    /* Testimonial Section */
    .testimonial-header h2 {
        font-size: 3.8rem;
    }

    .testimonial-header p {
        font-size: 1.3rem;
        max-width: 500px;
    }

    .testimonial-card {
        padding: 2.2rem 1.7rem;
        border-radius: 1rem;
        width: 360px;
    }

    .testimonial-card img {
        height: 120px;
    }

    .testimonial-card h4 {
        font-weight: 700;
        font-size: 1.5rem;
    }

    .testimonial-card h5 {
        font-weight: 600;
        font-size: 1.3rem;
    }

    .testimonial-card p {
        font-size: 1.3rem;
        line-height: 1.6;
        color: #333;
    }
}
/* Product Section end */

/* Page 5 */
/* Ecommerce Section start */
.ecommerce-header {
    min-height: 100vh;
    background-color: var(--bg);
    padding: 8% 20px 4% 80px;
    text-align: center;
    font-family: "Playfair Display", serif;
}

.ecommerce-header h1 {
    font-size: 48px;
    color: #000;
    margin-bottom: 40px;
}

.ecommerce-header p {
    font-size: 16px;
    color: #000;
    font-family: "Lato", sans-serif;
    padding-top: 1.4rem;
}

.ecommerce-header .image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
}

/* Section Platforms */
.ecommerce-platforms {
    background-color: var(--red1);
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.platforms-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
}

.platform-card {
    background-color: var(--bg2);
    padding: 40px 30px;
    border-radius: 16px;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.platform-card img {
    width: 91px;
    object-fit: contain;
    margin-bottom: 20px;
}

.platform-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    font-family: "Lato", sans-serif;
}

.platform-card .rating {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.platform-card .order-button {
    background-color: var(--red1);
    color: var(--bg);
    padding: 0.6rem 2.2rem;
    border: none;
    border-radius: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.platform-card .order-button:hover {
    background-color: var(--red2);
}

@media screen and (min-width: 1600px) {
    .ecommerce-header {
        padding: 8% 20px 4% 80px;
    }

    .ecommerce-header p {
        margin-top: 2rem;
    }

    .ecommerce-header h1 {
        font-size: 4rem;
    }

    .ecommerce-header .image img {
        max-width: 1050px;
    }

    .ecommerce-header p {
        font-size: 1.4rem;
    }

    /* Section Platforms */
    .ecommerce-platforms {
        padding: 80px 40px;
    }

    .platforms-container {
        max-width: 2000px;
    }

    .platform-card {
        width: 350px;
    }

    .platform-card img {
        width: 150px;
        margin-bottom: 40px;
    }

    .platform-card h3 {
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--red2);
        margin-bottom: 10px;
        font-family: "Lato", sans-serif;
    }

    .platform-card .rating {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .platform-card .order-button {
        padding: 1rem 2.4rem;
        font-size: 1.3rem;
        margin-top: 1.2rem;
    }
}
/* Ecommerce Section end */

/* Navbar start*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 7%;
    font-family: "Lato", sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: top 0.3s ease-in-out;
}

/* Logo Area */
.navbar .logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #222; /* Nanti diubah sesuai sama bg navbar (biru jadi #fffeff )*/
}

.navbar .logo img {
    width: 75px;
    border-radius: 50%;
}

.navbar .logo .logo-text {
    color: #222;
    font-size: 1.5rem;
    line-height: 1.2;
}

/* Navigation Links */
.navbar-nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #222; /* Nanti diubah sesuai sama bg navbar (biru jadi #fffeff )*/
    font-weight: 500;
    text-align: right;
    padding-left: 1rem;
}

.navbar-nav a:hover {
    color: var(--red1);
}
/* Navbar end*/

/* Footers start */
.footer {
    background-color: var(--blue1);
    color: var(--bg);
    padding: 3rem 7%;
    font-family: "Lato", sans-serif;
}

.footer-container {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 2rem;
    row-gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    text-align: justify;
    padding-right: 80px;
}

.footer-column span {
    display: flex;
    align-items: start;
    gap: 0.8rem;
}

.footer-column span p {
    margin-top: 0.2rem;
}

.footer-column img {
    width: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: bold;
    color: var(--bg);
}

.footer-desc {
    color: var(--bg);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-right: 30px;
}

.footer-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-address {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-address img {
    width: 32px;
}

.footer-address img:hover {
    transform: scale(1.1);
}

.footer-address p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--bg);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a img {
    width: 32px;
}

.social-icons a img:hover {
    transform: scale(1.1);
}
/* Footers end */

/* Animasi dasar */
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Saat tampil */
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
    background-color: #9a2526;
    color: var(--bg);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.8s ease-in-out;
    background-image: url(../assets/img/icons/timun.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80%;
}

#scrollTopBtn:hover {
    background-color: var(--red2);
}

@media screen and (min-width: 1600px) {
    /* Navbar start*/
    .navbar {
        padding: 1.2rem 8%;
    }

    /* Logo Area */
    .navbar .logo {
        gap: 1.2rem;
    }

    .navbar .logo img {
        width: 90px;
    }

    .navbar .logo .logo-text {
        color: #222;
        font-size: 2rem;
    }

    /* Navigation Links */
    .navbar-nav a {
        margin-left: 2.1rem;
        padding-left: 1.2rem;
        font-size: 1.3rem;
    }
    /* Navbar end*/

    /* Footers start */
    .footer-container {
        column-gap: 2.2rem;
        row-gap: 2rem;
        max-width: 1600px;
        margin: 0 auto;
    }

    .footer-column {
        min-width: 200px;
    }

    .footer-column img {
        width: 32px;
    }

    .footer-logo img {
        width: 70px;
        height: 70px;
    }

    .logo-text {
        font-size: 1.9rem;
    }

    .footer-desc {
        font-size: 1.2rem;
        padding-right: 40px;
    }

    .footer-title {
        font-size: 2rem;
    }

    .footer-address img {
        width: 2.9rem;
    }

    .footer-address p {
        font-size: 1.4rem;
    }

    .social-icons a img {
        width: 2.9rem;
    }

    .footer-column span p {
        font-size: 1.3rem;
    }

    .footer-column span img {
        width: 2.3rem;
    }
    /* Footers end */

    /* Scroll Top Button */
    #scrollTopBtn {
        bottom: 50px;
        right: 50px;
        width: 85px;
        height: 85px;
        font-size: 2rem;
    }
}
