@import url("/assets/styles/hero.css");
@import url("/assets/styles/description-block.css");
@import url("/assets/styles/features.css");
@import url("/assets/styles/services.css");
@import url("/assets/styles/instagram.css");
@import url("/assets/styles/contact.css");
@import url("/assets/styles/contact-info.css");
@import url("/assets/styles/reviews.css");

.site-header {
  height: 8.5rem;
}

.site-header.header-scrolled {
  height: auto;
}

.decoration {
  text-align: center;
  margin: 0 0 40px 0;
}

.decoration-inside {
  display: inline-block;
  width: 80px;
  height: 3px;
  background-color: #000000;
  position: relative;
}

.decoration-inside::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #808080;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.main-services {
  padding-bottom: 3rem;
}

.main-services .card-blocks-container {
  padding-bottom: 6rem;
}

.ow-button-base.ow-button-align-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3em;
  color: #dbdbdb;
}

body a.widget-contact-telephone {
    color: #fff;
}

.widget-contact-telephone {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.widget-contact-info address {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.6rem;
  font-family: 'Montserrat';
  color: #fff;
}

.widget-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    color: #333;
    margin-bottom: 50px;
    line-height: 1.2;
}

.gallery.container h2 {
    margin: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-with-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.status-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.status-green {
    background-color: #28a745; /* Зелёный */
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
}

.status-red {
    background-color: #dc3545; /* Красный */
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.status-red {
    animation-name: pulse-red;
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

@media only screen and (max-width: 767px) {
    .site-header .site-branding h1 {
        font-size: 19px;
    }
}