
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700&family=Roboto:wght@400;700&display=swap');

:root {
  --primary-color: #8B0000;
  --secondary-color: #D4AF37;
  --text-color: #333;
  --light-text-color: #fdfdfd;
  --bg-color: #f4f1ea;
  --dark-bg-color: #1a1a1a;

  --font-header: 'Roboto Slab', serif;
  --font-body: 'Roboto', sans-serif;
}

body {
  font-family: var(--font-body);
  margin: 0;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--bg-color);
}

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

.header {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--secondary-color);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-header);
  font-size: 1.8rem;
  color: var(--secondary-color);
  text-decoration: none;
}
.nav ul { list-style: none; display: flex; margin: 0; padding: 0; }
.nav ul li { margin-left: 25px; }
.nav a { text-decoration: none; color: var(--light-text-color); font-weight: 700; transition: color 0.3s; }
.nav a:hover { color: var(--secondary-color); }

.hero {
  position: relative;
  color: var(--light-text-color);
  text-align: center;
  padding: 120px 0;
  background: url('https://www.cito-priorov.ru/upload/iblock/1a3/1e5h1sp0jfnx985styc23jboy9f6iuzd.png') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--font-header);
  font-size: 3.5rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}
.cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--light-text-color);
  padding: 15px 35px;
  text-decoration: none;
  font-family: var(--font-header);
  font-size: 1.2rem;
  border-radius: 5px;
  margin-top: 20px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s;
}
.cta-button:hover {
  background: var(--secondary-color);
  color: var(--dark-bg-color);
  border-color: var(--secondary-color);
}
.cta-button.secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.cta-button.secondary:hover {
  background: var(--primary-color);
  color: var(--light-text-color);
}

.mission, .reports-preview {
  padding: 80px 0;
  text-align: center;
}
h2 {
  font-family: var(--font-header);
  font-size: 2.8rem;
  margin-bottom: 40px;
}

.stats {
  background-color: var(--dark-bg-color);
  color: var(--light-text-color);
  padding: 40px 0;
  border-top: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
}
.stats .container {
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.stat-item h3 {
  font-family: var(--font-header);
  font-size: 3rem;
  color: var(--secondary-color);
  margin: 0;
}
.stat-item p { margin: 5px 0 0; }

.report-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 350px;
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.card img { width: 100%; display: block; }
.card h3, .card p, .card a { padding: 0 20px; }
.card h3 { margin: 20px 0 10px; font-family: var(--font-header); }
.card a {
  display: inline-block;
  margin: 15px 0 20px 20px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: bold;
}

.footer {
  background: var(--dark-bg-color);
  color: #aaa;
  text-align: center;
  padding: 30px 0;
  border-top: 5px solid var(--primary-color);
}
.footer p { margin: 5px 0; }
.footer strong { color: var(--light-text-color); font-size: 1.2rem; }

.video-appeal {
  padding: 80px 0;
  background-color: #fff;
}
.video-appeal .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.video-container {
  flex-basis: 350px;
  flex-shrink: 0;
  position: relative;
  padding-bottom: 40px;
  min-width: 0;
  min-height: 0;
}
.video-wrapper {
  border-radius: 20px;
  margin-right: 5px;
  margin-left: 5px;
  border: 4px solid var(--secondary-color);
  overflow: hidden;
}
.video-wrapper video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-text {
  flex-basis: 50%;
  position: relative;
  overflow: hidden;
}
.video-text h2 {
  text-align: left;
  margin-bottom: 20px;
}
.video-text p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  min-height: 100px;
}

.swiper-pagination {
  bottom: 0 !important;
}
.swiper-pagination-bullet {
  background: var(--primary-color) !important;
}
.swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.swiper-button-prev, .swiper-button-next {
  position: static !important;
  margin: 0 !important;
  width: 50px !important;
  height: 50px !important;
  background-color: var(--bg-color);
  border-radius: 50%;
  transition: background-color 0.3s;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  background-color: #ddd;
}
.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 20px !important;
  font-weight: bold !important;
  color: var(--primary-color) !important;
}

