﻿/* =====================================================
   Linktree Template Stylesheet
   Author: [Your Name or Brand]
   Purpose: Styling for profile image, buttons, and icons
   ===================================================== */

/* Reset / Base */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: sans-serif;
  background-color: #fff;
}

/* Container */
.linktree-container {
  max-width: 480px;
  width: 90%;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
  text-align: center;
 
}

/* Profile Image */
.profile-img {
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 1rem;
  
}

/* Profile Name */
.profile-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Buttons / Links */
.linktree-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e0e0e0;
  color: #111;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 9px;
  margin: 1.3rem 0;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.linktree-button:hover {
  background-color: #d3d3d3;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.logo-container {margin-top:2rem}

/* Social Icons */
.social-icons {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.social-icons a {
  color: #333;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s;
}
.social-icons br {
  display: none;
}
