/*----------------------------------------------------------------
|                    FEEDBACK FORM (LAYAR LEBAR)                |
-----------------------------------------------------------------*/
#feedback { 
    display: flex;           
    flex-direction: column;  
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-x: hidden; /* Mencegah kebocoran elemen ke samping */
}

/* Kontainer utama layout halaman Feedback */
.feedbackLayout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start; 
    gap: 25px;                   /* Dikurangi sedikit dari 50px agar lebih pas di layar */
    width: 100%;
    max-width: 100%;             /* Kunci agar tidak melebihi kontainer */
    box-sizing: border-box;
    padding-left: 15px;          /* Dikurangi agar tidak terlalu mendorong ke kanan */
    padding-right: 15px;
    margin-top: 10px;
}

/* Kunci utama: Beri porsi proporsional dan batasi max-width */
.feedbackWrapper {
    flex: 1.5;                   /* Disesuaikan agar membagi ruang dengan gambar secara pas */
    max-width: 500px;            /* Sedikit disesuaikan agar ada ruang untuk gambar di sampingnya */
    box-sizing: border-box;
}

.feedbackWrapper form {
    display: flex;
    flex-direction: column; 
    gap: 12px;           
}

.feedbackWrapper label {
    font-size: clamp(12px, 1.5vh, 20px);
    font-weight: bold;
    margin-bottom: -10px;
}

/* Kotak input dan textarea dijamin memenuhi area form */
.feedbackWrapper input,
.feedbackWrapper textarea {
    width: 100%;           
    padding: 10px 14px;   
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(12px, 1.5vh, 20px);
    box-sizing: border-box; 
}

.feedbackWrapper textarea {
    min-height: 150px;      
    resize: vertical;       
}

.feedbackWrapper button {
    background: #550303;
    color: #fff;
    border: none;
    margin: 10px 0;
    padding: 12px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: clamp(12px, 1.5vh, 20px);
    transition: background 0.3s ease;
    align-self: center; 
}

.feedbackWrapper button:hover {
    background: #7a0a0a;    
}



/*----------------------------------------------------------------
|                    OTHERS & MISCELLANEOUS                      |
-----------------------------------------------------------------*/

#others.active-page, 
#miscellaneous.active-page {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; /* Pastikan induk rata kiri agar judulnya di kiri */
    gap: 20px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
}

#others h1, 
#miscellaneous h1 {
    position: static !important;
    left: auto !important;
    text-align: left !important;
    width: 100%;
    
    /* Atur jarak turun ke bawah dan geser ke kanan di sini */
    margin-top: 15px !important;    /* Sesuaikan angka ini kalau kurang turun atau terlalu turun */
    margin-left: 40px !important;   /* Sesuaikan angka ini agar gesernya pas sejajar dengan Coffee/Non-Coffee */
}

/*----------------------------------------------------------------
|                    TYPOGRAPHY & TERMS                          |
-----------------------------------------------------------------*/
.coverContent h1,
.introduction h1,
.menuTitle h1,
#miscellaneous h1,
#others h1,
.feedbackWrapper h1 {
    font-size: clamp(20px, 2.5vh, 28px);
}
.menuTitle h2 {
    font-size: clamp(19px, 2.4vh, 28px);
}
.menuItem h3 {
    font-size: clamp(16px, 2vh, 28px);
}
.coverContent p,
.introduction p,
.menuTitle P,
.menuItem p,
.feedbackWrapper p {
    font-size: clamp(12px, 1.5vh, 20px);
}

.termsPrivacy {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 6px 15px 40px 15px; /* Beri padding bawah yang lebih longgar agar baris terakhir tidak mepet/tertutup */
    height: 100%;
    max-height: 85vh; /* Batasi tinggi maksimalnya agar tidak tembus ke bawah layar HP */
    width: 100%;
    overflow-y: scroll; /* Biar bisa di-scroll */
    max-width: 1400px;
    box-sizing: border-box; /* Pastikan padding tidak merusak lebar/tinggi */
    scrollbar-width: none;
}
.termsPrivacy::-webkit-scrollbar {
    display: none;
}
.termsPrivacy h1 {
    margin-top: 28px;
}