/* photos.css — фоновые фотографии из набора (photo-*).
   Изображения вынесены в /static/web/img/ (было ~1.9 МБ base64 в этом файле).
   Пути относительные — WhiteNoise/ManifestStorage перепишет их на хешированные в проде.
   image-set отдаёт WebP современным браузерам, JPEG — остальным. */

.photo-shale {
  background-color: #e9e2d3;
  background-image: url('../../img/photo-shale.jpg');
  background-image: image-set(url('../../img/photo-shale.webp') type('image/webp'), url('../../img/photo-shale.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.photo-dome {
  background-color: #e9e2d3;
  background-image: url('../../img/photo-dome.jpg');
  background-image: image-set(url('../../img/photo-dome.webp') type('image/webp'), url('../../img/photo-dome.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.photo-banya {
  background-color: #e9e2d3;
  background-image: url('../../img/photo-banya.jpg');
  background-image: image-set(url('../../img/photo-banya.webp') type('image/webp'), url('../../img/photo-banya.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.photo-terrace {
  background-color: #e9e2d3;
  background-image: url('../../img/photo-terrace.jpg');
  background-image: image-set(url('../../img/photo-terrace.webp') type('image/webp'), url('../../img/photo-terrace.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
