
/* CSS for the layout */
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}
.golden-button {
    background-color: tan; /* Golden background */
    color: black; /* Text color */
    border: 2px solid darkgoldenrod; /* Golden border */
    padding: 10px 20px; /* Padding around the text */
    font-size: 22px; /* Font size */
    font-style: italic;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
    padding-top: -20px;
}

.golden-button:hover {
    background-color: tan; /* Darker shade on hover */
    color: gold; /* Text color on hover */
    border-color: gold; /* Border color on hover */
}

.golden-button:active {
    transform: scale(0.95); /* Slightly scale down when clicked */
}

header {
    background-image: url('poetry_header.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #333;
    text-shadow:
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000; 
    color: white;
    text-align: center;
    padding: 10px;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pageTitle {
    font-family: 'Parisienne', sans-serif;
    font-weight: bold;
    color: lightyellow;
    font-size: 50px;
}

.second-row {
    display: flex;
    flex: 1;
}

.second-row .left-side {
    flex: 1;
    padding: 20px;
    border: 1px solid #ddd;
}

.second-row .right-side {
    flex: 1;
    padding: 20px;
    border: 1px solid #ddd;
    text-align: center;
}

.third-row {
    background-color: #f0f0f0;
    padding: 20px;
    height: 250px;
}

textarea {
    width: 100%;
    height: 100px;
}

img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    left: 20px;
    background-color: #3a3;
    padding: 10px;
    z-index: 1;
}

.hamburger-menu a {
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 18px;
}

.hamburger-button {
    display: none;
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
}

.menu-open .hamburger-menu {
    display: flex;
}

@media (max-width: 1568px) {
    .hamburger-button {
        display: block;
    }

    .menu-open .hamburger-button {
        display: none;
    }

    .menu-open .hamburger-menu {
        display: flex;
    }
/* 
    main {
        display: none;
    } 

    .menu-open main {
        display: block;
    }*/
}

.modal-overlay {
    position: fixed; /* Full-screen overlay */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.modal-content {
    text-align: center;
}

/* Glowing effect */
@keyframes glowing {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

#glowing-quill {
    animation: glowing 3s infinite; /* Adjust duration as needed */
    width: 200px;
    height: auto;
    border-radius: 70%;
}