@media (max-width: 992px) {
  .video-appeal .container {
    flex-direction: column;
    gap: 40px;
  }

  .video-container {

    flex-basis: auto;

    width: 100%;

    max-width: 400px;
  }

  .video-text h2, .video-text p {
    text-align: center;
  }
  .swiper-navigation {
    justify-content: center;
    gap: 20px;
  }
}

.page-header {
  padding: 60px 0;
  background-color: var(--dark-bg-color);
  color: var(--light-text-color);
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-header);
  font-size: 3.5rem;
  margin: 0;
  color: var(--secondary-color);
}

.page-header p {
  font-size: 1.2rem;
  color: #ccc;
  margin: 10px 0 0;
}

.about-intro {
  padding: 60px 0;
}

.about-intro .lead {
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.our-directions {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.our-directions h2 {
  text-align: center;
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.direction-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--primary-color);
}

.direction-card h3 {
  font-family: var(--font-header);
  margin: 0 0 15px 0;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.mission-statement {
  padding: 60px 0;
  background: var(--dark-bg-color);
}

.mission-statement blockquote {
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
  color: var(--light-text-color);
  max-width: 800px;
  margin: 0 auto;
  border-left: 4px solid var(--secondary-color);
  padding-left: 30px;
}

.values-cooperation {
  padding: 80px 0;
  text-align: center;
}

.values-cooperation h2 {
  text-align: center;
}

.values-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.values-list span {
  background-color: var(--bg-color);
  border: 1px solid #ddd;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
}

.cooperation-text {
  max-width: 800px;
  margin: 0 auto;
}

.cooperation-text p {
  font-size: 1.1rem;
}

.cooperation-text .cta-button {
  margin-top: 20px;
}


.projects-intro {
  padding: 60px 0;
  background: #fff;
}

.projects-intro .lead {
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.projects-grid-section {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.projects-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.project-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border-bottom: 4px solid transparent;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--primary-color);
}

.project-emoji {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 20px;
}

.project-card h3 {
  font-family: var(--font-header);
  font-size: 1.6rem;
  color: var(--primary-color);
  margin: 0 0 15px 0;
}

.project-card p {
  line-height: 1.7;
}
.contact-section {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: #fff;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.contact-info h2, .contact-form h2 {
  font-family: var(--font-header);
  font-size: 2rem;
  margin-top: 0;
  color: var(--primary-color);
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h4 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
}

.contact-item a, .contact-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
  text-decoration: none;
  margin: 0;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item span {
  font-size: 0.9rem;
  color: #777;
  display: block;
  margin-top: 5px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form button.cta-button {
  width: 100%;
  padding: 15px;
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}


.reports-section {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.reports-feed {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.report-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.report-images {
  height: 350px;
  overflow: hidden;
}

.report-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.report-images img:not(:first-child) {
  display: none;
}

.report-content {
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.report-date {
  display: block;
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 15px;
}

.report-content h3 {
  font-family: var(--font-header);
  font-size: 1.8rem;
  margin: 0 0 15px 0;
}

.report-content p, .report-content ul {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}
.report-content p:last-child, .report-content ul:last-child {
  margin-bottom: 0;
}

.report-content ul {
  padding-left: 20px;
}
.report-content ul li {
  margin-bottom: 8px;
}

@media (min-width: 992px) {
  .reports-feed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: none;

  }
}

@media(max-width: 768px) {
  .reports-feed {
    gap: 30px;
  }
  .report-images {

    height: 300px;
  }
  .report-content h3 {
    font-size: 1.5rem;
  }
}

.cta-section {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}

.cta-section h2 {
  font-family: var(--font-header);
  font-size: 2.5rem;
}

.cta-section p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }

  .directions-grid {
    grid-template-columns: 1fr;
  }

  .mission-statement blockquote {
    font-size: 1.2rem;
    text-align: left;
  }
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.burger-menu span {
  width: 100%;
  height: 3px;
  background: var(--text-color);
}
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
  }
  .nav.active {
    display: flex;
  }
  .nav ul {
    flex-direction: column;
    width: 100%;
  }
  .nav ul li {
    text-align: center;
    margin: 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
  }
  .burger-menu {
    display: flex;
  }

  .nav.active a {
    color: var(--text-color);
  }
  .nav.active a:hover {
    color: var(--primary-color);
  }
}
