/* phoenician.css */

/* Container styling */
.container {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fdf6e3;
    border: 2px solid #d4a373;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



/* Header */
h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #8b4513;
    text-align: center;
}

/* Input box */
#nameInput {
    width: 80%;
    padding: 10px 15px;
    font-size: 1rem;
    border: 2px solid #d4a373;
    border-radius: 8px;
    margin-bottom: 15px;
    outline: none;
    transition: border-color 0.3s;
}

#nameInput:focus {
    border-color: #8b4513;
}

/* Button styling */
button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #8b4513;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #a0522d;
}

/* Result area */
#resultArea {
    margin-top: 25px;
    min-height: 50px;
    max-height: 100px;     /* optional: limits growth */
    /*overflow-y: auto;*/      /* scroll if content exceeds height */
    padding: 15px;
    background-color: #fff8dc;
    border: 1px solid #d4a373;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Phoenician output */
#phoenicianOutput {
    font-size: 2.5rem;
    font-family: 'Noto Sans Phoenician', serif;
    color: #4b2e2e;
    word-break: break-word;
}

/* Responsive */
@media (max-width: 600px) {
    #nameInput {
        width: 100%;
    }

    #phoenicianOutput {
        font-size: 2rem;
    }
}


/*
#phoenicianOutput {
    font-size: 4em;
    color: #2b2b2b;
    text-shadow: 2px 2px 6px #000;
    font-family: "Noto Sans Phoenician", serif;
}
*/
