
@import url('https://fonts.googleapis.com/css2?family=Southbank+LT:wght@400&display=swap');

.southbank-heading {
    font-family: 'Southbank LT', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #001F3F;
}


html {
  scroll-behavior: smooth;
}

body {
  background-color: #DFF3FF;
  font-family: 'Vela Sans', sans-serif;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.text-center {
  text-align: center;
  margin: 40px 0;
}



/* Banner Section */
.banner {
  position: relative;
  max-height: 100vh; 
  height: 100%;
  background: url("{% static 'images/banner-image.jpg' %}") no-repeat center;
  background-size: cover; 
  overflow: hidden; 
  z-index: 1; 
  padding-top: 80px; 
}

/* Banner Content */
.banner-content {
  text-align: left; 
  padding: 20px;
  max-width: 800px; 
  z-index: 2; 
  position: relative; 
  left: -100px; 
}

/* Заголовок */
.banner h1 {
  font-family: 'Southbank LT', sans-serif;
  font-size: 36px; 
  font-weight: 700; 
  margin-bottom: 15px; 
  line-height: 1.2; 
}

/* Описание */
.banner p {
  font-family: 'Vela Sans', sans-serif;
  font-size: 20px; 
  line-height: 1.5; 
  margin-top: 0; 
}

@media (max-width: 768px) {
  .banner {
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    left: 0;
    margin: 0 auto;
    width: 90%;
  }

  .banner h1 {
    font-size: 24px;
  }

  .banner p {
    font-size: 16px;
    text-align: center;
  }
}


/* Header Fix */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 20px; 
  box-sizing: border-box; 
  z-index: 10;
}



/* Menu */
.menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 15px 40px;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  max-width: 70vw; 
  width: 100%;
}


/* Стили для логотипа */
.logo img {
  max-width: 180px; 
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 49px;
}


.menu {
  list-style: none;
  display: flex;
  justify-content: space-between; 
  align-content: center;
  align-items: center;
  gap: 30px;
  
}

.menu li a {
  text-decoration: none;
  color: #044B90;
  font-size: 20px; 
  font-weight: bold;
  transition: color 0.3s ease;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.menu li a:hover {
  color: #001F3F; 
}

/* Стили для номера телефона */
.phone-number {
  font-size: 18px;
  color: #044B90;
  font-weight: bold;
  
}


.corner-image {
  position: fixed;
  top: 20px; 
  left: 10px; 
  z-index: 1000; /* Поверх всех элементов */
}

.corner-image img {
  width: 100px; 
  height: auto; 
  object-fit: contain; 
}

.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #044B90;
}



/* Скрываем меню на мобилках */
@media (max-width: 768px) {
  .burger {
    display: block;
    position: absolute;
    top: 40px;
    right: 50px;
  }

  .corner-image {
    display: none;
  }

  .menu {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 80px;
    right: 20px;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    z-index: 100;
    transition: transform 0.3s ease-in-out;
    max-width: 80vw;
    width: 100%;
    justify-content: center;
    align-content: center;
    align-items: center;
  }

  .menu.show {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu-container {
    padding: 15px 20px;
    flex-direction: row;
    align-items: flex-start;
    max-width: 80vw;
  }

  .phone-number {
    margin-top: 10px;
  }
}

.about-section {
  padding: 50px 0; 
}

.about-content {
  max-width: 800px; 
  margin: 0 auto; 
}

.about-section p {
  font-family: 'Vela Sans', sans-serif;
  font-size: 19px;
  line-height: 1.6;
  color: #001F3F;
  margin-top: 10px;
  text-align: center; 
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-content {
    padding: 0 20px;
  }
  .about-section p {
    font-size: 16px; 
  }
  .southbank-heading {
    font-size: 22px !important;
  }
}


/* Стили для блока услуг с тенью и анимацией */

services-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
.service-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 1000px;
  height: 200px;
  background-color: white;
  border-radius: 25px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-image img {
  width: 300px;
  height: auto;
  object-fit: contain;
}

.service-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 65%;
}

.heading {
  color: #044B90;
  margin-bottom: -5px;
  font-size: 24px;
}

.desc {
  color: #333;
  font-size: 18px;
}

