/* style.css — Повна немініфікована версія для зручного редагування */
/* Корпоративні кольори */
:root {
	--primary-color: #8b2d2d; 
	--menu-bg: #b0b0b0;       
	--text-dark: #212529;     
	--text-light: #555555;    
	--bg-light: #f5f5f5;      
	--white: #ffffff;
	--font-main: Arial, Helvetica, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка сайту */
header {
    background-color: var(--white);
    border-bottom: 4px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    max-width: 280px;
    width: 100%;
}

.logo-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Навігація */
.nav-menu {
    display: flex;
    gap: 12px;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-weight: bold;
    color: #333333;
    padding: 10px 14px;
    font-size: 14px;
    background-color: var(--menu-bg);
    border-radius: 4px;
    display: block;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Мобільна кнопка меню */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: 0.3s;
}

/* Головний банер */
.hero {
    background-color: var(--bg-light);
    border-bottom: 2px solid #e0e0e0;
    padding: 40px 0;
    text-align: center;
}

/* Бокова панель */
.sidebar {
	background-color: var(--white);
	padding: 20px;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	border: 1px solid #dee2e6;
}

.sidebar h3 {
	color: var(--primary-color);
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: bold;
	border-bottom: 1px solid #dee2e6;
	padding-bottom: 5px;
}

.sidebar-links {
	list-style: none;
}

.sidebar-links li {
	margin-bottom: 10px;
	font-size: 14px;
}

.sidebar-links a {
	color: var(--text-dark);
	text-decoration: underline;
}

.sidebar-links a:hover {
	color: var(--primary-color);
}



/* Футер / Підвал сайту */
footer {
    background-color: #333333;
    color: var(--white);
    padding: 30px 0 20px 0;
    margin-top: auto;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid #444444;
    padding-bottom: 20px;
}

.footer-info p {
    font-size: 18px;
    font-weight: bold;
    color: var(--white);
}

.footer-info span {
    font-size: 13px;
    color: #cccccc;
}

.footer-nav {
    display: flex;
    gap: 15px;
    list-style: none;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 14px;
    color: #cccccc;
}

.footer-nav a:hover {
    color: var(--white);
}

.copyright {
    text-align: center;
    padding-top: 15px;
    font-size: 13px;
    color: #999999;
}
