/* === Base Reset & Typography === */
* {
  box-sizing: border-box;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
  font-size: 15px;
  /*line-height: 1.6;*/
  color: #333;
  background-color: #f9f9f9;
}

/* === Layout Containers === */
.ds-container,
.zsg-content-section,
.hdp-header-description,
.contact-wrapper-wide {
  background: #fff;
  /*margin-bottom: 24px;*/
  border-radius: 12px;
  /*padding: 16px;*/
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* === Headers and Meta Info === */
.addr_city,
.addr_city2,
.addr_city3,
.addr_city_size3_title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
}

/* === Fact List Items === */
.ds-home-fact-list-item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 5px;
  /*margin-bottom: 10px;*/
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s ease;
}
.ds-home-fact-list-item:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.ds-home-fact-label {
  font-weight: 500;
  color: #444;
}
.ds-home-fact-value {
  font-weight: 500;
  /*color: #2c3e50;*/
}

/* === Icons === */
.ds-at-a-glance-icon,
.fa-info-circle,
.zsg-icon-expando-left {
  color: #0078D4;
  font-size: 18px;
}

/* === Forms === */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 10px 12px;
  background: #fff;
  /*margin-bottom: 12px;*/
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #0078D4;
  box-shadow: 0 0 0 2px rgba(0,120,212,0.2);
}

/* === Buttons === */
.send_contact_submit {
  /*background-color: #0078D4;*/
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.send_contact_submit:hover {
  background-color: #005fa3;
}

/* === Images === */
#slideshow img,
#nav img {
  /*border-radius: 8px;*/
  object-fit: cover;
  max-height: 400px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Ýôôåêò ïðè íàâåäåíèè */
#slideshow img:hover,
#nav img:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  transform: scale(1.02);
  /*border-radius: 8px;*/ /* âàæíî ïðîäóáëèðîâàòü */
}


/* === Responsive === */
@media (max-width: 768px) {
  .addr_city_size,
  .addr_city_size2,
  .more-please3 {
    font-size: 14px;
    padding: 10px;
  }
  .photo-galery-left,
  .zsg-lg-2-3 {
    width: 100% !important;
  }
}

/* === Animation === */
.yui3-tab-panel {
  animation: fadeIn 0.3s ease-in;
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

