/*
* LinkStack
* https://linkstack.org
* Free to use under the GPL-3.0 License.
* https://www.gnu.org/licenses/gpl-3.0.en.html
* 05/12/2022
*
* Built using:
*
* littlelink V1
* https://littlelink.io
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/21/2019
*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Code
- Spacing
- Utilities
- Misc
- Credit footer
*
* You'll find the button css in css/brands.css.
*
*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  box-sizing: border-box; }
.column {
  position: center;
  width: 100%;
  float: center;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 0; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */

html {
  font-size: 100%; }

  @media (prefers-color-scheme: dark) {
    body {
      font-size: 18px;
      line-height: 24px;
      font-weight: 400;
      background: #151826;
      background: radial-gradient(circle, #151826 28%, #0d0f18 100%);
      font-family: "Inter", sans-serif;
      color: #ffffff; }
  }
  
  @media (prefers-color-scheme: light) {
    body {
      font-size: 18px;
      line-height: 24px;
      font-weight: 400;
      background: #fff;
      font-family: "Inter", sans-serif;
      color: #222; }

  }


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1 {
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 800;
  font-family: "Inter", sans-serif; }
h1 { font-size:24px; line-height: 64px; letter-spacing: 0;}


/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: 48px; line-height: 96px;}
}

p {
  margin-top: 0; }


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #0085FF; 
  text-decoration: none;
}
a:hover {
  color: #0085FF; }

.spacing {
  padding: 0 10px;
}

  @media (prefers-color-scheme: dark) {
  .social-icon{color:#fff;}
  }
  @media (prefers-color-scheme: light) {
    .social-icon{color:#222;}
  }

/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }

/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
p,
ol {
  margin-bottom: 2.5rem; }


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }

  @media (prefers-color-scheme: dark) {
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: #151826 #222738;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 8px;
  }

  *::-webkit-scrollbar-track {
    background: #222738;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #151826;
    border-radius: 30px;
    border: 3px none #ffffff;
  }
 
}
  
  @media (prefers-color-scheme: light) {
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: #323232 #dbdbdb;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 8px;
  }

  *::-webkit-scrollbar-track {
    background: #dbdbdb;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #323232;
    border-radius: 30px;
    border: 3px none #ffffff;
  }

}

/* Credit footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.credit-txt {
font-weight: 700;
font-size: 15px;
text-decoration: none;
}

@media (prefers-color-scheme: dark) {
.credit-txt-clr{
    color: #FFF !important;
}
}
@media (prefers-color-scheme: light) {
.credit-txt-clr{
    color: #100a26 !important;
}
}

/* Business Card Container */
.container > .row > .column {
  background-color: #ffffff;
  max-width: 640px;
  margin: 40px auto;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Avatar Styling */
#avatar {
  border-radius: 50%;
  border: 4px solid #0073e6;
  width: 128px;
  height: 128px;
  object-fit: cover;
}

/* Name Header */
h1 {
  font-size: 1.5rem;
  margin: 0.5rem 0 0;
  color: #1a1a1a;
  font-weight: 600;
}

/* Description Bio */
.description-parent {
  text-align: left;
  max-width: 400px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0;
  margin-top: -10px;
}

/* Contact Buttons */
.button-entrance {
  margin: 8px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background-color: #f1f5f9;
  color: #1a1a1a;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.button:hover {
  background-color: #e2e8f0;
}

.button img.icon {
  width: 18px;
  height: 18px;
}

/* Footer Links */
.footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.85rem;
  margin-top: 30px;
  flex-wrap: wrap;
}

.footer a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: #000;
}

/* Responsive */
@media (max-width: 600px) {
  .container > .row > .column {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .description-parent {
    text-align: center;
    padding: 0 10px;
  }

  .button {
    justify-content: center;
    width: 100%;
    max-width: 320px;
  }
}