html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Rubik', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #ffffff 0%, #e5ccfa 50%, #c2a3e8 100%);
  background-size: cover;
  background-attachment: fixed;
}



/* CONTACTS */
.contacts-section {
  
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 160px 40px 60px 40px;
}

.contacts-wrapper {
  display: flex;
  width: 80%;
  max-width: 1900px;
  height: 80vh;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  border: 2px solid white;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), rgba(156, 156, 156, 0.23));
  background-blend-mode: screen;
  min-height: 700px;
}


.contacts-left,
.contacts-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  width: 100%;
}


.contacts-left {
  width: 50%;
}

.contacts-right {
  min-width: 250px;
}

.contacts-info-box {
  background: radial-gradient(circle at 20% 20%, rgb(116 101 228 / 22%), rgb(28 28 28 / 27%));
  border-radius: 40px;
  padding: 40px;
  color: var(--black);
  font-size: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center; /* центрируем содержимое по вертикали */
  gap: 20px; /* расстояние между элементами */
  height: 100%;
  text-align: left;
}

.contacts-info-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 3px;
  background: linear-gradient(135deg, #7465E4, #D8C8EC, #7465E4);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}

.breeder-name {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  justify-content: center;
}

.contact-line img {
  width: 20px;
  height: 20px;
}

.contact-line a {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
}

.contact-line a:hover {
  text-decoration: underline;
}

.social-links {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-links a img {
  width: 44px;
  height: 44px;
  transition: 0.2s;
}

.social-links a:hover img {
  transform: scale(1.1);
}






.contacts-title {
  font-family: "Montserrat";
  margin-top: auto;
  font-size: clamp(3rem, 8vw, 9.6rem);
  font-weight: 100;
  color: var(--black);
  opacity: 0.9;
}






.photo-box {
  background: radial-gradient(circle at 20% 20%, rgba(116, 101, 228, 0.3), rgba(28, 28, 28, 0.5));
  background-blend-mode: screen;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 20px rgba(116, 101, 228, 0.2),
    0 0 40px rgba(187, 177, 230, 0.3),
    inset 0 0 30px rgba(116, 101, 228, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.photo-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 3px;
  background: linear-gradient(135deg, #7465E4, #D8C8EC, #7465E4);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.photo-box img {
  width: 100%;
  height: auto;
  object-fit: cover;

}







@media (max-width: 900px) {

  .contacts-section {
    padding: 100px 20px 60px 20px;
  }

  .contacts-wrapper {
    flex-direction: column;
    width: unset;
    border: 1px solid #ffffff3d;
    height: unset;
  }

  .contacts-left, .contacts-right {
    width: unset;
    box-sizing: border-box;
    padding: 20px;
  }

  .contacts-title {
    display: none;
  }
}