body {
	background: linear-gradient(to bottom, #b69785 0%, #1c1c1c 12%);
	font-family: "Poppins", sans-serif;
	color: #fff;
	text-align: center;
	margin: 0;
	padding: 24px 16px;
	min-height: 100vh;
	background-repeat: no-repeat;
	background-attachment: scroll;
}

.container {
	max-width: 400px;
	margin: 0 auto;
}

.logo {
	max-width: 160px;
	margin: 0 auto 20px;
	display: block;
}
.typing-text-container {
	margin-top: 8px;
	margin-bottom: 12px;
	font-family: "Playfair Display", serif;
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
	height: 20px;
	letter-spacing: 1px;
}

.avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 12px;
}

.name {
	font-family: "Playfair Display", serif;
	font-size: 28px;
	margin: 0 0 4px;
	font-weight: 500;
}

.subtitle {
	font-size: 16px;
	font-weight: 500;
	opacity: 0.85;
	 margin-bottom: 0px;
}

.quote {
	font-size: 14px;
	font-weight: 300;
	font-style: italic;
	line-height: 1.5;
	color: #f6e8de;
	max-width: 380px;
	margin: 0 auto 28px;
}

.button-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.btn {
	display: inline-block;
	padding: 12px 18px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	transition: 0.3s;
}

.btn.primary {
  background: linear-gradient(to right, #ce936d, #f6e8de);
  color: #1c1c1c;
  border: 4px solid #954c20;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 0;
  padding: 12px 18px;
  height: auto;
  line-height: 1;
}
.btn.primary {
  white-space: nowrap;
}

.btn.secondary {
	background-color: #f6e8de;
	color: #1c1c1c;
	border: 4px solid #954c20;
	font-weight: 700;
	font-size: 13px;
	text-transform: none;
	padding: 10px 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 0;
}

.btn.primary,
.btn.secondary {
	width: 300px;
	text-align: center;
	height: 48px;
}

.btn-outline {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: transparent;
	color: #ffffff;
	border: 4px solid #ffffff;
	font-weight: 400;
	font-size: 16px;
	padding: 14px 20px;
	width: 100%;
	max-width: 320px;
	text-align: left;
	text-decoration: none;
	transition: background-color 0.3s ease;
	border-radius: 0;
}

.btn-outline:hover,
.btn-outline:hover span {
	color: #ffffff !important;
}

.btn-outline span {
	flex: 1;
	text-align: left;
	padding-left: 88px;
	line-height: 1;
}

.btn-icon-img {
	width: 26px;
	height: 26px;
	margin-left: 12px;
	display: block;
	object-fit: contain;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 12px;
}

.social-icons a {
	display: inline-block;
	width: 34px;
	height: 34px;
	transition: transform 0.3s ease;
}

.social-icons a:hover {
	transform: scale(1.15);
}

.social-icons img {
	width: 100%;
	height: auto;
	display: block;
}

.divider {
  display: block;
  height: 2px; /* Increased for visibility */
  margin: 16px auto 14px;
  width: 100%;
  max-width: 380px;
  background: linear-gradient(to right, #f6e8de, #d49c72, #f6e8de);
  border: none; /* make sure border doesn't override it */
}

.micro-footer {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 20px;
}

.micro-footer a {
  color: #999;
  text-decoration: none;
}

.micro-footer a:hover {
  text-decoration: underline;
}




