body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	color: #222;
	background-color: #00332c;
}

header {
	background-image: url('../images/keffiyehpalestine.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: white;
	padding: 1em 0;
	text-align: center;
	min-height: auto;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.header-title-container {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	background-color: rgba(0, 0, 0, 0.4);
	margin-bottom: 5px;
}

.site-logo {
		width: 50px;
		height: 33px;
		background-image: url('../images/echoesofalquds.png');
		background-size: cover;
		background-position: center;
		border: 2px solid white;
		border-radius:4px;
		margin-right: 15px;
}

header h1 {
	color: white;
	text-shadow: 1px 1px 3px #000;
	margin: 0;
	font-size: 2.5em;
}

header nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.6);
	flex-wrap: wrap;
}

header nav ul li a {
	color: white;
	text-decoration: none;
	padding: 0.5em 1em;
	display: block;
	transition: background-color 0.3s;
	font-weight: bold;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

header nav ul li a:hover {
	background-color: #009933;
	color: #white;
}

main {
	padding: 20px;
	max-width: 1200px;
	margin: 0 auto;
	background-color: rgba(255, 255, 255, 0);
	border-radius: 10px;
}

section {
	margin-bottom: 2em;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.95);
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#culture-cards-section {
	background-color: transparent;
	box-shadow: none;
	padding: 0;
}

.culture-grid {
	display: flex;
	gap: 20px;
	padding: 20px 0;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 15px;
}

.culture-card-simple {
	flex: 0 0 300px;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
	scroll-snap-align: start;
}

.culture-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card-content {
    z-index: 2;
    padding: 20px;
	background-color: rgba(0, 0, 0, 0.75);
	width: 100%;
	box-sizing: border-box;
	text-shadow: none;
}

.card-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.8em;
    color: white;
    border-bottom: 3px solid #EE2737;
    padding-bottom: 5px;
}

.card-content p {
    font-size: 1em;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0;
	color: #eee;
}

.tatreez-bg {
	background-image: url('../images/tatreez.jpg');
}

.dabkeh-bg {
	background-image: url('../images/dabkeh.jpg');
}

.literature-bg {
	background-image: url('../images/literature.jpg');
}

.cuisine-bg {
	background-image: url('../images/cuisine.jpg');
}

.culture-grid::-webkit-scrollbar-thumb {
	background: #009933;
	border-radius: 4px;
}

.culture-grid::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 30px;
	overflow-x: unset;
	scroll-snap-type: none;
	padding: 0;
}

.gallery-item {
	cursor: pointer;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.gallery-item:hover {
	transform: scale(1.03);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	display: block;
	transition: opacity 0.3s;
}

.image-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.6);
	color: white;
	padding: 10px;
	font-size: 0.9em;
	font-weight: bold;
	transform: translateY(100%);
	transition: transform 0.3s ease-out;
}

.gallery-item:hover .image-info {
	transform: translateY(0);
}

.lightbox-modal {
	display: none;
	position: fixed;
	z-index: 100;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.95);
	padding-top: 60px;
	backdrop-filter: blur(5px);
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.lightbox-content {
	margin: auto;
	display: block;
	width: 90%;
	max-width: 1000px;
	max-height: 90%;
	padding: 10px;
}

.lightbox-content img {
	width: 100%;
	height: auto;
	max-height: 70vh;
	object-fit: contain;
	display: block;
	border-radius: 8px;
	background-color: black;
}

.lightbox-caption {
	margin: 15px auto;
	display: block;
	width: 90%;
	max-width: 1000px;
	text-align: center;
	color: #ccc;
	padding: 10px 0;
	font-size: 1.1em;
	line-height: 1.5;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 40px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
	cursor: pointer;
	z-index: 101;
}

.lightbox-close:hover, .lightbox-close:focus {
	color: #EE2737;
	text-decoration: none;
}

.faq-accordion {
	width: 100%;
	max-width: 900px;
	margin: 20px auto;
}

.faq-item {
	margin-bottom: 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
	background-color: #f5f5f5;
	padding: 15px 20px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
	font-size: 1.1em;
	color: #00332c; 
	transition: background-color 0.3s;
	user-select: none;
}

.faq-question:hover {
	background-color: #e0e0e0;
}
		
.faq-question.active {
	background-color: #d1e7dd;
	color: #009933;
}

.faq-answer {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
	background-color: white;
	border-top: 1px solid #eee;
}

.faq-answer p {
	padding-top: 10px;
	padding-bottom: 10px;
	margin: 0;
	line-height: 1.8;
}

.faq-icon {
	font-size: 1.2em;
	transition: transform 0.3s;
}

.faq-question.active .faq-icon {
	transform: rotate(45deg);
}

#feedback-form div {
	margin-bottom: 1em;
}

#feedback-form label {
	display: block;
	margin-bottom: 0.5em;
	font-weight: bold;
}

