/* Basic reset and layout setup remains the same */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  height: 100vh;
  background-color: #fae3d2;
}

img {
  width: 100%;
  display: block;
}

.container {
  margin: 0 auto;
  text-align: center;
}

.header {
  position: relative;
}

.background-image {
  width: 100%;
  height: auto;
  position: relative;
}

.background-image img {
  clip-path: polygon(0% 0%, 100% 0%, 100% 63.39%, 0% 100%);
}

.line {
  height: 1px;
  background: black;
  rotate: -12deg;
  position: absolute;
  bottom: 15%;
  width: 100%;
}

.profile-picture {
  transform: translateY(-95%) translateX(-50%);
  border-radius: 50%;
  width: 160px;
  height: 160px;
  /* border: 3px solid #fae3d2; */
  margin: 0 auto;
  position: absolute;
  left: 50%;
  z-index: 2;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-picture img {
  position: relative;
  z-index: 2;
  border-radius: 99px;
  border: 2px solid #fae3d2;
}

.profile-picture::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
  left: 0;
  z-index: 1;
  border-radius: 99px;
}

.profile-picture img {
  width: 100%;
  height: 100%;
}

/* .profile-picture {
  transform: translateY(-95%) translateX(-50%);
  border-radius: 50%;
  overflow: hidden;
  width: 150px;
  height: 150px;
  border: 3px solid #fae3d2;
  margin: 0 auto;
  position: absolute;
  left: 50%;
} */

h1 {
  font-size: 36px;
  font-weight: normal;
  margin-top: 30px;
}

.subtitle {
  font-size: 14px;
  color: #666;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.buttons {
  margin: 20px 0;
  display: grid;
  gap: 20px;
  padding: 0 15px;
}

.button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button.light {
  background-color: #e0d8cc;
  color: #000;
}

.button.dark {
  background-color: #000;
  color: #fff;
}

.button.green {
  background-color: #25d366;
  color: #000;
}

.button:hover {
  opacity: 0.8;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.social-media img {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.social-media img:hover {
  opacity: 0.7;
}

/* Custom WhatsApp Button Style */
.whatsapp-button {
  background-color: #25d366; /* WhatsApp Green */
  color: white;
  padding: 12px 20px; /* Adjust padding for more balanced button */
  border: none;
  border-radius: 50px; /* Change border radius for a rounded, pill-like button */
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 100%;
}

.whatsapp-button:hover {
  background-color: #128c7e; /* Darker shade for hover effect */
}

.whatsapp-button .whatsapp-icon {
  width: 24px; /* Size the icon to fit nicely */
  height: 24px;
  margin-right: 12px; /* Add spacing between the icon and the text */
}

.whatsapp-button .whatsapp-text {
  font-size: 16px; /* Adjust font size for the text */
}

/* Hover effect for the WhatsApp button */
.whatsapp-button:hover {
  background-color: #128c7e;
}

.tiktok-button {
  background-color: #000; /* WhatsApp Green */
  color: white;
  padding: 12px 20px; /* Adjust padding for more balanced button */
  border: none;
  border-radius: 50px; /* Change border radius for a rounded, pill-like button */
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 100%;
}

.tiktok-button:hover {
  background-color: #000; /* Darker shade for hover effect */
}

.tiktok-button .tiktok-icon {
  width: 24px; /* Size the icon to fit nicely */
  height: 24px;
  margin-right: 12px; /* Add spacing between the icon and the text */
}

.tiktok-button .tiktok-text {
  font-size: 16px; /* Adjust font size for the text */
}

/* Hover effect for the WhatsApp button */
.tiktok-button:hover {
  background-color: #242424;
}

.instagram-button {
  background-color: gradient; /* WhatsApp Green */
  color: white;
  padding: 12px 20px; /* Adjust padding for more balanced button */
  border: none;
  border-radius: 50px; /* Change border radius for a rounded, pill-like button */
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 100%;
}

.instagram-button:hover {
  background-color: #128c7e; /* Darker shade for hover effect */
}

.instagram-button .instagram-icon {
  width: 24px; /* Size the icon to fit nicely */
  height: 24px;
  margin-right: 12px; /* Add spacing between the icon and the text */
}

.instagram-button .instagram-text {
  font-size: 16px; /* Adjust font size for the text */
}

/* Hover effect for the WhatsApp button */
.instagram-button:hover {
  background-color: #128c7e;
}

/* Instagram CSS Linear Gradient Background */
.gradient {
  background: #833ab4;
  background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}
