/* alter */

/* Section Styles */
.altar-servers-section {
    max-width: 1200px; /* Limit section width for better readability */
    margin: 40px auto; /* Center the section with vertical space */
    padding: 20px; /* Internal padding for breathing space */
   
    border-radius: 10px; /* Rounded corners for a modern look */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Header Styles */
h1 {
    color: #f50808; /* Darker title color for prominence */
    font-size: 36px; /* Font size for the main title */
    margin-bottom: 20px; /* Space below the title */
    text-align: center; /* Center the title */
}

h2 {
    color: #2980b9; /* Accent color for section titles */
    font-size: 28px; /* Font size for section titles */
    margin-top: 30px; /* Space above section titles */
    margin-bottom: 10px; /* Space below section titles */
}

/* Paragraph and List Styles */
p {
   
    font-size: 18px; /* Font size for paragraphs */
    margin-bottom: 20px; /* Space below paragraphs */
}

ul {
    list-style-type: square; /* Change bullet style */
    padding-left: 20px; /* Padding for lists */
}

li {
    margin-bottom: 10px; /* Space between list items */
}

/* Introduction Section */
.introduction {
    background-color: #ecf0f1; /* Light gray for contrast */
    padding: 15px; /* Padding inside introduction */
    border-left: 5px solid #2980b9; /* Accent border on the left */
    border-radius: 5px; /* Rounded corners */
   
    border-radius: 5px; /* Rounded corners */
    margin-bottom: 20px; /* Space below sections */
}


/* Role and Responsibilities Sections */
.role, .responsibilities, .training {
    padding: 20px; /* Padding for sections */
    background-color: #ffffff; /* White background for sections */
    border: 1px solid #dcdcdc; /* Light border for separation */
    border-radius: 5px; /* Rounded corners */
    margin-bottom: 20px; /* Space below sections */
}

.role h2, .responsibilities h2, .training h2 {
    margin-top: 0; /* Remove default margin above h2 in sections */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .altar-servers-section {
        padding: 10px; /* Reduce padding on smaller screens */
    }

    h1 {
        font-size: 28px; /* Adjust font size for mobile */
    }

    h2 {
        font-size: 24px; /* Adjust font size for mobile */
    }

    p {
        font-size: 16px; /* Adjust font size for mobile */
    }
}

/* lector */



/* Lectors Section */
.lectors-section {
    
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lectors-section h1, .lectors-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.lectors-section p {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #555;
}

.lectors-section ul {
    list-style-type: disc;
    padding-left: 40px;
}

.lectors-section ul li {
    margin-bottom: 10px;
    font-size: 1.5rem;
}



/* Ushers Section Styles */
.ushers-section {
    padding: 50px 80px;
    background-color: #fff;
}

.ushers-section h1 {
    font-size: 36px;
    color: #2e3b4e;
    margin-bottom: 20px;
}

.ushers-section h2 {
    font-size: 28px;
    color: #35475e;
    margin-top: 40px;
}

.ushers-section p {
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 20px;
}

.ushers-section ul {
    margin-left: 20px;
    list-style-type: disc;
    font-size: 18px;
    padding-left: 20px;
    color: #555;
}

.ushers-section ul li {
    margin-bottom: 10px;
}

.hamburger {
	display: none;
	font-size: 30px;
	cursor: pointer;
	padding: 15px;
}


/* Hide the menu on small screens */
@media (max-width: 768px) {
	nav {
		display: flex;
		justify-content: flex-end;
		/* Push the hamburger to the right */
	}

	nav ul {
		display: none;
		/* Hide the menu initially */
		flex-direction: column;
		align-items: flex-start;
		/* Align menu items to the left */
		width: 100%;
		background-color: #ffffff;
		position: absolute;
		/* Absolutely position the menu */
		top: 0;
		right: 0;
		/* Position the menu on the right side */
		z-index: 1000;
		padding: 0;
	}

	nav ul li {
		width: 100%;
		text-align: right;
		/* Align menu items to the right */
	}

	nav ul li a {
		padding: 15px;
		text-align: right;
		/* Align links to the right */
		font-size: 1rem;
		/* Adjust font size */
		color: #333333;
		/* Dark text for readability */
		text-decoration: none;
		/* Remove underline from links */
		transition: background-color 0.3s ease, color 0.3s ease;
		/* Smooth transition */
	}

	/* Hover effect for links */
	nav ul li a:hover {
		background-color: #fb8b23;
		/* Highlight on hover */
		color: #ffffff;
		/* Change text color on hover */
	}

	/* Show the menu when toggled */
	nav ul.show {
		display: flex;
		/* Show the menu when toggled */
	}

	.hamburger {
		display: block;
		/* Show hamburger icon */
	}
}

#menu {
	display: none;
}

.menu-toggle {
	display: block;
	/* Ensure the toggle is visible */
}



.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h1 {
    font-size: 3em;
    color: #27ae60;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6); /* Enhanced text shadow */
}

/* Styles for the Lectors Section */
/* Lectors Section Styles */
.lectors-section {
    padding: 40px;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

.lectors-section h1,
.lectors-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.lectors-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.lectors-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.lectors-text {
    flex: 1;
    max-width: 600px;
    color: #555;
    font-size: 1em;
    line-height: 1.6;
}

.lectors-section ul {
    margin: 20px auto;
    padding: 0;
    list-style-type: none;
    max-width: 600px;
    color: #555;
}

.lectors-section ul li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lectors-section p {
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* Icons Styling */
.lectors-section i {
    color: #27ae60;
    font-size: 1.2em;
}

/* Ushers Section Styles */
.ushers-section {
    padding: 40px;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

.ushers-section h1,
.ushers-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ushers-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.ushers-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ushers-text {
    flex: 1;
    max-width: 600px;
    color: #555;
    font-size: 1em;
    line-height: 1.6;
}

.ushers-section ul {
    margin: 20px auto;
    padding: 0;
    list-style-type: none;
    max-width: 600px;
    color: #555;
}

.ushers-section ul li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ushers-section p {
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* Icons Styling */
.ushers-section i {
    color: #27ae60;
    font-size: 1.2em;
}

