/* Clean PHP-site additions */
html { scroll-behavior: smooth; }
body { margin: 0; }
.site { min-height: 100vh; }
.site-content { padding-top: 2.5em; }
.site-footer .site-info { display:flex; gap:1rem; flex-wrap:wrap; align-items:center; }
.site-footer .site-info a { text-decoration:none; }
.entry-content img { max-width:100%; height:auto; }
.entry-content video { max-width:100%; height:auto; }
.main-navigation .current-menu-item > a { font-weight:700; }
.menu-toggle { cursor:pointer; }

/* Lightweight replacement for the old WordPress Smart Slider */
.hero-slider { position:relative; width:100vw; left:50%; margin-left:-50vw; overflow:hidden; background:#111; aspect-ratio:2/1; max-height:600px; margin-bottom:2.5rem; }
.hero-slider__slide { position:absolute; inset:0; opacity:0; transition:opacity .7s ease; }
.hero-slider__slide.is-active { opacity:1; }
.hero-slider__slide img { width:100%; height:100%; object-fit:cover; display:block; }
.hero-slider__dots { position:absolute; left:50%; bottom:18px; transform:translateX(-50%); display:flex; gap:8px; z-index:2; }
.hero-slider__dot { width:10px; height:10px; padding:0; border:0; border-radius:50%; background:rgba(255,255,255,.55); cursor:pointer; }
.hero-slider__dot.is-active { background:#fff; }

/* Static gallery cleanup: thumbnails remain clickable without WordPress AJAX. */
[class*="bwg_standart_thumbnails"] { max-width:100% !important; }
[class*="bwg_standart_thumb_spun1"] { vertical-align:top; }
[class*="bwg_standart_thumb_img"] { object-fit:cover; }
.bwg_spider_popup_loading, .spider_popup_overlay, [id^="ajax_loading_"] { display:none !important; }

@media (max-width: 767px) {
  .hero-slider { aspect-ratio:16/9; }
}

/* Clean PHP photo gallery (WordPress Photo Gallery replacement) */
.clean-gallery__title { text-align:center; margin:35px 0 28px; font-weight:400; }
.clean-gallery { display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:18px; max-width:1180px; margin:0 auto; }
.clean-gallery__item { display:block; height:125px; overflow:hidden; background:#f4f4f4; }
.clean-gallery__item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .2s ease; }
.clean-gallery__item:hover img { transform:scale(1.04); }
.clean-gallery__pagination { display:flex; align-items:center; justify-content:center; gap:6px; margin:34px 0 20px; font-size:13px; }
.clean-gallery__pagination a, .clean-gallery__pagination span { min-width:28px; height:28px; padding:0 7px; border:1px solid #e3e3e3; display:inline-flex; align-items:center; justify-content:center; text-decoration:none; }
.clean-gallery__pagination .is-disabled { opacity:.45; }
@media (max-width:700px) { .clean-gallery { grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; } .clean-gallery__item { height:110px; } }
