/* Общие */
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica', sans-serif;	/* 'Arial' */ 
  letter-spacing: -1px;		/* расстояние между буквами */
  background-color: #f8f8f8;
  color: #365f91;		/* #333; */	
  padding: 0;		/* 20px; */
  margin: 0;
}

/* Заголовок */
header {
  width: 100%;
  background-color: #00349e;
  color: #fff;
  padding: 26px 0;
  margin: 0 auto;
}

.header-container {
  max-width: 1440px; /* 1280px; */
  margin: 0 auto;
  padding: 0  5px;		/*0  60px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}



/* Логотип */
.logo img {
    max-width: 256px;
    /*max-height: 64px;*/
    height: auto;
    vertical-align: bottom;
    margin-left: 30px;  /* 60px; */
}

/* Кликабельный логотип */
.logo a {
    display: inline-block;
}


/* Меню */
.menu {
  /* margin-left: 40px;
  margin-right: auto; */
  margin: 0 auto;
}

.menu ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.2em;
  transition: color 0.3s;
}

.menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    transition: color 0.3s;
    font-weight: bold;
    /*cursor: pointer;*/
    text-transform: uppercase;
}

.menu ul li a:hover {
    color: #F8FF23;    /*color: #ffd700;*/
    cursor: pointer;
}

/* Телефон */
/*.phone {
    display: flex;
    align-items: center;
    font-size: 1em;
    font-weight: bold;
    white-space: nowrap;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: normal;
    margin-right: 30px /* 60px; * /
}*/

.phone {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: normal;
  margin-right: 60px;
}

.phone-link {   /* + */
  color: #ffffff;
  text-decoration: none;
  font-size: 1em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 60px;
  transition: color 0.3s ease;
}

.phone-link:hover {
  /*color: #ffd700; /* жёлтый при наведении */
  color: #F8FF23;
}






/* === Бургер-меню === */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

/* === Адаптив === */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .menu {
        width: 100%;
        display: none;
        margin-top: 20px;
    }

    .menu ul {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .menu.show {
        display: flex;
        justify-content: center;
        animation: fadeIn 0.3s ease-in-out;
    }

    .phone {
        margin-top: 10px;
        justify-content: center;
    }
}



/* ==== Подвал сайта ==== */
footer {
    width: 100%;
    background-color: #00349e;
    color: white;
    padding: 26px 0;
    margin: 10px auto 0 auto;
}

.footer-container {
    max-width: 1440px; /* 1200px; */
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Логотип слева */
.footer-logo img {
    max-height: 48px;
    height: auto;
}

/* Социальные иконки по центру */
.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-social img {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease;
}

.footer-social a:hover img {
    transform: scale(1.15);
}

/* Копирайт справа */
.footer-copy {
    font-size: 0.95em;
    text-align: right;
    white-space: nowrap;
}

/* ==== Адаптивность ==== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .footer-copy {
        text-align: center;
    }
}



























