/* style.css */
* {
  box-sizing: border-box;
}
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: #eef2f5;
}
.container {
  background-color: #fff;
  max-width: 360px;
  margin: auto;
  margin-top: 40px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  text-align: center;
}
.logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}
.qr-code {
  width: 140px;
  height: 140px;
  margin: 20px 0;
  transition: transform 0.3s ease;
}
.qr-code:hover {
  transform: scale(1.05);
}
.phone-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background-color: #28a745;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(40,167,69,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 25px;
}
.phone-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(40,167,69,0.5);
}
.phone-icon {
  margin-right: 8px;
  font-size: 22px;
}
.links h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #444;
}
.nearby-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007BFF;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,123,255,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nearby-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,123,255,0.5);
}

/* Social Media Section */
.social-media {
  margin-top: 30px;
}
.social-media h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #444;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.social-icon {
  font-size: 24px;
  color: #444;
  transition: transform 0.3s ease, color 0.3s ease;
  text-decoration: none;
}
.social-icon:hover {
  transform: scale(1.2);
  color: #007BFF;
}
