/* index.css — stylesheet bersama untuk index.html, profil.html, dan kontak.html */

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdf6f0;
    color: #333;
}

nav {
    background-color: #d6336c;
    padding: 12px 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

div.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

span.highlight {
    color: #d6336c;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #d6336c;
    color: #fff;
    margin-top: 30px;
}

/* Frame landscape (Beranda): gambar landscape ditampilkan utuh (contain), tidak terpotong */
div.hero {
    width: 100%;
    height: 350px;
    background-color: #f1e0d6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

div.hero img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Frame portrait (Profil & Kontak): foto aslinya potret, jadi framenya tinggi & ramping agar utuh */
div.profile-photo,
div.contact-photo {
    width: 260px;
    max-width: 100%;
    height: 380px;
    margin: 0 auto;
    background-color: #f1e0d6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

div.profile-photo img,
div.contact-photo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Galeri makanan (Profil) */
div.food-gallery {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

div.food-item {
    flex: 1 1 150px;
    text-align: center;
}

div.food-item .thumb {
    width: 100%;
    height: 160px;
    background-color: #f1e0d6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

div.food-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Peta lokasi (Kontak) */
div.map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 8px;
}
