/* Table of contents
————————————————————————————————————————————————————————————————

- Rounded user avatars
- Buttons
- Brand Styles

*/


/* Rounded avatars
————————————————————————————————————————————————————————————————— */

/* Disable this if you don't want rounded avatars for users */
.rounded-avatar {
  border-radius: 50%;
}

.social-icon {
  font-size: 32px;
  padding: 10px;
}
.social-icon-div {
  padding-bottom: 30px;
}
.social-icon{color:#fff;}

/* Buttons
————————————————————————————————————————————————————————————————— */

:root {
  --bgColor: #223344;
  --bgColor2: #090a0f;
  --accentColor: #FFF;
  --font: 'Karla', sans-serif;
  --delay: .3s; }

.button {
  position: relative;
  background-color: transparent;
  color: var(--accentColor);
  border: solid var(--accentColor) 2px;
  border-radius: 10px;
  font-size: 1rem;
  text-align: center;
  display: block;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 10px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
  .button:hover {
      background-color: #cccaaa;
      color: var(--bgColor);
  }
}

.button:active {
  background-color: #cccaaa;
  color: var(--bgColor);
}


/* Brand Icons
————————————————————————————————————————————————————————————————— */

.icon {
  padding: 0px 8px 3.5px 0px;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
}

.button:hover .icon {
  -webkit-filter: invert(100%) grayscale(100%);
  -moz-filter: invert(100%) grayscale(100%);
  filter: invert(100%) grayscale(100%);
}

/* Custom button styles */
.button-custom {
    background: linear-gradient(45deg, #2193b0, #6dd5ed);
    border: none;
    border-radius: 12px;
    padding: 15px 25px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 10px 0;
    width: 100%;
    max-width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.button-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background: linear-gradient(45deg, #1c7a94, #5bbfe7);
}

.button-neo {
    background: #f0f0f0;
    border: none;
    border-radius: 15px;
    padding: 15px 25px;
    color: #2d3436;
    font-weight: 600;
    box-shadow: 8px 8px 15px #d1d1d1, 
                -8px -8px 15px #ffffff;
    transition: all 0.3s ease;
    margin: 10px 0;
    width: 100%;
    max-width: 450px;
}

.button-neo:hover {
    box-shadow: 5px 5px 10px #d1d1d1, 
                -5px -5px 10px #ffffff;
}

.button-border {
    position: relative;
    background: transparent;
    border: none;
    padding: 15px 25px;
    color: #2d3436;
    font-weight: 600;
    margin: 10px 0;
    width: 100%;
    max-width: 450px;
    overflow: hidden;
    z-index: 1;
}

.button-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00C9FF, #92FE9D, #00C9FF);
    background-size: 200% 100%;
    z-index: -1;
    transition: all 0.5s ease;
}

.button-border:hover::before {
    background-position: 100% 0;
}

.button-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 25px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 10px 0;
    width: 100%;
    max-width: 450px;
}

.button-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.button-3d {
    background: #ff6b6b;
    border: none;
    border-radius: 12px;
    padding: 15px 25px;
    color: white;
    font-weight: 600;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.2s ease;
    margin: 10px 0;
    width: 100%;
    max-width: 450px;
}

.button-3d::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ff5252;
    border-radius: 12px;
    transform: translateZ(-10px);
}

.button-3d:hover {
    transform: translateZ(10px);
}