* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	html, body {
		height: 100%;
		width: 100%;
	}

	body {
		font-family: 'Georgia', 'Garamond', serif;
		background: linear-gradient(135deg, #f5f1e8 0%, #e8dcc8 100%);
		display: flex;
		flex-direction: column;
		align-items: center;
		min-height: auto;
		padding: 1rem;
		color: #3a3a3a;
	}

	.container {
		max-width: 1200px;
		width: 100%;
		text-align: center;
		padding-top: 1rem;
		padding-bottom: 2rem;
	}

	/* Navigation Bar */
	.navbar {
		position: sticky;
		top: 0;
		width: 100%;
		background: rgba(255, 255, 255, 0.98);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
		z-index: 900;
		backdrop-filter: blur(10px);
	}

	.nav-container {
		max-width: 900px;
		margin: 0 auto;
		padding: 0 1rem;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.nav-menu {
		list-style: none;
		display: flex;
		gap: 2rem;
		flex-wrap: wrap;
		justify-content: center;
		padding: 1rem 0;
	}

	.nav-menu a {
		text-decoration: none;
		color: #3a3a3a;
		font-weight: 500;
		font-size: 0.95rem;
		transition: all 0.3s ease;
		padding: 0.5rem 0.8rem;
		border-bottom: 2px solid transparent;
	}

	.nav-menu a:hover {
		color: #c9a961;
		border-bottom-color: #c9a961;
	}

	.nav-toggle {
		display: none;
		background: none;
		border: none;
		font-size: 1.5rem;
		cursor: pointer;
		color: #3a3a3a;
	}

	 /* Language Toggle */
        .language-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            gap: 10px;
            background: rgba(255, 255, 255, 0.95);
            padding: 10px 15px;
            border-radius: 25px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }
	

	.lang-btn {
		background: none;
		border: 2px solid #c9a961;
		padding: 8px 16px;
		cursor: pointer;
		border-radius: 20px;
		font-size: 0.9rem;
		font-weight: 600;
		color: #3a3a3a;
		transition: all 0.3s ease;
		font-family: 'Georgia', serif;
	}

	.lang-btn.active {
		background: #c9a961;
		color: white;
		box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
	}

	.lang-btn:hover {
		transform: translateY(-2px);
	}

	/* Header Section */
	.header {
		margin-bottom: 2rem;
		animation: fadeInDown 1s ease-out;
		scroll-margin-top: 100px;
	}

	.header h1 {
		font-size: 2.5rem;
		font-weight: 300;
		letter-spacing: 2px;
		margin-bottom: 0.5rem;
		color: #2a2a2a;
		font-style: italic;
	}

	.header .subtitle {
		font-size: 1.3rem;
		color: #5a5a5a;
		font-weight: 400;
		margin-bottom: 0.8rem;
	}

	.header .dates {
		font-size: 0.95rem;
		color: #7a7a7a;
		font-weight: 300;
	}

	.divider {
		width: 80px;
		height: 2px;
		background: linear-gradient(90deg, transparent, #c9a961, transparent);
		margin: 0 auto 2.5rem;
		animation: slideIn 1.2s ease-out;
	}

	/* Photo Section */
	.photo-container {
		margin-bottom: 3rem;
		animation: fadeInUp 1.2s ease-out;
	}

	.photo-wrapper {
		display: flex;
		justify-content: center;
		position: relative;
		margin-bottom: 2rem;
	}

	.photo-frame {
		position: relative;
		width: 280px;
		height: 280px;
		border-radius: 50%;
		overflow: hidden;
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
		border: 8px solid #ffffff;
		background: #f0e6d2;
	}

	.photo-frame img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

	.photo-frame::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		border-radius: 50%;
		box-shadow: inset 0 0 30px rgba(201, 169, 97, 0.2);
		pointer-events: none;
	}

	/* Section Identifiers */
	.section-anchor {
		scroll-margin-top: 100px;
	}

	/* Menu Bar for Gallery, Program, Tributes, Hymns */
	.content-menu {
		display: flex;
		gap: 1rem;
		justify-content: center;
		flex-wrap: wrap;
		margin: 3rem 0 2rem;
		padding: 1.5rem;
		background: rgba(255, 255, 255, 0.8);
		border-radius: 15px;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
		backdrop-filter: blur(10px);
		animation: fadeInUp 1.3s ease-out;
	}

	.menu-btn {
		padding: 12px 28px;
		background: linear-gradient(135deg, #c9a961 0%, #a88a5a 100%);
		color: white;
		border: none;
		border-radius: 25px;
		font-size: 0.95rem;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.3s ease;
		font-family: 'Georgia', serif;
		box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
	}

	.menu-btn:hover {
		transform: translateY(-3px);
		box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
	}

	.menu-btn.active {
		background: linear-gradient(135deg, #8b7340 0%, #6b5530 100%);
		box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
	}

	/* Gallery Section */
	.gallery-section {
		margin: 3rem 0;
		animation: fadeInUp 1.3s ease-out;
	}

	.section-title {
		font-size: 1.8rem;
		font-weight: 300;
		letter-spacing: 1px;
		margin-bottom: 2rem;
		color: #2a2a2a;
		text-align: center;
	}

	.gallery-grid {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 15px;
		background: rgba(255, 255, 255, 0.6);
		padding: 20px;
		border-radius: 15px;
		box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
		backdrop-filter: blur(5px);
		max-height: 600px;
		overflow-y: auto;
		scrollbar-width: thin;
		scrollbar-color: #c9a961 rgba(201, 169, 97, 0.1);
	}

	.gallery-grid::-webkit-scrollbar {
		width: 8px;
	}

	.gallery-grid::-webkit-scrollbar-track {
		background: rgba(201, 169, 97, 0.1);
		border-radius: 10px;
	}

	.gallery-grid::-webkit-scrollbar-thumb {
		background: #c9a961;
		border-radius: 10px;
	}

	.gallery-grid::-webkit-scrollbar-thumb:hover {
		background: #a88a5a;
	}

	.gallery-item {
		position: relative;
		overflow: hidden;
		border-radius: 10px;
		cursor: pointer;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
		transition: all 0.3s ease;
		aspect-ratio: 1;
		background: linear-gradient(135deg, #e8dcc8 0%, #d4c4a8 100%);
	}

	.gallery-item:hover {
		transform: scale(1.05);
		box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
	}

	.gallery-item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transition: transform 0.3s ease;
	}

	.gallery-item:hover img {
		transform: scale(1.1);
	}

	.gallery-item::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(45deg, transparent 30%, rgba(201, 169, 97, 0.15) 100%);
		pointer-events: none;
	}

	.load-more-btn {
		display: block;
		margin: 20px auto 0;
		padding: 12px 30px;
		background: #c9a961;
		color: white;
		border: none;
		border-radius: 25px;
		font-size: 1rem;
		cursor: pointer;
		transition: all 0.3s ease;
		font-family: 'Georgia', serif;
		font-weight: 600;
	}

	.load-more-btn:hover {
		background: #a88a5a;
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
	}

	/* Modal for full photo view */
	.modal {
		display: none;
		position: fixed;
		z-index: 2000;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.95);
		animation: fadeIn 0.3s ease;
	}

	.modal.active {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.modal-content {
		position: relative;
		max-width: 90vw;
		max-height: 90vh;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.modal-image {
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
		border-radius: 10px;
		box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
	}

	.modal-close {
		position: absolute;
		top: 20px;
		right: 30px;
		color: white;
		font-size: 40px;
		font-weight: bold;
		cursor: pointer;
		z-index: 2001;
		transition: transform 0.2s ease;
	}

	.modal-close:hover {
		transform: scale(1.2);
	}

	.modal-nav {
		position: absolute;
		color: white;
		font-size: 24px;
		cursor: pointer;
		user-select: none;
		transition: all 0.3s ease;
		padding: 12px 16px;
		background: rgba(201, 169, 97, 0.15);
		border: 1.5px solid rgba(201, 169, 97, 0.3);
		border-radius: 50%;
		top: 50%;
		transform: translateY(-50%);
		font-weight: bold;
		line-height: 1;
		width: 50px;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	}

	.modal-nav:hover {
		background: rgba(201, 169, 97, 0.4);
		border-color: rgba(201, 169, 97, 0.7);
		transform: translateY(-50%) scale(1.1);
		box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
	}

	.modal-prev {
		left: 25px;
	}

	.modal-next {
		right: 25px;
	}

	.auto-play-indicator {
		position: absolute;
		bottom: 80px;
		left: 50%;
		transform: translateX(-50%);
		color: white;
		background: rgba(0, 0, 0, 0.5);
		padding: 8px 16px;
		border-radius: 20px;
		font-size: 0.9rem;
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.play-dot {
		display: inline-block;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: #c9a961;
		animation: pulse 1.5s infinite;
	}

	@keyframes pulse {
		0%, 100% { opacity: 1; transform: scale(1); }
		50% { opacity: 0.5; transform: scale(1.3); }
	}

	.pause-btn {
		background: rgba(201, 169, 97, 0.7);
		color: white;
		border: none;
		padding: 6px 12px;
		border-radius: 15px;
		cursor: pointer;
		font-size: 0.8rem;
		font-weight: 600;
		transition: all 0.2s ease;
		font-family: 'Georgia', serif;
	}

	.pause-btn:hover {
		background: rgba(201, 169, 97, 1);
	}

	.modal-counter {
		position: absolute;
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
		color: white;
		background: rgba(0, 0, 0, 0.5);
		padding: 10px 20px;
		border-radius: 20px;
		font-size: 0.95rem;
	}

	/* Content Section */
	.content-section {
		background: rgba(255, 255, 255, 0.9);
		padding: 2.5rem 2rem;
		border-radius: 10px;
		backdrop-filter: blur(10px);
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
		margin: 2rem 0;
		animation: fadeInUp 1.4s ease-out;
		text-align: left;
	}

	.content-section h2 {
		font-size: 1.6rem;
		font-weight: 300;
		margin-bottom: 1.5rem;
		color: #2a2a2a;
		letter-spacing: 1px;
		text-align: center;
		border-bottom: 2px solid #c9a961;
		padding-bottom: 1rem;
	}

	.content-section p {
		font-size: 1.05rem;
		line-height: 1.8;
		color: #4a4a4a;
		margin-bottom: 1.5rem;
		text-align: justify;
	}

	.subsection {
		margin-bottom: 2.5rem;
	}

	.subsection h3 {
		font-size: 1.3rem;
		font-weight: 400;
		color: #3a3a3a;
		margin-bottom: 1rem;
		margin-top: 1rem;
	}

	/* Program Section */
	.program-container {
		background: rgba(255, 255, 255, 0.9);
		padding: 2rem;
		border-radius: 10px;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
		margin: 2rem 0;
	}

	.program-info-box {
		background: rgba(201, 169, 97, 0.1);
		padding: 1.5rem;
		border-radius: 10px;
		margin-bottom: 2rem;
		border-left: 4px solid #c9a961;
	}

	.program-info-box p {
		color: #3a3a3a;
		font-weight: 600;
		margin-bottom: 0.5rem;
		font-size: 1rem;
	}

	.program-info-box p:last-child {
		margin-bottom: 0;
	}

	.program-item {
		display: flex;
		gap: 2rem;
		margin-bottom: 2rem;
		padding-bottom: 2rem;
		border-bottom: 1px solid rgba(201, 169, 97, 0.2);
	}

	.program-item:last-child {
		border-bottom: none;
	}

	.program-time {
		flex-shrink: 0;
		font-weight: 600;
		color: #c9a961;
		font-size: 1.1rem;
		min-width: 110px;
	}

	.program-details h3 {
		font-size: 1.2rem;
		color: #2a2a2a;
		margin-bottom: 0.5rem;
	}

	.program-details p {
		color: #5a5a5a;
		font-size: 0.95rem;
		line-height: 1.6;
	}

	/* Tributes Section */
	.tributes-container {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
		gap: 2rem;
		margin-top: 2rem;
	}

	.tribute-card {
		background: rgba(255, 255, 255, 0.9);
		padding: 2rem;
		border-radius: 10px;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
		border-left: 4px solid #c9a961;
		transition: all 0.3s ease;
	}

	.tribute-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	}

	.tribute-author {
		font-weight: 600;
		color: #c9a961;
		font-size: 1.1rem;
		margin-bottom: 0.8rem;
	}

	.tribute-text {
		font-size: 0.95rem;
		line-height: 1.7;
		color: #5a5a5a;
	}

	/* Eulogy Section */
	.eulogy-container {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 2rem;
		margin-top: 2rem;
	}

	.eulogy-card {
		background: rgba(255, 255, 255, 0.9);
		padding: 2rem;
		border-radius: 10px;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
		border-top: 4px solid #c9a961;
		transition: all 0.3s ease;
	}

	.eulogy-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	}

	.eulogy-speaker {
		font-weight: 600;
		color: #c9a961;
		font-size: 1.1rem;
		margin-bottom: 1rem;
		display: flex;
		align-items: center;
		gap: 0.5rem;
	}

	.eulogy-text {
		font-size: 0.95rem;
		line-height: 1.8;
		color: #5a5a5a;
		text-align: left;
	}

	/* Hymns Section */
	.hymns-container {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 2rem;
		margin-top: 2rem;
	}

	.hymn-card {
		background: rgba(255, 255, 255, 0.9);
		padding: 2rem;
		border-radius: 10px;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
		border-top: 4px solid #c9a961;
		transition: all 0.3s ease;
	}

	.hymn-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	}

	.hymn-number {
		font-weight: 600;
		color: #c9a961;
		font-size: 0.9rem;
		margin-bottom: 0.5rem;
	}

	.hymn-title {
		font-size: 1.2rem;
		color: #2a2a2a;
		margin-bottom: 1rem;
		font-weight: 500;
	}

	.hymn-lyrics {
		font-size: 0.9rem;
		line-height: 1.8;
		color: #5a5a5a;
		white-space: pre-line;
		font-family: 'Georgia', serif;
	}

	/* Decorative Elements */
	.flower-accent {
		font-size: 1.5rem;
		color: #c9a961;
		margin: 1.5rem 0;
		opacity: 0.6;
	}

	/* Quote Section */
	.quote {
		margin-top: 2rem;
		padding: 1.5rem;
		border-left: 4px solid #c9a961;
		font-size: 1rem;
		color: #5a5a5a;
		font-style: italic;
		line-height: 1.6;
		background: rgba(201, 169, 97, 0.08);
		border-radius: 5px;
	}

	/* Footer */
	.footer {
		margin-top: 3rem;
		font-size: 0.95rem;
		color: #6a6a6a;
		animation: fadeIn 1.6s ease-out;
	}

	.footer p {
		margin-bottom: 0.8rem;
		font-style: italic;
	}

	.amen {
		font-size: 1.2rem;
		font-weight: 600;
		color: #2a2a2a;
		margin-top: 1.5rem;
	}

	/* Hidden content for language switch */
	.hidden {
		display: none;
	}

	/* Animations */
	@keyframes fadeInDown {
		from { opacity: 0; transform: translateY(-20px); }
		to { opacity: 1; transform: translateY(0); }
	}

	@keyframes fadeInUp {
		from { opacity: 0; transform: translateY(20px); }
		to { opacity: 1; transform: translateY(0); }
	}

	@keyframes slideIn {
		from { width: 0; opacity: 0; }
		to { width: 80px; opacity: 1; }
	}

	@keyframes fadeIn {
		from { opacity: 0; }
		to { opacity: 1; }
	}

	/* Responsive Design */
	@media (max-width: 768px) {
		.nav-menu {
			gap: 1rem;
			padding: 0.8rem 0;
		}

		.nav-menu a {
			font-size: 0.85rem;
			padding: 0.4rem 0.6rem;
		}

		.content-menu {
			gap: 0.5rem;
			padding: 1rem;
		}

		.menu-btn {
			padding: 10px 20px;
			font-size: 0.85rem;
		}

		.header h1 {
			font-size: 1.8rem;
		}

		.section-title {
			font-size: 1.5rem;
		}

		.gallery-grid {
			grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
		}

		.tributes-container {
			grid-template-columns: 1fr;
		}

		.hymns-container {
			grid-template-columns: 1fr;
		}

		.program-item {
			flex-direction: column;
			gap: 0.5rem;
		}
	}

	@media (max-width: 600px) {
		.container {
			padding-top: 3.5rem;
			padding-bottom: 1rem;
		}

		.nav-menu {
			gap: 0.8rem;
			padding: 0.6rem 0;
		}

		.nav-menu a {
			font-size: 0.7rem;
			padding: 0.3rem 0.4rem;
		}

		.content-menu {
			gap: 0.5rem;
			margin: 2rem 0 1.5rem;
			padding: 1rem 0.5rem;
		}

		.menu-btn {
			padding: 8px 16px;
			font-size: 0.8rem;
		}

		.language-toggle {
			top: 5px;
			right: 10px;
		}

		.header h1 {
			font-size: 1.5rem;
		}

		.section-title {
			font-size: 1.3rem;
			margin-bottom: 1.5rem;
		}

		.photo-frame {
			width: 220px;
			height: 220px;
		}

		.gallery-grid {
			grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
			gap: 8px;
			padding: 10px;
		}

		.content-section {
			padding: 1.5rem 1rem;
			margin: 1.5rem 0;
		}

		.program-container {
			padding: 1.5rem;
		}

		.program-info-box {
			padding: 1rem;
			margin-bottom: 1.5rem;
		}

		.program-item {
			margin-bottom: 1.5rem;
			padding-bottom: 1.5rem;
		}

		.tribute-card {
			padding: 1.5rem;
		}

		.hymn-card {
			padding: 1.5rem;
		}

		.hymn-lyrics {
			font-size: 0.85rem;
			line-height: 1.6;
		}
	}

	@media (max-width: 400px) {
		.nav-menu a {
			font-size: 0.65rem;
			padding: 0.2rem 0.3rem;
		}

		.menu-btn {
			padding: 6px 12px;
			font-size: 0.75rem;
		}

		.header h1 {
			font-size: 1.3rem;
		}

		.photo-frame {
			width: 180px;
			height: 180px;
		}

		.content-section {
			padding: 1.2rem 0.8rem;
		}

		.content-section h2 {
			font-size: 1.2rem;
		}

		.section-title {
			font-size: 1.1rem;
		}
	} 