/* ==========================================================================
   0. DEKLARASI CUSTOM FONT (REVISI HELVETICA & GROOVELA)
   ========================================================================== */
/* Font Judul */
@font-face {
    font-family: 'Groovela';
    src: url('aset/font/groovello/Groovello-PERSONAL-USE-ONLY!.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Font Body (Regular) */
@font-face {
    font-family: 'Helvetica Custom';
    src: url('aset/font/helvetica-255/Helvetica.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Font Body (Bold) */
@font-face {
    font-family: 'Helvetica Custom';
    src: url('aset/font/helvetica-255/Helvetica-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* ==========================================================================
   1. RESET & VARIABLE UTAMA GLOBAL
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #50AAB4; /* Tosca */
    --color-orange: #F58C3C;  /* Oranye */
    --color-red: #DC553C;
    --color-white: #FFFDEB;   /* Cream halus */
    --color-dark: #333333;
    
    --font-heading: 'Groovela', 'Playfair Display', serif; 
    --font-body: 'Helvetica Custom', Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ==========================================================================
   2. HEADER & NAVIGATION GLOBAL
   ========================================================================== */
.header-transparent {
    width: 100%;
    padding: 30px 50px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
}

.container-nav {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.img-logo {
    height: 50px;
    width: auto;
    display: block;
}

.navbar-text-only {
    display: flex;
    gap: 0;
}

.nav-txt-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 22px;
    color: white;
    text-decoration: none;
    padding: 0 15px;
    transition: color 0.3s ease;
}

.nav-txt-link:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-txt-link:hover,
.nav-txt-link.active {
    color: var(--color-orange);
}


/* ==========================================================================
   3. GAYA HERO SECTION GLOBAL (HOME, MENU, REVIEW, CONTACT)
   ========================================================================== */
.hero-section, .hero-menu-container, .review-page-container, .contact-page-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.hero-section { background-image: url('aset/heroimage/home_heroimage.png'); }
.hero-menu-container { background-image: url('aset/heroimage/menu_heroimage.png'); }
.review-page-container { background-image: url('aset/heroimage/review_heroimage.png'); }
.contact-page-container { background-image: url('aset/heroimage/contact_heroimage.png'); }

.content-wrapper, .hero-menu-content, .review-hero-content, .contact-hero-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

.hero-left-spacer, .review-left-spacer, .contact-left-spacer { 
    flex: 1.2; 
}

.text-content, .hero-right-text, .review-right-text-box, .contact-right-text-box {
    flex: 1;
    max-width: 580px; 
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: #FFFFFF;
    margin-top: 40px;
}

/* KHUSUS JUDUL HERO HOME */
.text-content h2 {
    font-family: var(--font-heading); 
    font-size: 3.8rem;
    color: white;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 3px 5px 12px rgba(0, 0, 0, 0.4);
}

.text-content h2 span { 
    display: block; 
    white-space: nowrap;
}

/* KHUSUS JUDUL HERO MENU */
.hero-menu-container .hero-title {
    font-family: var(--font-heading); 
    font-size: 6.8rem;
    font-weight: 700;
    line-height: 0.98;
    margin-bottom: 22px;
    letter-spacing: 2px;
    text-shadow: 3px 5px 15px rgba(0, 0, 0, 0.35);
}

/* KHUSUS JUDUL HERO REVIEW */
.review-hero-title {
    font-family: var(--font-heading);
    font-size: 5.8rem;
    font-weight: 700;
    line-height: 1.02;
    margin-bottom: 20px;
    letter-spacing: 2.5px;
    text-shadow: 3px 5px 15px rgba(0, 0, 0, 0.4);
}

.review-right-text-box {
    max-width: 580px;
}

/* KHUSUS JUDUL HERO CONTACT */
.contact-hero-title {
    font-family: var(--font-heading);
    font-size: 5.8rem;
    font-weight: 700;
    line-height: 1.02;
    margin-bottom: 20px;
    letter-spacing: 2.5px;
    text-shadow: 3px 5px 15px rgba(0, 0, 0, 0.4);
}

.contact-right-text-box {
    max-width: 600px;
}

.text-content p, .hero-subtitle, .review-hero-subtitle, .contact-hero-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
    max-width: 480px;
}

.hero-menu-container .hero-subtitle {
    font-size: 1.2rem;
    max-width: 500px;
}

.btn-menu-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: #5ab1b6; 
    color: #ffffff;
    padding: 12px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px; 
    font-family: var(--font-heading); 
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-menu-home:hover {
    background-color: var(--color-orange);
    transform: translateY(-3px);
}


/* ==========================================================================
   4. HALAMAN HOME & DEKORASI BAKERY GLOBAL
   ========================================================================== */
.bestseller-section, .why-section, .main-menu-content, .main-review-content {
    position: relative;
    overflow: hidden;
}

.bestseller-section {
    padding: 95px 0;
    background-color: #FFFDF0;
}

/* ELEMEN DEKORASI FLOATING BAKERY */
.bakery-deco {
    position: absolute;
    color: var(--color-orange);
    opacity: 0.18;
    pointer-events: none;
    z-index: 1;
}

/* DEKORASI HOME */
.deco-wheat-left { top: 40px; left: 25px; font-size: 90px; transform: rotate(-25deg); }
.deco-cake-right { bottom: 50px; right: 30px; font-size: 100px; transform: rotate(15deg); }
.deco-sparkle-top { top: 25px; right: 15%; font-size: 40px; color: #D38E43; opacity: 0.3; }
.deco-cookie-left { bottom: 40px; left: 30px; font-size: 85px; transform: rotate(-15deg); }
.deco-chef-right { top: 50px; right: 40px; font-size: 80px; transform: rotate(20deg); }
.deco-wheat-bottom { top: 20px; left: 18%; font-size: 50px; opacity: 0.12; }

/* DEKORASI KHUSUS PAGE MENU */
.menu-deco-wheat-left { top: 120px; left: 35px; font-size: 100px; transform: rotate(-20deg); }
.menu-deco-cake-right { top: 180px; right: 45px; font-size: 95px; transform: rotate(15deg); }
.menu-deco-cookie-left { bottom: 250px; left: 25px; font-size: 85px; transform: rotate(-10deg); }
.menu-deco-wheat-right { bottom: 120px; right: 35px; font-size: 105px; transform: rotate(30deg); }

/* DEKORASI KHUSUS PAGE REVIEW */
.review-deco-wheat-left { top: 100px; left: 35px; font-size: 100px; transform: rotate(-20deg); }
.review-deco-cake-right { top: 150px; right: 45px; font-size: 95px; transform: rotate(15deg); }
.review-deco-cookie-left { bottom: 200px; left: 30px; font-size: 85px; transform: rotate(-15deg); }
.review-deco-utensils-right { bottom: 120px; right: 40px; font-size: 90px; transform: rotate(20deg); }

.section-title-wrapper {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.section-title-wrapper .sub-script {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 30px;
    color: var(--color-orange);
    display: block;
    margin-bottom: -10px;
}

.home-section-title {
    font-family: var(--font-heading);
    font-size: 46px;
    color: #4A2E1C;
    letter-spacing: 2px;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 6px 0 10px 0;
}

.title-divider .line {
    width: 50px;
    height: 1.5px;
    background: var(--color-orange);
}

.title-divider .mini-heart { color: var(--color-orange); font-size: 10px; }

.bestseller-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.bestseller-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    border: 1.5px solid #F6E6D0;
    transition: transform 0.3s ease;
}

.bestseller-card:hover { transform: translateY(-8px); }

.badge-bestseller {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #F39C12, #D35400);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

.card-img-box {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 15px;
}

.card-img-box img { width: 100%; height: 100%; object-fit: cover; }

.bestseller-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-orange);
}

.bestseller-btn-wrapper { text-align: center; position: relative; z-index: 2; }

.btn-lihat-semua {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #4A2E1C;
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-lihat-semua:hover { background-color: var(--color-orange); }

.why-section {
    padding: 85px 0 105px 0;
    background-color: #FFF9EB;
    border-top: 1px dashed #E6D8BA;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.why-card {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f2e3c6;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-icon-box {
    width: 90px;
    height: 90px;
    margin-bottom: 18px;
}

.why-icon-box img { width: 100%; height: 100%; object-fit: contain; }

.why-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #4A2E1C;
    margin-bottom: 10px;
}

.why-card p { font-size: 13px; color: #666; line-height: 1.6; }


/* ==========================================================================
   5. HALAMAN MENU & GRID PRODUK
   ========================================================================== */
.main-menu-content { 
    padding: 80px 0; 
    background-color: var(--color-white); 
}

.main-menu-content .container {
    position: relative;
    z-index: 2;
}

.section-title { 
    font-family: var(--font-heading); 
    font-size: 42px; 
    color: var(--color-orange); 
    margin-bottom: 20px; 
    letter-spacing: 2px;
}

.menu-desc { color: #666; margin-bottom: 50px; line-height: 1.8; max-width: 900px; }

.search-container { width: 100%; display: flex; justify-content: center; margin-bottom: 50px; }
.search-box { position: relative; width: 100%; max-width: 480px; display: flex; align-items: center; }
.search-icon { position: absolute; left: 20px; color: var(--color-primary); font-size: 18px; }
.search-box input {
    width: 100%;
    padding: 14px 20px 14px 55px; 
    border: 2px solid #BCE3E5;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 15px;
    background-color: #ffffff;
}

.menu-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.menu-item { 
    background: white; 
    border-radius: 15px; 
    padding: 16px; 
    text-align: center; 
    border: 2px solid var(--color-primary); 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.menu-item:hover { transform: translateY(-5px); border-color: var(--color-orange); }
.menu-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 10px; margin-bottom: 12px; }
.menu-item h4 { color: var(--color-orange); font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; }
.click-hint { font-size: 11px; color: var(--color-primary); font-weight: 600; }

.no-results-message {
    text-align: center;
    padding: 40px 20px;
    color: var(--color-orange);
    font-size: 18px;
}
.no-results-message i {
    font-size: 40px;
    margin-bottom: 10px;
}


/* ==========================================================================
   6. HALAMAN REVIEW
   ========================================================================== */
.main-review-content { 
    padding: 80px 0; 
    background-color: var(--color-white); 
}

.main-review-content .container {
    position: relative;
    z-index: 2;
}

.review-section-title { 
    font-family: var(--font-heading); 
    font-size: 38px; 
    color: var(--color-orange); 
    text-align: center; 
    margin-bottom: 40px; 
    letter-spacing: 2px;
}

.review-form-container {
    width: 100%; max-width: 800px; background-color: #ffffff; padding: 35px; border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin: 0 auto 50px auto; border: 2px solid var(--color-primary);
}
.review-form-container h3 { font-family: var(--font-heading); font-size: 24px; color: var(--color-primary); margin-bottom: 20px; border-bottom: 2px solid var(--color-orange); padding-bottom: 10px; }
.review-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 14px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 15px; border: 1.5px solid #cccccc; border-radius: 8px; font-family: var(--font-body); font-size: 14px;
}
.btn-submit-review {
    font-family: var(--font-heading); background-color: var(--color-orange); color: white; font-size: 18px; padding: 14px; border: none; border-radius: 8px; cursor: pointer;
}

.reviews-table { width: 100%; max-width: 800px; margin: 0 auto; border-collapse: separate; border-spacing: 0 20px; }
.reviews-table td { background-color: #ffffff; border: 2px solid var(--color-primary); border-radius: 15px; padding: 25px 30px; }
.stars { color: #FFB800; font-size: 18px; margin-bottom: 10px; }
.reviewer-name { color: var(--color-primary); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.review-text { color: #555555; font-size: 15px; font-style: italic; }


/* ==========================================================================
   7. HALAMAN CONTACT & LOKASI
   ========================================================================== */
.main-location-content { padding: 90px 0; background: linear-gradient(135deg, #62a3a8 0%, #4f8b90 100%); color: #ffffff; }
.location-flex-layout { display: flex; justify-content: space-between; align-items: center; gap: 60px; }
.map-visual-container { flex: 1.1; display: flex; flex-direction: column; align-items: center; gap: 25px; width: 100%; }
.map-frame-wrapper { width: 100%; max-width: 550px; aspect-ratio: 1.5/1; border-radius: 20px; overflow: hidden; border: 4px solid rgba(255,255,255,0.6); }
.map-image { width: 100%; height: 100%; object-fit: cover; }
.map-badge-btn {
    background-color: #ffffff; color: #4f8b90; font-weight: 700; padding: 12px 35px; border-radius: 50px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
}
.map-social-connect-premium { display: flex; gap: 15px; width: 100%; max-width: 550px; }
.premium-social-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 14px; color: white; }
.btn-ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.btn-tt { background-color: #000000; border: 1px solid rgba(255,255,255,0.2); }
.btn-wa { background-color: #25D366; }

.contact-info-text { flex: 0.9; width: 100%; }
.contact-info-text .title-serif { font-family: var(--font-heading); font-size: 52px; line-height: 1.1; margin-bottom: 20px; letter-spacing: 2px; }
.contact-info-text .subtitle-bold { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.contact-info-text .address-text { font-size: 15px; margin-bottom: 30px; opacity: 0.9; }
.operating-hours-box { background-color: rgba(255,255,255,0.18); border-left: 4px solid var(--color-orange); padding: 20px; border-radius: 0 12px 12px 0; display: flex; flex-direction: column; gap: 6px; }


/* ==========================================================================
   8. MODAL POPUP LIHAT DETAIL MENU
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 850px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 24px;
    padding: 35px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    border: 2px solid var(--color-primary);
    transform: scale(0.85);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #888888;
    cursor: pointer;
    line-height: 1;
}

.modal-close-btn:hover {
    color: var(--color-red);
}

.modal-body-layout {
    display: flex;
    gap: 35px;
    align-items: center;
}

.modal-img-container {
    flex: 0.9;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eeeeee;
}

.modal-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info-container {
    flex: 1.1;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 30px;
    color: #4A2E1C;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

.modal-divider {
    border: none;
    height: 3px;
    background-color: var(--color-orange);
    width: 60px;
    border-radius: 2px;
    margin-bottom: 18px;
}

.modal-details-list p {
    font-size: 14px;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 10px;
}

.modal-details-list p strong {
    color: #4A2E1C;
    font-weight: 700;
}


/* ==========================================================================
   9. FOOTER GLOBAL
   ========================================================================== */
.footer { 
    background-color: #1b1b28; 
    color: white; 
    padding: 50px 0 35px 0; 
    font-size: 14px; 
}

.footer-container { 
    display: flex; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    gap: 40px; 
    padding: 0 5%; 
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

.footer-logo { 
    height: 45px; 
    margin-bottom: 20px; 
}

.social-icons { 
    display: flex; 
    gap: 12px; 
    margin-bottom: 18px;
}

.social-icons a { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 40px; 
    height: 40px; 
    background-color: white; 
    color: #1b1b28; 
    border-radius: 50%; 
    text-decoration: none; 
    font-size: 20px; 
    transition: all 0.3s ease;
}

.social-icons a:hover { 
    background-color: var(--color-orange); 
    color: white; 
}

.footer-copyright-left {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    white-space: nowrap; 
    margin-top: 2px;
}

.footer-heading { 
    font-family: var(--font-heading); 
    color: var(--color-orange); 
    font-size: 20px; 
    margin-bottom: 15px; 
    letter-spacing: 1px;
}

.footer-right p { 
    margin-bottom: 10px; 
}

.footer-link { 
    color: white; 
    text-decoration: none; 
}

.footer-link:hover { 
    color: var(--color-orange); 
}


/* ==========================================================================
   10. OPTIMASI RESPONSIVE DESIGN UNTUK HP
   ========================================================================== */
@media (max-width: 1200px) {
    .bakery-deco { opacity: 0.12; }
}

@media (max-width: 1100px) {
    .menu-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .header-transparent {
        padding: 20px 30px;
    }
    
    /* WADAH UTAMA BERADA DI TENGAH LAYAR */
    .content-wrapper, .hero-menu-content, .review-hero-content, .contact-hero-content { 
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        padding-top: 80px; 
        padding-bottom: 20px;
        height: 100%;
    }
    
    .hero-left-spacer, .review-left-spacer, .contact-left-spacer { 
        display: none; 
    }
    
    /* BOX KONTEN TEKS RATA KANAN SEPERTI DESKTOP */
    .text-content, .hero-right-text, .review-right-text-box, .contact-right-text-box { 
        text-align: right; 
        align-items: flex-end; 
        justify-content: center;
        max-width: 100%;
        margin-top: 0;
    }
    
    .text-content h2 span { white-space: normal; }
    .text-content h2 { font-size: 3.2rem; }
    .hero-menu-container .hero-title { font-size: 4.8rem; }
    .review-hero-title { font-size: 4.2rem; }
    .contact-hero-title { font-size: 4.2rem; }
    
    .location-flex-layout { flex-direction: column; gap: 40px; }
    
    .modal-body-layout { flex-direction: column; text-align: center; }
    .modal-img-container { max-width: 220px; margin: 0 auto 15px auto; }
    .modal-divider { margin: 10px auto 15px auto; }
    
    .bakery-deco { display: none; }
}

@media (max-width: 768px) {
    .header-transparent {
        padding: 15px 20px;
    }

    .container-nav {
        flex-direction: column;
        gap: 12px;
    }

    .img-logo {
        height: 42px;
    }

    .nav-txt-link {
        font-size: 16px;
        padding: 0 10px;
    }

    .hero-section, .hero-menu-container, .review-page-container, .contact-page-container {
        height: 100vh;
        min-height: 580px;
    }

    .hero-menu-container {
        background-position: left center !important;
    }

    .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .bestseller-grid, .why-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 30px auto; }
    
    .review-form-container {
        padding: 25px 20px;
    }
    
    .reviews-table td {
        padding: 20px;
    }

    .footer-container { flex-direction: column; align-items: center; text-align: center; gap: 30px; }
    .footer-copyright-left { white-space: normal; } 
    
    .map-social-connect-premium {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-txt-link {
        font-size: 14px;
        padding: 0 6px;
    }

    /* POSISI BACKGROUND KUE DI HP UKURAN KECIL */
    .hero-menu-container {
        background-position: 15% center !important;
    }

    /* FONT JUDUL DI HP TETAP RATA KANAN & ELOK */
    .text-content h2 { font-size: 2.2rem; letter-spacing: 1px; }
    .hero-menu-container .hero-title { font-size: 3.2rem; letter-spacing: 1px; }
    .review-hero-title { font-size: 2.8rem; letter-spacing: 1px; }
    .contact-hero-title { font-size: 2.8rem; letter-spacing: 1px; }

    .text-content p, .hero-subtitle, .review-hero-subtitle, .contact-hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
        max-width: 320px;
        text-align: right;
    }

    .btn-menu-home {
        font-size: 18px;
        padding: 10px 28px;
    }

    .home-section-title, .section-title, .review-section-title {
        font-size: 32px;
    }
    
    .contact-info-text .title-serif {
        font-size: 36px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .menu-item {
        padding: 10px;
    }

    .menu-item h4 {
        font-size: 0.85rem;
    }

    .modal-card { 
        padding: 25px 15px; 
        border-radius: 18px;
    }

    .modal-title { 
        font-size: 22px; 
    }

    .modal-details-list p {
        font-size: 13px;
    }

    .search-box input {
        font-size: 13px;
        padding: 12px 15px 12px 45px;
    }

    .search-icon {
        left: 15px;
        font-size: 16px;
    }
}