/* Stylesheet - styles.css */

/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  /*background-color: #f4f4f9;*/
  background-color: #d2d2d2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #333;
}

.card-container {
  width: 90%;
  max-width: 400px;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.profile-photo-round {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.profile-pic-square {
  width: 100%;
  margin-bottom: 15px;
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
  letter-spacing: .8px;
}

.bio {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-button {
  text-decoration: none;
  color: #fff;
  background-color: #000000;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  transition: background-color 0.3s;
  letter-spacing: .8px;
  line-height: 1.6; /* Increase this value for more spacing */
}


.link-button:hover {
  opacity: 0.7;
}

.link-button i {
  margin-right: 8px; /* Spacing between icon and text */
}

.link-button:hover i {
  color: #ffcc00; /* Change color on hover for a visual effect */
}

.qr-code-container {
  margin-top: 20px;
  text-align: center;
}

.qr-code {
  width: 250px; /* Adjust size as needed */
  height: auto;
  margin-bottom: 8px;
}

.contact-form-container {
  margin-top: 20px;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 8px;
  text-align: left;
}

.contact-form-container h2 {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.submit-button {
  background-color: #ffcc00;
  color: #333;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}

.submit-button:hover {
  background-color: #ffaa00;
}

.social-media-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.social-media-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #000000;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s;
}

.social-media-icons a:hover {
  opacity: 0.7;
}

.map-container {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden; /* Ensures rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow for effect */
}

.map-container iframe {
  width: 100%;
  height: 200px;
  border: 0; /* Removes default iframe border */
}

.location-banner {
  background-color: #000000; /* Use the same button/link color for consistency */
  color: white;
  text-align: center;
  padding: 8px;
  border-radius: 5px 5px 0 0;
  margin-bottom: -5px; /* Adjust to connect seamlessly with the iframe */
}

.location-banner h3 {
  margin: 0;
  font-size: 1.2em;
}

.footer {
  margin-top: 20px;
  padding: 10px;
  background-color: #000000; /* Matches primary color */
  color: #f4f4f9; /* Light text for contrast */
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

.footer p {
  margin: 5px 0;
}

.footer .heart {
  color: #ff6347; /* A warm red tone */
}
