@font-face {
    font-family: 'Roca-Regular';
    src: url('Fonts/Roca-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

#main {
    width: 1120px;
    margin: 0px auto;
}

h1 {
    font-family: Roca-Regular;
    font-size: 3em;
}

button {
    width: 300px;
    font-family: Roca-Regular;
    font-size: 1.5em;
    background-color: #ffffff; /* Green */
    border: 2px solid black;
    border-radius: 12px;
    color: rgb(0, 0, 0);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

button:hover {
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
}

#logo {
    width: 100px;
}

#hero {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#hero img {
    width: 500px;
}

#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#popup-form {
    background: #fff;
    font-family: ProximaNova, sans-serif;
    font-size: 1em;
    padding: 32px 32px;
    border-radius: 12px;
    width: 500px;
    max-width: 90vw;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#popup-form h2 {
    margin-top: 0;
}

#popup-form label {
    font-weight: bold;
    margin-bottom: 4px; /* Optional: small space between label and input */
}

#popup-form input,
#popup-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    font-family: inherit;
}

#popup-form textarea {
    resize: vertical;
    min-height: 80px;
}

#close-popup {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2em;
    color: #888;
    cursor: pointer;
    user-select: none;
}

/* Success Popup Styling */
#success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}
#success-popup {
    background: #fff;
    font-family: ProximaNova, sans-serif;
    font-size: 1em;
    padding: 32px 32px;
    border-radius: 12px;
    width: 500px;
    max-width: 90vw;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.success-icon {
    margin-bottom: 12px;
}
#close-success-popup {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2em;
    color: #888;
    cursor: pointer;
    user-select: none;
}