/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    text-align: center;
}

/* Hero Section */
.hero {
    background: url('../assets/images/church-bg1.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: yellow;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    background: #ff6600;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.btn:hover {
    background: #cc5200;
}

/* Schedule Section */
.schedule {
    padding: 50px;
    background: white;
}

.schedule h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.schedule-item {
    background: #4A90E2;
    color: white;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.schedule-item:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 10px;
    margin-top: 20px;
}
/* Modal for Secretary Confirmation */
.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

/* Login Form */
.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.error {
    color: red;
    margin-top: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #4A90E2;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background: #14418B;
}

.btn-cancel {
    background: red;
}

.btn-cancel:hover {
    background: darkred;
}
.p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #4A90E2;
}