/* ==========================
   BODY & BACKGROUND
========================== */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center; 
  align-items: center;   
  background-image: url("icons/background.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; 
  position: relative;
}

/* Optional overlay for contrast */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.25); 
  z-index: 0;
}

/* ==========================
   MAIN CONTAINER
========================== */
.container {
  position: relative;
  z-index: 1; 
  background: rgba(35, 25, 15, 0.72);
  backdrop-filter: blur(5px);
  width: 90%;           
  max-width: 430px;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(255,255,255,0.07);
  box-shadow: 
    0 0 0 10px rgba(0,0,0,0.3),
    0 0 0 14px url("https://i.imgur.com/RmVJ2uC.png"), 
    0 15px 28px rgba(0,0,0,0.5);
  animation: fadeIn 1.2s ease;
  margin: 20px; 
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(35px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ==========================
   PROFILE IMAGE / FRAME
========================== */
.profile-wrapper {
  display: inline-block;
  padding: 10px;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  border: 4px solid #513a2b;
  box-shadow:
    inset 0 0 10px rgba(0,0,0,0.8),
    inset 0 0 30px rgba(0,0,0,0.4),
    0 5px 20px rgba(0,0,0,0.5);
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  filter: brightness(0.92);
}

/* ==========================
   TITLES
========================== */
h2 {
  font-family: 'Marcellus', serif;
  color: #f1e2cd;
  margin: 15px 0 6px;
  font-size: 30px;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

p {
  font-size: 15px;
  color: #e7dbc8;
  margin-bottom: 28px;
}

/* ==========================
   SOCIAL ICON ROW
========================== */
.icon-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 20px 0 30px;
}

.icon-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.35s;
  box-shadow: inset 0 3px 10px rgba(0,0,0,0.7);
}

.icon-circle img {
  width: 27px;
}

.icon-circle:hover {
  transform: scale(1.15);
  background: rgba(255,255,255,0.22);
}

/* ==========================
   3D CARVED WOOD BUTTONS
========================== */
.link-btn {
  display: block;
  width: 100%;
  padding: 15px 0;
  margin: 14px 0;
  border-radius: 14px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #f5e4d1;
  background: linear-gradient(145deg, #6a4b34 0%, #402a1b 100%);
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.2),
    inset 0 -2px 5px rgba(0,0,0,0.6),
    0 5px 15px rgba(0,0,0,0.5);
  letter-spacing: 0.6px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.12);
}

.link-btn:hover {
  transform: scale(1.04);
  background: linear-gradient(145deg, #79563c 0%, #4b3523 100%);
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.25),
    inset 0 -3px 6px rgba(0,0,0,0.6),
    0 8px 20px rgba(0,0,0,0.6);
}

/* ==========================
   RESPONSIVE DESIGN
========================== */
@media (max-width: 480px) {
  .container { padding: 26px; }
  h2 { font-size: 24px; }
  .profile-img { width: 120px; height: 120px; }
  body{
     background-image: url("icons/background-mobile.png");
  }
}