#feedback-form input[type = "text"],
#feedback-form input[type = "email"],
#feedback-form select,
#feedback-form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #CCC;
	border-radius: 4px;
	box-sizing: border-box;
}

#feedback-form button {
	background-color: #009933;
	color: white;
	padding: 10px 15px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1em;
}

#feedback-form button:hover {
	background-color: #EE2737;
}

footer {
	background: #000000;
	color: white;
	text-align: center;
	padding: 1em 0;
	margin-top: 2em;
}

.timeline {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	padding-left: 50px;
}

.timeline::after {
	content: '';
	position: absolute;
	width: 3px;
	background-color: #000000;
	top: 0;
	bottom: 0;
	left: 25px;
	margin-left: -3px;
	z-index: 1;
}

.timeline-item {
	padding: 10px 30px 20px 30px;
	position: relative;
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	margin-bottom: 30px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	cursor: pointer;
	user-select: none;
}

.timeline-item:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
	transform: translateY(-2px);
	border-color: #EE2737;
	transition: all 0.3s ease;
}

.timeline-item::before {
	content: '';
	position: absolute;
	width: 15px;
	height: 15px;
	background-color: #009933;
	border: 3px solid #000000;
	top: 20px;
	left: -38px;
	border-radius: 50%;
	z-index: 2;
	transition: all 0.3s ease;
}

.timeline-item:hover:before {
	background-color: #EE2737;
	border-color: #000000;
	transform: scale(1.3);
}

.timeline-item h3 {
	margin-top: 0;
	color: #EE2737;
	border-bottom: 1px dotted #ccc;
	padding-bottom: 5px;
}

.timeline-date {
	display: block;
	font-style: italic;
	color: #555;
	margin-bottom: 10px;
	font-weight: bold;
}

.timeline-detail {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-in-out, padding 0.5s ease;
	padding-top: 0;
	padding-bottom: 0;
}

.timeline-item.active .timeline-detail {
	padding-top: 15px;
	padding-bottom: 10px;
}

blockquote {
	background-color: #f7fcfc;
	border-left: 5px solid #009933;
	margin: 1em 0;
	padding: 0.5em 20px;
	font-style: italic;
	color: #444;
}

.landmark-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	padding: 20px 0;
}

.landmark-cards .card {
	background-color: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	width: 300px;
	padding: 15px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landmark-cards .card:hover {
	transform: translateY(-5px) scale(1.03);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.landmark-cards .card img {
	max-width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 6px;
	margin-bottom: 10px;
}

.landmark-cards .card h3 {
	color: #EE2737;
	margin-top: 0;
	transition: color 0.3s ease;
}

.landmark-cards .card:hover h3 {
	color: #009933;
}

.main-media {
	width: 100%;
	height: 450px;
	display: block;
	margin: 20px auto;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	object-fit: cover;
}

.mission {
	text-align: center;
	margin: 30px 0;
	padding: 20px;
	border: 1px dashed #009933;
	border-radius: 8px;
	background-color: #f7fff7;
}

.mission h3 {
	color: #EE2737;
	margin-top: 0;
}

.key-themes {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 20px;
	margin-top: 30px;
}

.theme-card {
	flex-basis: 30%;
	min-width: 280px;
	padding: 20px;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: background-color 0.3s;
}

.theme-card:hover {
	background-color: #e6f7ff;
}

.theme-card h4 {
	color: #00332c;
	border-bottom: 2px solid #00332c;
	padding-bottom: 5px;
}

@media (max-width: 600px) {
	.theme-card {
		flex-basis: 100%;
	}
}

.culture-sections {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 20px;
}

.culture-card {
	background-color: #f7fff7;
	padding: 25px;
	border-radius: 10px;
	border: 1px solid #ddd;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.culture-card h3 {
	color: #00332c;
	border-bottom: 3px solid #EE2737;
	padding-bottom: 10px;
	margin-top: 0;
}

.key-term {
	font-weight: bold;
	color: #EE2737;
}

.cuisine-list {
	list-style-type: none;
	padding-left: 0;
}

.cuisine-list li {
	padding: 8px 0;
	border-bottom: 1px dotted #ccc;
}

.cuisine-list li:last-child {
	border-bottom: none;
}

.cuisine-list li::before {
	content: "\2022";
	color: #009933;
	font-weight: bold;
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}

#scrollToTopBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	border: none;
	outline: none;
	background-color: #EE2737;
	color: white;
	cursor: pointer;
	padding: 15px;
	border-radius: 50%; 
	font-size: 18px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	transition: background-color 0.3s ease, transform 0.3s ease;
	width: 50px;
	height: 50px;
	line-height: 20px;
	text-align: center;
	font-weight: bold;
}

#scrollToTopBtn:hover {
	background-color: #d12130;
	transform: scale(1.05);
}


	
	
	