@media (max-width: 768px) {
  .service-box {
    flex-direction: column;
    width: 80%;
    height: auto;
    padding: 25px;
  }
  .service-image img {
    width: 250px;
    height: auto;
  }
  .service-text {
    max-width: 100%;
    margin-bottom: 15px;
  } 
  .heading {
    font-size: 20px;
  }
  .desc {
    font-size: 16px;
  }
}


/* News Section */
.news-section .news-item {
  padding: 15px 0;
}

.news-item h3 {
  font-family: 'Southbank LT', sans-serif;
  color: #044B90;
  margin-bottom: 5px;
}

.news-item p {
  font-family: 'Vela Sans', sans-serif; 
  font-size: 16px; 
  color: #333; 
  line-height: 1.6; 
  margin: 5px 0; 
}

.news-date {
  font-size: 14px;
  color: #044B90; 
  font-weight: bold; 
  display: block; 
  margin-bottom: 5px; 
}

.news-item hr {
  border: none; 
  border-top: 2px solid #044B90; 
  margin: 10px 0; 
}

.news-detail-section {
  padding-top: 100px; 
}

.news-detail-section h2 {
  font-family: 'Southbank LT', sans-serif;
  color: #044B90;
  font-size: 20px; 
  margin-bottom: 10px;
}

.news-detail-section .news-date {
  font-size: 16px; 
  color: #044B90; 
  margin-bottom: 15px;
  display: block; 
}

.news-detail-section p {
  font-family: 'Vela Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.news-detail-section .btn {
  font-family: 'Vela Sans', sans-serif;
  font-size: 16px;
  color: #fff;
  background-color: #044B90;
  border-radius: 5px;
  text-decoration: none;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

.news-detail-section .btn:hover {
  background-color: #033D72; /* Цвет кнопки при наведении */
}


.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 15px;
}

  /* Общий стиль для формы */
form {
  font-family: 'Vela Sans', sans-serif; 
  font-size: 16px; 
  color: #001F3F; 
  line-height: 1.6;
}

/* Стили для меток (label) */
form label {
  font-family: 'Vela Sans', sans-serif;
  font-size: 14px;
  color: #001F3F;
  margin-bottom: 8px;
  display: block; 
}

/* Поля ввода */
form input,
form textarea,
form select {
  font-family: 'Vela Sans', sans-serif; 
  font-size: 14px;
  color: #333;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%; 
  margin-bottom: 15px; 
  box-sizing: border-box; 
}

/* Кнопка отправки */
form button {
  font-family: 'Vela Sans', sans-serif;
  font-size: 16px;
  color: #fff;
  background-color: #044B90;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #033D72; /* Цвет при наведении */
}




.form-label {
  font-weight: bold;
}

/* Контакты внизу */
.contact-info.text-center {
  font-size: 18px; 
  font-family: 'Vela Sans', sans-serif; 
  font-weight: bold; 
  color: #001F3F; 
  line-height: 1.6; 
  margin-top: 20px; 
}

@media (max-width: 768px) {
  .contact-info.text-center {
    font-size: 16px; 
  }
}



/* Секция магазина */
.store-section {
  margin-top: 100px; 
  padding: 20px 0; 
}

.store-section h2 {
  font-size: 32px;
  font-family: 'Southbank LT', sans-serif;
  text-align: center;
  margin-bottom: 20px;
}

.store-section p {
  font-size: 16px;
  font-family: 'Vela Sans', sans-serif;
  color: #333;
  line-height: 1.6;
}

.welcome-message-store {
  font-size: 24px;
  font-family: 'Vela Sans', sans-serif;
}


.order-success-section {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  min-height: calc(100vh - 80px); 
  padding: 20px; 
  background-color: #DFF3FF; 
}

.order-success-section .container {
  text-align: center; 
}

.order-success-title {
  font-family: 'Vela Sans', sans-serif; 
  font-size: 28px; 
  color: #001F3F; 
  margin-bottom: 20px; 
}

.order-success-message {
  font-family: 'Vela Sans', sans-serif; 
  font-size: 18px; 
  color: #333; 
  margin-bottom: 10px; 
  line-height: 1.6; 
}

.store-section {
  margin-top: 100px; 
  padding: 20px 0; 
}



/* Стили для карточек */

.row {
  display: flex; 
  flex-wrap: wrap; 
  gap: 20px; 
  justify-content: flex-start; 
}




.card {
  width: 300px; 
  height: 500px; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ddd; 
  border-radius: 10px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px; 
  margin: 0; 
}


