/* Faith & Light Page

/* Peaceful gradient background (sky & light tones) */
body {
font-family: 'Georgia', serif;
background: linear-gradient(to bottom right, #a1c4fd, #fbc2eb, #fde293);
background-size: 300% 300%;
animation: glowShift 12s ease-in-out infinite alternate;
text-align: center;
margin: 0;
color: #2e2e2e;
}

/* Animation for background gradient movement */
@keyframes glowShift {
0% { background-position: left top; }
100% { background-position: right bottom; }
}

/* Header with soft gold text */
header {
padding: 40px;
background-color: rgba(255, 255, 255, 0.25);
border-bottom: 3px solid #ffd966;
box-shadow: 0 2px 25px rgba(255, 215, 0, 0.4);
}

h1 {
color: #fff3b0;
text-shadow: 2px 2px 10px #a16ae8;
margin-bottom: 10px;
}

header p {
color: #fdfdfd;
font-style: italic;
text-shadow: 1px 1px 5px #4b3b73;
}

/* Decorative section using clip-path (NEW CSS) */
.light-section {
background: radial-gradient(circle, rgba(255, 255, 200, 0.9), transparent 80%);
clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
padding: 60px 20px;
margin: 40px auto;
width: 70%;
color: #3a3a00;
font-weight: bold;
font-size: 1.2em;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Verse of the Day box */
.verse-box {
margin: 40px auto;
width: 60%;
padding: 30px;
background: rgba(255, 255, 255, 0.6);
border-radius: 15px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
transition: transform 0.5s ease, background-color 1s;
}

.verse-box:hover {
transform: scale(1.05);
background-color: rgba(255, 255, 255, 0.75);
}

h3 {
color: #ffcc00;
margin-bottom: 10px;
}

#dailyVerse {
color: #3b1f65;
font-size: 1.1em;
font-style: italic;
}

/* Footer styling */
footer {
background-color: rgba(255, 255, 255, 0.4);
padding: 20px;
border-top: 2px solid #ffd966;
color: #332c1f;
font-size: 0.9em;
}

footer a {
color: #004aad;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}































