/* SCROLL TO TOP BUTTON */
#scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  font-size: 28px;
  line-height: 50px;
  text-align: center;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #4cafef, #1e88e5);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
  z-index: 9999;
  transform: translateY(20px);
}

#scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#scroll-to-top:hover {
  background: linear-gradient(135deg, #1e88e5, #1976d2);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

/* Contact Section */
.contact-box {
  display: grid;
  gap: 25px;
  margin: 50px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(227, 189, 130, 0.1);
  backdrop-filter: blur(10px);
}

.contact-box p {
  transition: all 0.3s ease;
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid transparent;
}

.contact-box p:hover {
  background: rgba(227, 189, 130, 0.08);
  border-left-color: var(--accent);
  transform: translateX(5px);
}

.contact-box strong {
  color: var(--accent);
  font-weight: 600;
  min-width: 150px;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.contacts-map {
  margin: 60px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(227, 189, 130, 0.2);
  position: relative;
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contacts-map:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
              0 0 0 2px rgba(227, 189, 130, 0.3);
}

.contacts-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
}

.social img {
  width: 70px;
  height: 70px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(0.9) grayscale(20%);
  opacity: 0.85;
  padding: 8px;

}

.social img:hover {
  transform: scale(1.2) translateY(-10px) rotate(5deg);
  filter: brightness(1.1) grayscale(0%);
  opacity: 1;
}

.social img:active {
  transform: scale(0.95);
}

.invite {
  text-align: center;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(227, 189, 130, 0.9);
  margin: 50px 0 30px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.6;
  position: relative;
  padding: 20px;
}

.invite::before,
.invite::after {
  content: '✦';
  color: var(--accent);
  opacity: 0.4;
  margin: 0 15px;
}

.copyright {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(244, 244, 244, 0.5);
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(227, 189, 130, 0.15);
  letter-spacing: 0.5px;
  font-weight: 300;
}