.store-container {
  max-width: 1300px; 
  margin: 0 auto; 
  padding: 0; 
}

.store-container .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px; 
}


.card-img-top {
  width: 250px; 
  height: 200px; 
  object-fit: cover; 
  margin-top: 10px; 
  border-radius: 15px;
}

.card-body {
  text-align: center; 
  flex-grow: 1; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-family: 'Vela Sans', sans-serif; /* Шрифт Vela Sans */
  font-size: 20px; 
  font-weight: bold; 
  color: #001F3F; 
  margin-top: 10px;
}

.card-text {
  font-family: 'Vela Sans', sans-serif;
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}

.card-price {
  font-size: 20px; 
  font-weight: bold;
  color: #001F3F; 
  margin-top: 10px;
}

.btn {
  background-color: #001F3F; 
  color: #fff; 
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-transform: uppercase; 
}

.btn:hover {
  background-color: #033D72; 
}



/* Стили для страницы вакансий */
.vacancies-section {
  margin-top: 150px; 
  padding: 20px 0; 
  padding-top: 50px;
}

.vacancies-section h2 {
  font-size: 32px;
  text-align: center;
}

.vacancy-item {
  margin-bottom: 30px;
}

.vacancy-title {
  font-size: 24px;
  font-family: 'Southbank LT', sans-serif;
  color: #001F3F;
  margin-bottom: 10px;
}

.vacancy-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.vacancy-description {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.vacancy-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

.btn-apply {
  display: inline-block;
  background-color: #001F3F;
  color: #fff;
  font-size: 16px;
  font-family: 'Vela Sans', sans-serif;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-apply:hover {
  background-color: #033D72;
}

.btn-detail {
  display: inline-block;
  background-color: #044B90;
  color: #fff;
  font-size: 14px;
  font-family: 'Vela Sans', sans-serif;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}

.btn-detail:hover {
  background-color: #033D72;
}

.vacancy-detail-section,
.apply-section {
  padding-top: 160px; 
}


/* Стили для страницы вакансий */
.vacancies-section {
  margin-top: 50px;
}

.vacancies-section h2 {
  font-size: 32px;
  text-align: center;
}

.vacancy-item {
  margin-bottom: 30px;
}

.vacancy-title {
  font-size: 24px;
  font-family: 'Southbank LT', sans-serif;
  color: #001F3F;
  margin-bottom: 10px;
}

.vacancy-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.vacancy-description {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.vacancy-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

.btn-apply {
  display: inline-block;
  background-color: #001F3F;
  color: #fff;
  font-size: 16px;
  font-family: 'Vela Sans', sans-serif;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-apply:hover {
  background-color: #033D72;
}

.btn-detail {
  display: inline-block;
  background-color: #044B90;
  color: #fff;
  font-size: 14px;
  font-family: 'Vela Sans', sans-serif;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}

.btn-detail:hover {
  background-color: #033D72;
}

.vacancy-detail-section {
  padding-top: 150px; /* отступ сверху для компенсации высоты хедера */
}

.apply-section {
  padding-top: 120px; /* отступ сверху для компенсации высоты хедера */
}


/* Общий стиль для страницы */
html, body {
  height: 100%; 
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Высота на всю видимую область */
}

main {
  flex: 1; 
  display: flex;
  flex-direction: column;
  align-items: stretch;
}


/* Футер */
.footer {
  background-color: #001F3F; 
  color: white; 
  text-align: center; 
  padding: 10px 0; 
  font-family: 'Vela Sans', sans-serif; 
  font-size: 14px; 
  width: 100%; 
}

.banner {
  position: relative;
  min-height: 100vh; 
  background: url("{% static 'images/banner-image.jpg' %}") no-repeat center center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1; 
  padding-top: 80px; 
}

.banner-content {
  text-align: left; 
  padding: 20px;
  border-radius: 10px; 
  max-width: 800px; 
  z-index: 2; 
  position: relative; 
}



/* Общие стили для кнопок */
.btn {
  display: inline-block;
  background-color: #001F3F; 
  color: #fff; 
  font-size: 16px;
  font-family: 'Vela Sans', sans-serif;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #033D72; /* Цвет кнопки при наведении */
}

.vacancy-item .btn {
  margin-right: 10px;
}

.text-center {
  font-family: 'Southbank LT', sans-serif;
  color: #001F3F;
  ;
}


