/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === BASE === */
body {
  font-family: 'Montserrat', sans-serif;
  background: #faf9f7;
  color: #3a3a3a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* === CONTAINER === */
.container {
  max-width: 700px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* === LEFT CONTENT === */
.left h1 {
  font-size: 28px;
  font-weight: 600;
  color: #8b6b4f;
  line-height: 1.4;
  margin-bottom: 16px;
}

.left p {
  font-size: 15px;
  line-height: 1.7;
  color: #5f5f5f;
  margin-bottom: 16px;
}

/* === CARD LOGO AS LINK === */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: transparent;
  padding: 0;
}

.logo {
  max-width: 200px;
  width: 100%;
  transition: transform 0.25s, filter 0.25s;
}

/* Hover effect for active Instagram link on logo */
.logo-link:hover .logo {
  transform: scale(1.05);
  filter: none;
}

.divider {
  width: 60px;
  height: 2px;
  background:  #8b6b4f;
  opacity: 0.5;
  margin-bottom: 16px;
}

/* === SOCIALS === */
.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3f1ee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 16px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.socials a:hover {
  background: #b59a7c;
  color: #fff;
  transform: translateY(-2px);
}

/* === CONTACTS === */
.contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
   transform: scale(1.05);
}

.contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.contact i {
  color: #b59a7c;
  font-size: 16px;
}

.contact a {
  color: #3a3a3a;
  text-decoration: none;
   transform: scale(1.05);
}

.contact a:hover {
  color: #b59a7c;
}

/* === FOOTER === */
footer {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 10px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .left h1 {
    font-size: 20px;
  }
  .left p {
    font-size: 14px;
  }
  .socials a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .divider {
    width: 50px;
  }
}


.highlight {
  color:  #8b6b4f !important; /* ոսկեգույն */
  font-weight: 600;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}
