:root {
    --brown-dark: #5D4037;  /* Warna Teks Utama (Cokelat Kopi) */
    --brown-light: #8D6E63; /* Warna Teks Sekunder */
    --orange-pop: #FF7043;  /* Warna Tombol (Jeruk) */
    --yellow-bg: #FFF9C4;   /* Warna Dasar Kuning Lembut */
    --white-card: #FFFFFF;
    --note-yellow: #FFF59D; /* Warna Sticky Note */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Motif Kotak-kotak (Gingham Pattern) Piknik */
    background-color: var(--yellow-bg);
    background-image: 
        linear-gradient(90deg, rgba(255, 167, 38, 0.1) 50%, transparent 50%),
        linear-gradient(rgba(255, 167, 38, 0.1) 50%, transparent 50%);
    background-size: 50px 50px; /* Ukuran kotak */
    
    font-family: 'Patrick Hand', cursive; /* Font tulisan tangan */
    color: var(--brown-dark);
    padding-bottom: 80px;
    overflow-x: hidden;
}

/* Header yang Fun */
header {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

header h1 {
    font-family: 'Fredoka', sans-serif; /* Font judul tebal & bulat */
    font-size: 2.5rem;
    color: var(--brown-dark);
    background: #fff;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    border: 3px dashed var(--orange-pop);
    box-shadow: 5px 5px 0px rgba(93, 64, 55, 0.1);
}

header p {
    margin-top: 15px;
    font-size: 1.2rem;
    background-color: var(--orange-pop);
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 15px;
    transform: rotate(-2deg);
}

/* Dekorasi Matahari & Awan */
.sun {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: #FFEB3B;
    border-radius: 50%;
    box-shadow: 0 0 40px #FBC02D;
    z-index: -1;
}

.cloud {
    position: absolute;
    font-size: 4rem;
    opacity: 0.8;
    z-index: -1;
    animation: floatCloud 20s infinite linear;
}
.cloud-1 { top: 20px; left: 10%; }
.cloud-2 { top: 60px; right: 20%; animation-delay: -10s; }

@keyframes floatCloud {
    0% { transform: translateX(0); }
    50% { transform: translateX(20px); }
    100% { transform: translateX(0); }
}

/* Grid Container */
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Card Styling - Ala Kertas Menu */
.card {
    background: var(--white-card);
    border-radius: 20px;
    position: relative;
    box-shadow: 8px 8px 0px rgba(93, 64, 55, 0.1); /* Shadow kasar ala kartun */
    border: 2px solid var(--brown-dark);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px) rotate(1deg);
}

/* Dekorasi Selotip di atas kartu */
.card-top {
    width: 80px;
    height: 25px;
    background-color: rgba(255, 255, 255, 0.6);
    border-left: 2px solid rgba(255,255,255,0.3);
    border-right: 2px solid rgba(255,255,255,0.3);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 112, 67, 0.3),
        rgba(255, 112, 67, 0.3) 10px,
        rgba(255, 255, 255, 0.3) 10px,
        rgba(255, 255, 255, 0.3) 20px
    );
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card-title {
    padding: 20px 15px 10px;
    text-align: center;
    border-bottom: 2px dashed #ddd;
}

.card-title h2 {
    font-family: 'Fredoka', sans-serif;
    color: var(--orange-pop);
    font-size: 1.5rem;
}

.card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 1.1rem;
    margin-top: 10px;
    color: var(--brown-dark);
    text-decoration: underline;
    text-decoration-color: var(--orange-pop);
    text-decoration-thickness: 3px;
}

/* Menu List */
.menu-list {
    list-style: none;
    margin: 10px 0;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 1.1rem;
    border-bottom: 1px dotted #eee;
    padding-bottom: 2px;
}

.menu-list li .price {
    font-weight: bold;
    color: #d84315; /* Merah bata */
    background: #ffe0b2;
    padding: 0 8px;
    border-radius: 10px;
    font-size: 1rem;
}

/* Sticky Note untuk Catatan */
.sticky-note {
    background-color: var(--note-yellow);
    padding: 15px;
    font-size: 0.95rem;
    color: var(--brown-dark);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
    transform: rotate(-2deg); /* Sedikit miring */
    margin-top: auto;
    margin-bottom: 15px;
    border-bottom-right-radius: 20px; /* Efek kertas terlipat */
}

.sticky-note strong {
    display: block;
    margin-bottom: 5px;
    color: #d84315;
}

.sticky-note p {
    line-height: 1.3;
    margin-bottom: 3px;
}

/* Tombol Order */
.btn-picnic {
    display: block;
    text-align: center;
    background: var(--orange-pop);
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 15px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    border: 2px solid #E64A19;
    box-shadow: 0 4px 0 #E64A19; /* Efek tombol timbul */
    transition: all 0.1s;
}

.btn-picnic:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 #E64A19;
}

/* Footer */
footer {
    margin-top: 60px;
    text-align: center;
}

.footer-box {
    background: white;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    border: 2px dashed var(--brown-dark);
}

/* Responsif HP */
@media (max-width: 480px) {
    .container {
        grid-template-columns: 1fr;
    }
    header h1 {
        font-size: 1.8rem;
    }
}

/* STYLING MODAL POPUP */
.modal {
    display: none; /* Sembunyi dulu */
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(93, 64, 55, 0.5); /* Latar belakang gelap transparan */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.modal-content {
    background-color: #fff;
    padding: 25px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    border: 3px dashed var(--orange-pop);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    animation: popUp 0.3s ease-out;
}

@keyframes popUp {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: var(--brown-light);
    cursor: pointer;
}

.close-btn:hover {
    color: var(--orange-pop);
}

.modal h3 {
    text-align: center;
    color: var(--brown-dark);
    margin-bottom: 20px;
    font-family: 'Fredoka', sans-serif;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--brown-dark);
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #ffe0b2;
    font-family: 'Poppins', sans-serif;
    background-color: #fff9c4; /* Kuning muda */
    color: var(--brown-dark);
    outline: none;
}

.form-group input:read-only {
    background-color: #eee;
    color: #888;
    cursor: not-allowed;
}

.btn-kirim {
    width: 100%;
    padding: 12px;
    background: #E64A19; /* Hijau WA */
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-kirim:hover {
    background: #ffe0b2;
}

/* UPDATE STYLING FORM */

/* Kotak Info Rekening */
.payment-info {
    background-color: #fff3e0; /* Oranye sangat muda */
    border: 1px dashed var(--orange-pop);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 0.9rem;
}

.rek-box {
    margin-top: 5px;
    color: var(--brown-dark);
    background: white;
    padding: 8px;
    border-radius: 8px;
}

/* Styling Input File (Upload) */
.input-file {
    background: white;
    padding: 5px;
    font-size: 0.85rem;
}

/* Tombol Kirim */
.btn-kirim {
    width: 100%;
    padding: 12px;
    background: var(--orange-pop); /* Pakai warna tema */
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 4px 0 #E64A19;
    transition: transform 0.1s;
}

.btn-kirim:active {
    transform: translateY(3px);
    box-shadow: none;
}

/* Modal Header */
.modal h3 {
    color: var(--orange-pop);
    border-bottom: 2px dashed #ddd;
    padding-bottom: 10px;
}