@charset "utf-8";
:root {
	/* Colors */
	--color-primary: #5b7a8a;
	--color-primary-light: #e8f0f3;
	--color-primary-dark: #3d5561;
	--color-text: #2c3e44;
	--color-text-light: #5f7a84;
	--color-bg: #fafcfd;
	--color-bg-alt: #f0f5f7;
	--color-white: #ffffff;
	--color-border: #dce6ea;

	/* Typography */
	--font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-heading: "Segoe UI", "Helvetica Neue", sans-serif;

	/* Spacing */
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 2rem;
	--space-lg: 4rem;
	--space-xl: 6rem;

	/* Layout */
	--max-width: 1100px;
	--border-radius: 8px;
}

/* ===========================================
           Reset & Base Styles
           =========================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-main);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--color-text);
	background-color: var(--color-bg);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--color-primary-dark);
}

/* ===========================================
           Typography
           =========================================== */
h1,
h2,
h3,
h4 {
	font-family: var(--font-heading);
	font-weight: 400;
	line-height: 1.3;
	color: var(--color-text);
}

h1 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	letter-spacing: -0.02em;
}

h2 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin-bottom: var(--space-md);
}

h3 {
	font-size: 1.25rem;
	margin-bottom: var(--space-sm);
}

ul, p {
	margin-bottom: var(--space-sm);
}



/* ===========================================
           Layout Components
           =========================================== */
.container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
    padding: 0 var(--space-md);
}

section {
	padding: var(--space-xl) 0;
}

/* ===========================================
           Header & Navigation
           =========================================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: rgba(250, 252, 253, 0.95);
	backdrop-filter: blur(8px);
	z-index: 100;
	border-bottom: 3px solid var(--color-border);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 1,5rem;
}

.logo {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: bold;
	color: var(--color-text);
}

.logo2 {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: bold;
	color: var(--color-text);
}

/* ===========================================
           Основной блок
           =========================================== */
.about {
	background-color: var(--color-bg-alt);
}


.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
	align-items: center;
}

.about-text p {
	color: var(--color-text-light);
	font-size: 1.0625rem; 
	text-align: justify;
	text-indent: 30px;
}

.about-list li {
	color: var(--color-text-light);
	font-size: 1.0625rem;
	margin: 0px 50px;
	text-align: justify;
	text-indent: 10px;
}

#galery img {
	transition: all 1s ease;
	display: inline-block;
	height: 134px;	
	margin-right: 10px;
}

}

#galery img:hover {
	display: fixed;
	transform: scale(4, 4);
	margin-left:130px;
}

/* ===========================================
           Footer
           =========================================== */
.footer {
	padding: var(--space-md) 0;
	background-color: var(--color-bg);
	border-top: 1px solid var(--color-border);
}

.footer-copyright {
	font-size: 0.875rem;
	color: var(--color-text-light);
	margin: 0;
}