
    .hero {
      background: url(img/hero.jpg) no-repeat center center/cover;
      height: 100vh;
      color: white;
      position: relative;
      clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
      overflow: hidden;
    }
    .hero-overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.4);
    }
    .hero-content {
      position: absolute;
      width: 100%;
      text-align: center;
      z-index: 2;
      top: 50%;
      transform: translateY(-50%);
      transition: transform 0.1s linear, opacity 0.1s linear;
      font-size: clamp(1.5rem, 5vw, 4rem);
    }


    footer {
      background: rgb(60, 103, 60); /* тёмно-зелёный фон */
      color: #ccc;
      padding: 40px 0;
    }

    /* Плавная прокрутка */
    html {
      scroll-behavior: smooth;
    }

    /* Галерея */
    .gallery-item {
      position: relative;
      display: block;
      text-decoration: none;
      color: #fff;
      overflow: hidden;
      border-radius: 0.25rem;
      opacity: 0;
      transform: translateY(30px);
      transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .gallery-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease; 
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-label {
      position: absolute;
      bottom: 8px;
      right: 8px;
      left: 8px;
      background: rgba(0,128,0,0.5); 
      padding: 5px 8px;
      font-weight: 600;
      font-size: 1rem;
      border-radius: 5px;
      text-align: right;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }


    .gallery-item:link, 
    .gallery-item:visited, 
    .gallery-item:hover, 
    .gallery-item:active {
      color: #fff;
      text-decoration: none;
    }


    .bi {
      color: #198754; 
    }
    .about-block {
      opacity: 0;
      transform: translateX(-50px);
      transition: all 0.6s ease;
    }
    .about-block.show.left {
      opacity: 1;
      transform: translateX(0);
    }
    .about-block.show.right {
      opacity: 1;
      transform: translateX(0);
    }


    @media (max-width: 768px) {
      .gallery-label {
        font-size: 0.9rem;
        padding: 4px 6px;
      }
      .gallery-item img {
        height: 200px;
      }
    }

    @media (max-width: 480px) {
      .gallery-label {
        font-size: 0.8rem;
        padding: 3px 5px;
      }
      .gallery-item img {
        height: 150px;
      }
    }

    .navbar-dark.bg-dark {
      background-color: #204120 !important; 
    }


.language-switcher {
  display: flex;
  align-items: center;
}

.language-switcher .nav-link {
  color: #fff;            
  font-weight: 600;
  padding: 0 8px;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.language-switcher .nav-link:hover {
  color: #16a34a;        
}

.language-switcher .nav-link.active {
  color: #16a34a;  
}

body { 
  background-color: #f0fdf4; 
  color: #064e3b; 
  margin:0; padding:0; 
}


.Hero_shablon h1 { font-size: 3rem; font-weight: bold; }
.Hero_shablon p { font-size: 1.2rem; max-width: 800px; }


.gallery-container { position: relative; overflow: hidden; margin-bottom: 20px; }
.gallery-track { display: flex; transition: transform 0.5s ease; }
.gallery-track img {
  width: calc((100% - 30px)/3);
  margin-right: 15px;
  border-radius: 12px;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
}


.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(16, 83, 40, 0.47);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0 10px;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10;
}
.gallery-btn.prev { left: 10px; }
.gallery-btn.next { right: 10px; }

/* Индикаторы */
.gallery-indicators {
  text-align: center;
  margin-top: 10px;
}
.gallery-indicators span {
  display: inline-block;
  width: 10px; height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}
.gallery-indicators .active { background: #16a34a; }


#lightboxModal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#lightboxImg {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  position: absolute;
  cursor: grab;
  transform-origin: center center;
  transition: transform 0.2s ease;
}
#lightboxClose {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 10;
}
#zoomControls {
  position: absolute;
  bottom: 60px; right: 30px;
  z-index: 10;
}
#zoomControls button {
  font-size: 1.5rem;
  padding: 5px 10px;
  margin-left: 5px;
  cursor: pointer;
  border-radius: 5px;
  border: none;
  background: rgba(27, 99, 54, 0.66);
}


#lightboxThumbs {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 10;
}
#lightboxThumbs img {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
}
#lightboxThumbs img.active {
  border: 2px solid #fff;
}


.lightbox-caption {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1rem;
  z-index: 10;
  text-align: center;
}

/* Навбар и футер */
.navbar.bg-dark { background-color: #5a9c5a !important; }
.navbar .navbar-brand,
.navbar .nav-link { color: #fff !important; }
.navbar .nav-link.active { color: #fff !important; }

footer.bg-dark { 
  background-color: rgb(60, 103, 60) !important;
  color: #ccc; 
  padding: 40px 0; 
  text-align: center;
}
footer .social-icons a {
  font-size: 1.5rem;
  color: #fff;
  margin: 0 8px;
  transition: color 0.3s;
}
footer .social-icons a:hover { color: #16a34a; }

.container p {
  text-align: justify;          
  text-justify: inter-word;    
  line-height: 1.7;             
 
  margin: 0 auto;               
  font-size: 1rem;              
}


@media (max-width: 768px) {
  .container p {
    text-align: left;       
    max-width: 100%;           
    font-size: 0.95rem;         
  }
}
/* CONNTACT US */
.contact-info p {
  margin: 12px 0; 
  line-height: 1.6; 
}
.hero-subtext {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.5rem);
  margin-top: 15px;
  color: #ffffff;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  line-height: 1.4;
}


.greenrock-section {
  background: transparent;
  color: #2f8f59;
}

.greenrock-slogan {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.greenrock-description {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  line-height: 1.7;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}
.greenrock-description {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem) !important;
}
.greenrock-icon {
  width: 65%;           
  max-width: 91px;       
  height: auto;         
  object-fit: contain;    
  transition: transform 0.3s ease;
}


.greenrock-icon:hover {
  transform: scale(1.05);
}

.greenrock-section .row {
  display: flex;
  justify-content: center;
  align-items: center; 
  flex-wrap: wrap;     
}

.greenrock-section .col-6,
.greenrock-section .col-md-4 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1vw, 1.3rem);
  font-weight: 600;
  color: #3cb468;
  margin-bottom: 10px;
  text-shadow: 0 6px 6px rgba(0, 0, 0, 0);
}

@font-face {
  font-family: 'ArTarumian Grqaser';
  src: url('ArTarumianGrqaser.ttf') format('truetype');
}
.greenrock-slogan-arm {
  font-weight: 400;

  font-family: 'ArTarumian Grqaser', 'Noto Serif Armenian', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  -webkit-text-stroke: 2.6px #16a34a;
  text-shadow: 0 0 1px #16a34a;
  color: #16a34a;
}
