* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background: #fff;
}

/* Header Styles */
header {
	background: linear-gradient(135deg, #e2d3ce 0%, #c4ada5 100%);
	color: white;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);	color: white;
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	text-decoration: none;
	color: white;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-links a {
	color: white;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.nav-links a:hover {
	opacity: 0.8;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
}


.intro-text {
	text-align: center;
	font-size: 1.1rem;
	color: #666;
	max-width: 800px;
	margin: 0 auto 40px;
}

.beliefs-list {
	list-style: none;
	margin-top: 30px;
}

.beliefs-list li {
	padding: 10px;
	margin-bottom: 15px;
	background: #f8f9fa;
	border-left: 4px solid #8b6f5c;
	border-radius: 4px;
	transition: all 0.3s ease;
	display: flex;
	align-items: flex-start;
}

.belief-number {
	font-weight: bold;
	color: #8b6f5c;
	margin-right: 8px;
	flex-shrink: 0;
}

.belief-text {
	color: #444;
	line-height: 1.7;
	flex: 1;
}
		
/* Hero Section */
.hero {
	height: 100vh;
	background: url('background.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #1a1a1a;
	position: relative;
	
}

.hero-content {
	max-width: 800px;
	padding: 0 2rem;
	animation: fadeInUp 1s ease-out;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
	display: inline-block;
	padding: 15px 30px;
	background: linear-gradient(135deg, #ff6b6b, #ee5a24);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Main Content */
main {
	padding: 4rem 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.schedule-container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 2rem;
}


.content-section {
	margin-bottom: 4rem;
}

.content-section h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: #333;
	text-align: center;
}

.content-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #667eea;
}

.card p {
	color: #666;
	line-height: 1.7;
}

/* Meeting Schedule Styles */
.meeting-schedule {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.day-schedule {
	background: white;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.day-schedule:hover {
	transform: translateY(-5px);
}

.day-schedule h3 {
	color: #b89d92;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	text-align: center;
	border-bottom: 2px solid #b89d92;
	padding-bottom: 0.5rem;
}

.meeting-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.meeting-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	border-radius: 10px;
	transition: background-color 0.3s ease;
}

.meeting-item.main {
	background: linear-gradient(135deg, rgba(196, 173, 165, 0.08), rgba(139, 111, 92, 0.12));
	border-left: 4px solid #8b6f5c;
}

.meeting-item.break {
	background: linear-gradient(135deg, #ff6b6b10, #ee5a2410);
	border-left: 4px solid #ff6b6b;
}

.meeting-item:hover {
	background-color: rgba(196, 173, 165, 0.15);
	}

.meeting-item .time {
	font-weight: 600;
	color: #333;
	font-size: 1rem;
	flex-basis: 40%; /* Adjust percentage as needed */
	flex-shrink: 0; /* Prevents shrinking below basis */
}

.meeting-item .activity {
	color: #666;
	font-size: 1rem;
	display: block;
	text-align: right;
	margin-bottom: 0.3rem;
}

.meeting-item.break .time,
.meeting-item.break .activity {
	color: #ff6b6b;
}

.meeting-item .activity:last-child {
	margin-bottom: 0;
}
.mobile-break {
	display: none; !important
}

.activities-container {
	display: flex;
	flex-direction: column;
	flex: 1;
	margin-left: 1rem;
}

.schedule-item {
	border-bottom: 1px solid #e0e7ff;
	transition: all 0.3s ease;
}

.schedule-item:last-child {
	border-bottom: none;
}

.schedule-header {
	display: grid;
	grid-template-columns: 120px 100px 1fr 40px;
	gap: 20px;
	padding: 20px;
	cursor: pointer;
	background: linear-gradient(135deg, rgba(196, 173, 165, 0.08), rgba(139, 111, 92, 0.12));
	transition: all 0.3s ease;
	align-items: center;
}

.schedule-header:hover {
	background-color: rgba(196, 173, 165, 0.15);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.date {
	font-weight: 600;
	color: #6b5b78;
	font-size: 14px;
}

.time {
	font-weight: 550;
	color: #6b5b78;
	font-size: 14px;
}

.topic {
	font-weight: 500;
	color: #2d3748;
	font-size: 16px;
}

.series-name {
	text-decoration: underline;
	font-weight: 600;
	color: #2d3748;
	font-size: 16px;
	margin-bottom: 4px;
}

.topic-number {
	font-weight: 400;
	font-size: 14px;
}

.schedule-details {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	background: rgba(102, 126, 234, 0.02);
}

.expanded .schedule-details {
	max-height: 300px;
	padding: 20px;
}

.details-content {
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.3s ease 0.1s;
}

.expanded .details-content {
	opacity: 1;
	transform: translateY(0);
}

.links-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.links-list a {
	color: #2d3748;
	text-decoration: none;
	padding: 8px 12px;
	border-radius: 6px;
	transition: all 0.2s ease;
	background: rgba(102, 126, 234, 0.1);
}

.links-list a:hover {
	background: rgba(102, 126, 234, 0.2);
	color: #4c51bf;
}

.expand-icon {
	font-size: 20px;
	color: #667eea;
	transition: transform 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.expanded .expand-icon {
	transform: rotate(180deg);
}

.mobile-info {
	display: none;
}

/* Map and Location Styles */
.map-container {
	margin: 2rem 0;
}

.location-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-card {
	background: white;
	padding: 1.5rem;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	text-align: center;
	transition: transform 0.3s ease;	
}

.info-card:hover {
	transform: translateY(-3px);
}

.info-card h4 {
	color: #b89d92;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.info-card p {
	color: #666;
	padding: 0.25rem;
	line-height: 1.5;
}

.center {
	display: flex;
	flex-direction: column;
}

.center p {
	display: flex;
	padding-left: 15%; /* adjust this value as needed */
	gap: 0.3rem;
	margin: 0.1rem 0;
}

.dtl, .ewl, .nel {
	width: 50px; /* fixed width so all text aligns */
	color: white;
    padding: 0.5px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 25px;
    font-weight: bold;
}

.dtl {
	background-color: #0072ce; /* DTL blue */
}

.ewl {
	background-color: #3b7a00; /* EWL green */
}

.nel {
	background-color: #b000b8; /* NEL purple */
}

.carousel-title {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            letter-spacing: -0.02em;
        }

.carousel-container {
	position: relative;
	max-width: 800px;
	width: 100%;
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	margin: 0 auto;
}

.carousel-wrapper {
	position: relative;
	height: 500px;
	overflow: hidden;
}

.carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
	opacity: 1;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	display: block;
}

.cover {
	object-fit: cover;
}

.fill {
	object-fit: contain;
}

.carousel-caption {
	position: absolute;
	bottom: 30px;
	left: 30px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 15px 20px;
	border-radius: 8px;
	backdrop-filter: blur(10px);
	max-width: 300px;
	transform: translateY(20px);
	opacity: 0;
	transition: all 0.3s ease;
}

.carousel-slide.active .carousel-caption {
	transform: translateY(0);
	opacity: 1;
}

.carousel-caption h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
}

.carousel-caption p {
	font-size: 14px;
	line-height: 1.4;
	opacity: 0.9;
}

.carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	color: #333;
	transition: all 0.3s ease;
	z-index: 10;
}

.carousel-nav:hover {
	background: white;
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-nav.prev {
	left: 20px;
}

.carousel-nav.next {
	right: 20px;
}

.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 20px;
	background: white;
}

.carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ddd;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-dot:hover {
	background: #bbb;
	transform: scale(1.2);
}

.carousel-dot.active {
	background: #a0735f;
	transform: scale(1.3);
}

/* Footer */
footer {
	background: #4a3f3a;
	color: white;
	padding: 3rem 0 1rem;
	text-align: center;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.footer-section {
	margin-bottom: 2rem;
}

.footer-section h3 {
	margin-bottom: 0rem;
	color: #ecf0f1;
}

.footer-section p {
	margin-bottom: 1rem;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-links a {
	color: #bdc3c7;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid #d1bfb8;
	padding-top: 1rem;
	color: #95a5a6;
}
@media (max-width: 1050px) {
.center p {
	display: flex;
	padding-left: 5%; /* adjust this value as needed */
	gap: 0.3rem;
	margin: 0.1rem 0;
}
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: linear-gradient(135deg, #e2d3ce 0%, #c4ada5 100%);
		color: #3d2f2a;
		flex-direction: column;
		padding: 1rem;
		gap: 1rem;
		align-items: flex-end; 
	}

	.nav-links.active {
		display: flex;
	}

	.menu-toggle {
		display: block;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1.1rem;
	}

	.hero {
		background-attachment: scroll;
	}

	.content-section h2 {
		font-size: 2rem;
	}

	.content-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.meeting-schedule {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.location-info {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.footer-links {
		flex-direction: column;
		gap: 1rem;
	}

	.container {
		padding: 0 1rem;
	}
	
	.center p {
	display: flex;
	padding-left: 30%; /* adjust this value as needed */
	gap: 0.3rem;
	margin: 0.1rem 0;
	}
	
	.meeting-item .time {
	display: block;
	font-weight: 600;
	color: #333;
	white-space: pre-line;
	font-size: 0.9rem;
	flex-basis: 40%; /* Adjust percentage as needed */
	flex-shrink: 0; /* Prevents shrinking below basis */
}

	.meeting-item .activity {
		color: #666;
		font-size: 0.9rem;
	}

	.carousel-container {
		margin: 10px;
	}
	
	.carousel-wrapper {
		height: 300px;
	}
	
	.carousel-caption {
		bottom: 15px;
		left: 15px;
		max-width: 250px;
		padding: 10px 15px;
	}
	
	.carousel-caption h3 {
		font-size: 16px;
	}
	
	.carousel-caption p {
		font-size: 13px;
	}
	
	.carousel-nav {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
	
	.intro-text {
		font-size: 1rem;
	}

	.beliefs-list li {
		padding: 15px;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.cta-button {
		padding: 12px 24px;
		font-size: 0.9rem;
	}

	nav {
		padding: 0 1rem;
	}
	
	.center p {
	display: flex;
	padding-left: 5%; /* adjust this value as needed */
	gap: 0.3rem;
	margin: 0.1rem 0;
	}
	
	.meeting-item .time {
	font-weight: 600;
	color: #333;
	font-size: 0.8rem;
	flex-basis: 35%; /* Adjust percentage as needed */
	flex-shrink: 0; /* Prevents shrinking below basis */
	}

	.meeting-item .activity {
		color: #666;
		font-size: 0.8rem;
	}
	
	.mobile-break {
		display: block;
	}

	.schedule-header {
		grid-template-columns: 1fr 40px;
		gap: 10px;
	}
	
	.date, .time {
		display: none;
	}
	
	.mobile-info {
		display: block;
		font-size: 12px;
		color: #667eea;
		margin-top: 4px;
	}
	
	.details-grid, .links-grid {
		grid-template-columns: 1fr;
	}
	
}

}