@charset "UTF-8";

* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Arial',sans-serif;
}

body {
  background:linear-gradient(135deg,#4a2a2d,#2d1b1f);
/* Dark, warm gradient with deep burgundy and brown shades */
  color:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  height:100vh;
  margin:0;
}

.profile-container {
  max-width:600px;
  background-color:rgba(58,58,58,0.85);
/* Dark container with slight transparency */
  padding:30px;
  border-radius:10px;
  box-shadow:0 8px 25px rgba(0,0,0,0.3);
/* Strong shadow for depth */
  transition:transform .3s ease,box-shadow .3s ease;
}

.profile-container:hover {
  transform:scale(1.05);
  box-shadow:0 12px 40px rgba(0,0,0,0.4);
}

.profile-header {
  text-align:center;
  margin-bottom:25px;
}

.profile-image {
  width:120px;
  height:120px;
  border-radius:50%;
  border:4px solid #f8d160;
/* Gold accent for profile image */
  object-fit:cover;
  transition:transform .3s ease;
}

.profile-image:hover {
  transform:scale(1.1);
}

.profile-name {
  font-size:2.4em;
  color:#f8d160;
/* Gold for the name */
  margin-top:10px;
  font-weight:bold;
  text-shadow:2px 2px 5px rgba(0,0,0,0.3);
}

.profile-tagline {
  font-size:1.1em;
  color:#e8b7ab;
/* Soft pink/peach for tagline */
  margin-top:5px;
  font-style:italic;
}

h2 {
  font-size:1.6em;
  color:#f8d160;
/* Gold for section headers */
  margin:20px 0 10px;
  text-transform:uppercase;
  transition:color .3s ease;
}

h2:hover {
  color:#e8b7ab;
/* Hover color for headers to add variety */
}

p,ul {
  color:#e8b7ab;
/* Soft pink for text content */
  line-height:1.8;
}

ul {
  list-style-type:none;
  padding-left:0;
}

ul li {
  background:#4a2a2d;
/* Dark background for list items */
  padding:12px;
  margin:8px 0;
  border-radius:8px;
  transition:background-color .3s ease;
}

ul li:hover {
  background-color:#f8d160;
/* Gold hover effect for list items */
}

a {
  color:#f8d160;
/* Gold for links */
  text-decoration:none;
  font-weight:bold;
  transition:color .3s ease;
}

a:hover {
  color:#e8b7ab;
/* Soft pink on hover */
  text-decoration:underline;
}

/* Button Styling */
.tip-button {
  background-color:#f8d160;
/* Gold button color */
  color:#2d1b1f;
  font-size:1.2em;
  padding:12px 20px;
  border:none;
  border-radius:8px;
  cursor:pointer;
  transition:background-color .3s ease,transform .2s ease;
  display:inline-block;
  margin-top:15px;
}

.tip-button:hover {
  background-color:#e8b7ab;
/* Soft pink hover for button */
  transform:translateY(-3px);
}