:root {
	--primary-color: #6a1b9a;
	--primary-light: #9c4dcc;
	--primary-dark: #38006b;
	--secondary-color: #d32f2f;
	--text-dark: #333;
	--text-light: #fff;
	--bg-light: #f9f9f9;
	--bg-white: #fff;
	--border-radius: 8px;
	--box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Source Sans Pro', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto', Arial, sans-serif;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--primary-dark);
}

p {
	margin-bottom: 1.5rem;
}

a {
	text-decoration: none;
	color: var(--primary-color);
	transition: var(--transition);
}

a:hover {
	color: var(--primary-light);
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
header {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	color: var(--text-light);
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 15px;
}

.logo img {
	height: 60px;
	border-radius: var(--border-radius);
}

.logo-text {
	display: flex;
	flex-direction: column;
}

.logo h1 {
	font-size: 1.2rem;
	margin-bottom: 0;
	color: var(--text-light);
}

.logo p {
	font-size: 0.9rem;
	margin-bottom: 0;
	opacity: 0.9;
}

/* Navigation */
nav ul {
	display: flex;
	list-style: none;
	gap: 20px;
}

nav a {
	color: var(--text-light);
	font-weight: 500;
	padding: 8px 15px;
	border-radius: var(--border-radius);
	transition: var(--transition);
}

nav a:hover, nav a.active {
	background-color: rgba(255, 255, 255, 0.2);
	color: var(--text-light);
}

.language-selector {
	display: flex;
	gap: 10px;
	margin-left: 20px;
}

.language-selector img {
	width: 30px;
	height: 20px;
	border-radius: 3px;
	transition: var(--transition);
}

.language-selector img:hover {
	transform: scale(1.1);
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--text-light);
	font-size: 1.5rem;
	cursor: pointer;
}

/* Hero Section */
.hero {
	background: linear-gradient(rgba(106, 27, 154, 0.8), rgba(56, 0, 107, 0.8)), url('images/monastere_tatev.jpg') center/cover no-repeat;
	color: var(--text-light);
	text-align: center;
	padding: 100px 20px;
	margin-bottom: 50px;
}

.hero h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: var(--text-light);
}

.hero p {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto 2rem;
}

.btn {
	display: inline-block;
	background-color: var(--secondary-color);
	color: var(--text-light);
	padding: 12px 30px;
	border-radius: var(--border-radius);
	font-weight: 600;
	transition: var(--transition);
	border: none;
	cursor: pointer;
}

.btn:hover {
	background-color: #b71c1c;
	transform: translateY(-3px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
	color: var(--text-light);
}

.btn-outline {
	background-color: transparent;
	border: 2px solid var(--secondary-color);
	color: var(--secondary-color);
}

.btn-outline:hover {
	background-color: var(--secondary-color);
	color: var(--text-light);
}

/* Section Styling */
section {
	padding: 80px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-header h2 {
	font-size: 2.2rem;
	position: relative;
	display: inline-block;
	padding-bottom: 15px;
}

.section-header h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background-color: var(--secondary-color);
	border-radius: 2px;
}

.section-header p {
	font-size: 1.1rem;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
}

/* Team Section */
.team-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.team-card {
	background-color: var(--bg-white);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--box-shadow);
	transition: var(--transition);
	text-align: center;
}

.team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.team-image {
	height: 250px;
	overflow: hidden;
	position: relative;
}

.team-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.team-card:hover .team-image img {
	transform: scale(1.1);
}

.team-content {
	padding: 25px;
}

.team-content h3 {
	font-size: 1.4rem;
	margin-bottom: 5px;
	color: var(--primary-dark);
}

.team-role {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 15px;
	display: block;
}

.team-content p {
	color: #666;
	margin-bottom: 20px;
}

.team-social {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 15px;
}

.team-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background-color: var(--bg-light);
	color: var(--primary-color);
	border-radius: 50%;
	transition: var(--transition);
}

.team-social a:hover {
	background-color: var(--primary-color);
	color: var(--text-light);
}

/* Video Section */
.video-section {
	background-color: var(--bg-white);
	border-radius: var(--border-radius);
	padding: 40px;
	box-shadow: var(--box-shadow);
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	border-radius: var(--border-radius);
	margin-bottom: 20px;
}

.video-container video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: var(--border-radius);
}

/* Footer */
footer {
	background-color: var(--primary-dark);
	color: var(--text-light);
	padding: 60px 0 30px;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column {
	flex: 1;
	min-width: 250px;
}

.footer-column h3 {
	color: var(--text-light);
	font-size: 1.3rem;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background-color: var(--secondary-color);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--text-light);
	padding-left: 5px;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--text-light);
	border-radius: 50%;
	transition: var(--transition);
}

.social-links a:hover {
	background-color: var(--primary-light);
	transform: translateY(-3px);
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 992px) {
	.team-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
}

@media (max-width: 768px) {
	.header-container {
		flex-wrap: wrap;
	}
	
	nav {
		order: 3;
		width: 100%;
		margin-top: 15px;
		display: none;
	}
	
	nav.active {
		display: block;
	}
	
	nav ul {
		flex-direction: column;
		gap: 10px;
	}
	
	.mobile-menu-btn {
		display: block;
	}
	
	.language-selector {
		margin-left: auto;
		margin-right: 15px;
	}
	
	.hero h2 {
		font-size: 2rem;
	}
	
	.hero p {
		font-size: 1rem;
	}
	
	section {
		padding: 60px 0;
	}
	
	.section-header h2 {
		font-size: 1.8rem;
	}
}

@media (max-width: 576px) {
	.logo h1 {
		font-size: 1.4rem;
	}
	
	.hero {
		padding: 80px 20px;
	}
	
	.team-grid {
		grid-template-columns: 1fr;
	}
	
	.video-section {
		padding: 20px;
	}
}