@import url('https://fonts.googleapis.com/css2?family=Inknut+Antiqua:wght@400;700&display=swap');

body {
    font-family: 'Inknut Antiqua', serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0%;
    display: flex;          
    justify-content: center;  
    align-items: center;    
    flex-direction: column;     
    min-height: 100vh;      
} 

.detalle-platillo {
    background: #cbff79;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 2%;
    margin: 10px;
    max-width: 800px; 
    width: 90%; /* para que se ajuste mejor en pantallas pequeñas */
    box-sizing: border-box;
    word-wrap: break-word;
}


.detalle-platillo img {
    max-width: 80%; 
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.detalle-platillo button {
    color: #E0932F;
    background-color: whitesmoke;
    border: none;
    border-radius: 100px;
    font-weight: bold;
    font-family: 'Inknut Antiqua', serif;
    font-size: clamp(0.8rem, 2vw, 1.2rem); /* más flexible */
    padding: 8px 12px;
    cursor: pointer;
    display: inline-block;
    white-space: normal; /* permite que el texto baje a otra línea */
    text-align: center; /* centra el texto si son dos líneas */
    max-width: 100%; /* nunca se sale del contenedor */
}

.detalle-platillo button:hover {
    background: #d17906;
    color: white;
}
