@import url('https://fonts.googleapis.com/css2?family=Arima:wght@400;700&family=Gabriela&display=swap'); /* Arima and Gabriela fonts */

* {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 
                 -4px -4px 12px rgba(0, 0, 0, 0.2),
                 4px 4px 12px rgba(0, 0, 0, 0.5);
}

/* Adjust the existing container-custom */
.container-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding-top: 20px;
    position: relative; /* Ensure this stays on top of the background */
}


/* Ensure rounded-button is not conflicted with new properties */
.rounded-button {
    padding: 15px 30px;
    font-size: calc(2em + 0.5vw);
    width: auto; /* Ensures button expands with content */
    display: inline-flex; /* Allows the button to grow with its content */>>
    white-space: normal; /* Allows text to wrap within button if needed */
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    border: none;
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-family: 'Arima', cursive;
    transition: transform 0.2s ease, background-color 0.2s ease;
}


/* Maintain the verse-text style */
.verse-text {
    font-size: calc(2em + 1vw); /* Base size that grows with screen width */
    padding: 0 20px 20px;
    line-height: 1.2;
    color: white;
    font-family: 'Gabriela', serif;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.button-row {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow for styling */
}

.unicode-button {
    background-color: transparent;
    border: none;
    font-size: 5em;
    font-family: 'Arima', cursive;
    color: white;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    margin: 0 20px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.menu-button {
    font-size: 3em;
}

.unicode-button:hover {
    color: rgba(255, 255, 255, 0.8);
}

.unicode-button:active {
    transform: scale(0.9);
}

/* Add link-list styles from new import */
.link-list {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center;    /* Center items horizontally within the container */
    font-size: 2.2em;
    padding: 0 20px 20px 20px;
    line-height: 1.5;
    color: white;
    font-family: 'Gabriela', serif;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8),
                 4px 4px 12px rgba(0, 0, 0, 0.5);
}

.link-list a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 10px 0;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}

.link-list a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.link-list a:active {
    transform: scale(0.9);
}
