/* ============================================
   SCHOOL PROFILE PAGE STYLES
   ============================================ */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background: #FFFFFF;
}

.container {
	max-width: 1368px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ============================================
   HEADER STYLES
   ============================================ */

header {
	background: #FFFFFF;
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.header__group {
	display: flex;
	align-items: center;
}

.header__menu {
	display: flex;
	list-style: none;
	gap: 30px;
}

.header__item {
	list-style: none;
}

.header__link {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #1E2B69;
	text-decoration: none;
	transition: color 0.3s ease;
}

.header__link:hover {
	color: #039BE5;
}

.header__logo .logo {
	height: 50px;
	width: auto;
}

.header__social {
	display: flex;
	gap: 15px;
}

.header__social a img {
	width: 30px;
	height: 30px;
}

.header__contacts_mobile {
	display: none;
}

/* Country Dropdown */
.country-dropdown {
	position: relative;
}

.country-dropdown-btn {
	background: #039BE5;
	color: #FFFFFF;
	border: none;
	padding: 10px 20px;
	border-radius: 25px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.country-dropdown-btn:hover {
	background: #0288D1;
}

.country-dropdown-list {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #FFFFFF;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	list-style: none;
	padding: 10px 0;
	min-width: 180px;
	z-index: 10;
}

.country-dropdown:hover .country-dropdown-list {
	display: block;
}

.country-dropdown-list li {
	padding: 10px 20px;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.3s ease;
}

.country-dropdown-list li:hover {
	background: #F5F5F5;
}

.country-dot {
	color: #039BE5;
	margin-right: 8px;
}

/* Burger Menu */
.burger-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(30, 43, 105, 0.95);
	z-index: 1000;
}

.burger-menu__close {
	position: absolute;
	top: 20px;
	right: 20px;
	color: #FFFFFF;
	font-size: 30px;
	cursor: pointer;
}

.burger-menu__wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.burger-menu__list {
	list-style: none;
	text-align: center;
}

.burger-menu__item {
	margin: 20px 0;
}

.burger-menu__link {
	color: #FFFFFF !important;
	font-size: 24px;
}

/* ============================================
   PROFILE PAGE STYLES
   ============================================ */

.profile-page {
	padding: 50px 0 30px;
}

.profile-page__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.profile-page__title {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 40px;
	line-height: 48px;
	color: #1E2B69;
	text-align: center;
}

/* ============================================
   DOCUMENTS SECTION
   ============================================ */

.profile-documents {
	padding: 40px 0 80px;
}

.profile-documents__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.profile-documents__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

/* ============================================
   DOCUMENT CARD
   ============================================ */

.document-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	background: #FFFFFF;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	padding-bottom: 20px;
}

.document-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.document-card__preview {
	width: 100%;
	height: 280px;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	background: #F8F9FA;
}

.document-card__preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.document-card__preview--pdf {
	align-items: center;
	justify-content: center;
	background: #FFF5F5;
}

.document-card__pdf-icon {
	width: 80px;
	height: 80px;
}

.document-card__title {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	color: #1E2B69;
	text-align: center;
	margin-top: 16px;
	padding: 0 15px;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

footer {
	background: #1E2B69;
	padding: 40px 0;
}

.footer__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px;
}

.footer__column {
	display: flex;
	flex-direction: column;
}

.footer__column .logo {
	height: 50px;
	width: auto;
}

.footer__list {
	list-style: none;
}

.footer__item {
	margin-bottom: 10px;
}

.footer__link {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #FFFFFF;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.footer__link:hover {
	opacity: 0.8;
}

.contacts-shedule {
	display: flex;
	flex-direction: column;
	color: #FFFFFF;
}

.contacts-shedule__title {
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 5px;
}

.contacts-shedule__days,
.contacts-shedule__time {
	font-size: 14px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
	.profile-documents__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.profile-page__title {
		font-size: 32px;
		line-height: 40px;
	}
}

@media (max-width: 800px) {
	/* Header Mobile */
	.header__menu {
		display: none;
	}

	.country-dropdown {
		display: none;
	}

	.header__contacts_mobile {
		display: block;
	}

	.header__contacts_mobile img {
		width: 24px;
		height: 24px;
	}

	.header__wrapper {
		justify-content: space-between;
	}

	/* Profile Page Mobile */
	.profile-page {
		padding: 30px 0 20px;
	}

	.profile-page__container {
		padding: 0 20px;
	}

	.profile-page__title {
		font-size: 26px;
		line-height: 32px;
	}

	.profile-documents {
		padding: 30px 0 60px;
	}

	.profile-documents__container {
		padding: 0 20px;
	}

	.profile-documents__grid {
		grid-template-columns: 1fr;
		gap: 20px;
		max-width: 400px;
		margin: 0 auto;
	}

	.document-card__preview {
		height: 240px;
	}

	.document-card__title {
		font-size: 16px;
	}

	/* Footer Mobile */
	.footer__wrapper {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 25px;
	}

	.footer__column {
		align-items: center;
	}

	.footer-shedule_mobile {
		order: -1;
	}
}

@media (max-width: 480px) {
	.profile-page__title {
		font-size: 22px;
		line-height: 28px;
	}

	.document-card__preview {
		height: 200px;
	}

	.document-card__title {
		font-size: 14px;
	}
}
