/**
 * Basic styling
 */
body {
  font: 400 18px/1.5 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: rgb(65, 65, 65);
  background-color: #1a1a2e;
  min-height: 100vh;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure {
  margin-bottom: 15px;
}

.btn.btn-primary {
  background: linear-gradient(135deg, #9D2DFF 0%, rgb(180.8, 96, 255) 100%);
  border: none;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(157, 45, 255, 0.4);
}

input.form-control, textarea.form-control {
  font-size: 1.1rem !important;
  line-height: 1.6rem !important;
}

input.form-control {
  height: 48px !important;
}

/**
 * `main` element
 */
main {
  display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 15.75px;
}

/**
 * Lists
 */
ul, ol {
  margin-left: 30px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

/**
 * Links
 */
a {
  color: #e8e8e8;
  text-decoration: none;
}
a:visited {
  color: #e8e8e8;
}
a:hover {
  color: #9D2DFF;
  text-decoration: none;
  cursor: pointer;
}

/**
 * Blockquotes
 */
blockquote {
  color: #828282;
  border-left: 4px solid #e8e8e8;
  padding-left: 15px;
  font-size: 20.25px;
  letter-spacing: -1px;
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting
 */
pre,
code {
  font-size: 16.875px;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  background-color: #eef;
}

code {
  padding: 1px 5px;
}

pre {
  padding: 8px 12px;
  overflow-x: auto;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

/**
 * Icons
 */
.svg-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  fill: #828282;
  padding-right: 5px;
  vertical-align: text-top;
}

.social-media-list li + li {
  padding-top: 5px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: background-color 0.3s ease;
}
.site-header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.site-header .site-logo {
  height: 50px;
  transition: transform 0.3s ease;
}
.site-header .site-logo:hover {
  transform: scale(1.05);
}
.site-header .nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.site-header .nav-links a {
  color: rgb(240, 240, 245);
  font-weight: 500;
  transition: color 0.3s ease;
}
.site-header .nav-links a:hover {
  color: #9D2DFF;
  text-decoration: none;
}
.site-header .nav-links .btn-outline-light {
  border: 2px solid rgb(240, 240, 245);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
}
.site-header .nav-links .btn-outline-light:hover {
  background-color: #9D2DFF;
  border-color: #9D2DFF;
  color: white;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  background: linear-gradient(135deg, #1a1a2e 0%, rgb(16.7916666667, 16.7916666667, 29.7083333333) 100%);
  overflow: hidden;
}
.hero-section .hero-content {
  padding: 2rem;
}
@media (max-width: 991px) {
  .hero-section .hero-content {
    text-align: center;
    order: 2;
  }
}
.hero-section .hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: rgb(240, 240, 245);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-section .hero-title span {
  color: #9D2DFF;
}
.hero-section .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #828282;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-section .hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
@media (max-width: 991px) {
  .hero-section .hero-image-wrapper {
    order: 1;
  }
}
.hero-section .hero-image {
  position: relative;
  width: 100%;
  max-width: 450px;
}
.hero-section .hero-image::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 4px solid #9D2DFF;
  border-radius: 20px;
  z-index: 0;
}
.hero-section .hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}
.hero-section .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.hero-section .scroll-indicator a {
  color: #828282;
  font-size: 1.5rem;
}
.hero-section .scroll-indicator a:hover {
  color: #9D2DFF;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.about-section {
  padding: 8rem 0;
  background-color: rgb(31.525, 31.525, 55.775);
}
.about-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb(240, 240, 245);
  margin-bottom: 2rem;
  position: relative;
}
.about-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #9D2DFF;
  margin: 1rem auto 0;
  border-radius: 2px;
}
.about-section .about-text {
  font-size: 1.2rem;
  color: #828282;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.about-section .skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.about-section .skill-tag {
  background-color: rgba(157, 45, 255, 0.15);
  color: #9D2DFF;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.about-section .skill-tag:hover {
  background-color: #9D2DFF;
  color: white;
}

.contact-section {
  padding: 8rem 0;
  background-color: #1a1a2e;
}
.contact-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb(240, 240, 245);
  margin-bottom: 3rem;
  position: relative;
}
.contact-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #9D2DFF;
  margin: 1rem auto 0;
  border-radius: 2px;
}
.contact-section .contact-form {
  background-color: rgb(35.2083333333, 35.2083333333, 62.2916666667);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.contact-section .contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-section .contact-form .form-group label {
  color: rgb(240, 240, 245);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}
.contact-section .contact-form .form-group .form-control {
  background-color: rgb(44.4166666667, 44.4166666667, 78.5833333333);
  border: 2px solid transparent;
  color: rgb(240, 240, 245);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.contact-section .contact-form .form-group .form-control::placeholder {
  color: #828282;
}
.contact-section .contact-form .form-group .form-control:focus {
  border-color: #9D2DFF;
  box-shadow: 0 0 0 3px rgba(157, 45, 255, 0.2);
  outline: none;
}
.contact-section .contact-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 150px;
}
.contact-section .contact-form .btn-primary {
  background: linear-gradient(135deg, #9D2DFF 0%, rgb(180.8, 96, 255) 100%);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.contact-section .contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(157, 45, 255, 0.4);
}

.site-footer {
  padding: 3rem 0;
  background-color: rgb(20.475, 20.475, 36.225);
  border-top: 1px solid rgb(44.4166666667, 44.4166666667, 78.5833333333);
}
.site-footer .social-links {
  margin-bottom: 1.5rem;
}
.site-footer .social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background-color: rgb(40.7333333333, 40.7333333333, 72.0666666667);
  border-radius: 50%;
  margin: 0 0.5rem;
  color: rgb(240, 240, 245);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.site-footer .social-links a:hover {
  background-color: #9D2DFF;
  transform: translateY(-3px);
  text-decoration: none;
}
.site-footer .copyright {
  color: #828282;
  font-size: 0.9rem;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

.min-vh-100 {
  min-height: 100vh;
}

@media (max-width: 768px) {
  .site-header {
    padding: 1rem;
  }
  .site-header .nav-links {
    gap: 1rem;
  }
  .site-header .nav-links .btn-outline-light {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
  .hero-section .hero-title {
    margin-top: 2rem;
  }
  .about-section,
  .contact-section {
    padding: 5rem 0;
  }
  .contact-section .contact-form {
    padding: 2rem;
  }
}

/*# sourceMappingURL=main.css.map */