/* 
action: 
1. fix the picture as right now only a small portion is shown

*/

a:link {
    text-decoration: none;
}

.header {
    background-color: #73AD21;
    font-weight: bold;
    font-family: Tahoma, sans-serif;
    font-size: largest;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 1rem;
    color: white;
    display: flex;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;

}

.email-signup {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: normal;
    font-size: 0.85rem;
}

.email-signup .email-signup-honeypot {
    display: none;
}

.email-signup input[type="email"] {
    border: none;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 0.85rem;
    width: 160px;
}

.email-signup button {
    border: none;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.85rem;
    font-weight: bold;
    background: yellow;
    color: #241c14;
    cursor: pointer;
}

.email-signup button:hover {
    background: #e6cf00;
}

.email-signup button:disabled {
    cursor: default;
    opacity: 0.7;
}

.email-signup-status {
    font-size: 0.75rem;
    max-width: 140px;
}

@media (max-width: 700px) {
    .email-signup {
        position: static;
        transform: none;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}
.main-image {
    background-image: url('./eiffel.jpg');
    height:1000px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.main-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* flex-direction: column; */
}

.BigButtons {
    font-weight: bold;
    font-family: Tahoma, sans-serif;
    font-size: large;
    border-radius: 25px;
    border:  5px solid yellow;
    background: #73AD21;
    padding: 1rem 0; 
    width: 200px;
    height: auto;
    text-align: center;
    margin: 10px;
    opacity: 0.9;
    cursor: pointer;
}

.sub-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.SubButtons {
    font-weight: bold;
    font-family: Tahoma, sans-serif;
    font-size: medium;
    border-radius: 10px;
    border:  5px solid yellow;
    background: #73AD21;
    padding: 2px;
    padding-left: 2px;
    padding-right: 2px;
    width: auto;
    height: auto;
    text-align: center;
    margin: 10px;
    opacity: 0.9;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-overlay.hide {
    display: none;
}

.modal-dialog {
    position: relative;
    background: #73AD21;
    border-radius: 15px;
    border: 5px solid yellow;
    padding: 2rem;
    max-width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 6px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    line-height: 1;
}

#modal-title {
    color: white;
    font-family: Tahoma, sans-serif;
    margin-top: 0;
    margin-bottom: 1rem;
}

#modal-choices.vertical {
    flex-direction: column;
    align-items: center;
}






