/* Title: Style sheet for Daily Feed Sign Up Page */

/* General Body Setup */
body {
    background-color: rgb(120, 96, 64);
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
}

/* Container */
#formContainer {
    width: 430px;
    background-color: white;
    border: 8px solid #142d80;
    border-radius: 25px;
    margin: 40px auto;
    overflow: hidden;
    box-shadow: 0px 0px 10px #00000077;
    position: relative;
}

/* Close button */
#closeBtn {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    border: 1px solid #000;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    width: 25px;
    height: 25px;
}

/* Top Header Image with Text Overlay */
#formContainer {
    background: white;
    position: relative;
}

#formContainer::before {
    content: "";
    display: block;
    background: url("../images/jesus_feeds_5000.jpeg") center top/cover no-repeat;
    height: 200px;
    width: 100%;
}

/* Header Text (Overlay on Image) */
#formContainer h1 {
    position: absolute;
    top: 80px;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 4px black;
    margin: 0;
}

#formContainer h2 {
    position: absolute;
    top: 120px;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 2px 2px 4px black;
    margin: 0;
}

/* Section Header */
#formContainer h3 {
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
    font-size: 16px;
}

/* Form Styling */
form {
    padding: 20px 40px 10px;
}

label {
    display: inline-block;
    width: 100px;
    margin-top: 10px;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    width: 200px;
    padding: 4px;
    margin-top: 10px;
}

input[type="radio"] {
    margin-left: 10px;
}

section {
    margin-top: 10px;
}

button[type="submit"] {
    background-color: #ddd;
    border: 1px solid #000;
    padding: 5px 15px;
    margin-top: 10px;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Scripture Thumbnails */
#Scriptures {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background-color: #142d80;
}

.Scripture {
    background-color: rgb(255, 255, 255);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.Scripture img {
    width: 100%;
    height: 100%;
    border-radius: 3px;
    object-fit: cover;
    transition: transform 0.3s;
}

.Scripture img:hover {
    transform: scale(1.05);
}

/* Round bottom corners of outer container */
#Scriptures .Scripture:first-child {
    border-bottom-left-radius: 15px;
}

#Scriptures .Scripture:last-child {
    border-bottom-right-radius: 15px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
    background-color: #142d80;
    color: white;
}

footer ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

footer ul a {
    color: white;
    text-decoration: none;
}

footer ul a:hover {
    text-decoration: underline;
}

footer p {
    margin: 0;
}
