/* Reset some defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  @font-face {
    font-family: "Avenir";
    src: url("./Avenir.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: "Avenir-Black";
    src: url("./Avenir-Black.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
  }
  
  /* Body style with a soft gradient background */
  body {
    font-family: "Avenir", sans-serif;
    background: linear-gradient(135deg, #000000 0%, #323232 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  /* Centered profile container with white card styling */
  .profile-container {
    text-align: center;
    background: #ffffff6b;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    width: 90%;
  }
  
  .profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
  }
  
  .profile-header h1 {
    margin: 10px 0;
    font-size: 24px;
  }
  
  .tagline {
    font-family: "Avenir-Black", sans-serif;
    color: #2d2d2d;
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .social-links a {
    text-decoration: none;
    color: white;
    background: #ff7c1a;
    margin: 0 3px;
    font-size: 16px;
    border: none;
    padding: 1px 5px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 5px;
    transition: background 0.3s ease;
  }
  
  .social-links a:hover {
    font-weight: bolder;
    background: #ff6f00;
  }
  
  .exchange-btn {
    font-family: "Avenir-Black", sans-serif;
    background: #ff7c1a;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
  }
  
  .exchange-btn:hover {
    background: #ff6f00;
    font-weight: bolder;
  }

  .vcard-btn {
    font-family: "Avenir-Black", sans-serif;
    background: #ff7c1a;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
  }
  
  .vcard-btn:hover {
    background: #ff6f00;
    font-weight: bolder;
  }
  
  /* Modal Styles */
  .modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
  }
  
  .modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    position: relative;
    text-align: left;
  }
  
  .close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
  }
  
  .modal-content h2 {
    margin-top: 0;
  }
  
  .modal-content form {
    display: flex;
    flex-direction: column;
  }
  
  .modal-content input,
  .modal-content textarea {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .modal-content button {
    background: #ff7c1a;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .modal-content button:hover {
    background: #ff6f00;
  }
  
  .logo-background {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .logo-background svg {
    width: 125%;
    height: 125%;
    opacity: 0.05;
    transform: translateX(-35%);
  }

  @media (max-width: 600px) {
    .logo-background svg {
      width: 150%;
      height: auto;   
      transform: translate(-10%, 10%); /* Adjust  position as needed */
    }
  }
  