/* Add here all your CSS customizations */

/* Avalehe pildiriba */
.image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  background: #000;
}

.image-strip img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .image-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-strip img {
    height: 240px;
  }
}

@media (max-width: 575px) {
  .image-strip {
    grid-template-columns: 1fr;
  }

  .image-strip img {
    height: 260px;
  }
}


/* Tehtud tööde galerii leht */
.gallery-section {
  background: #000;
  margin: 0;
  padding: 150px 0 60px;
  color: #fff;
}

.gallery-title {
  color: #fff;
  font-weight: 700;
  margin: 0 0 15px;
  font-size: 34px;
}

.gallery-section p {
  color: #aaa;
  margin-bottom: 30px;
}

.gallery-grid > div {
  margin-bottom: 30px;
}

.gallery-item {
  display: block;
  overflow: hidden;
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

@media (max-width: 767px) {
  .gallery-section {
    padding: 120px 0 45px;
  }

  .gallery-title {
    font-size: 28px;
  }

  .gallery-item img {
    height: 180px;
  }
}/* Meist sektsioon */
.about-section {
  background: #000;
  color: #fff;
  padding: 70px 0 65px;
}

.about-section h2 {
  color: #fff;
  font-weight: 700;
  font-size: 34px;
  margin: 0 0 25px;
}

.about-section p {
  color: #ddd;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-lead {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 600;
}

.about-card {
  background: #111;
  border-left: 4px solid #f4e600;
  padding: 24px 24px 20px;
  margin-bottom: 20px;
}

.about-card h3 {
  color: #f4e600;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
}

.about-card p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .about-section {
    padding: 45px 0;
  }

  .about-section h2 {
    font-size: 28px;
  }

  .about-card {
    margin-top: 20px;
  }
}