/* UNIVERSAL */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-color: #3A3D5B;
}

body {
  font-family: 'Inter', sans-serif;
}

code, pre {
  font-family: 'JetBrains Mono', monospace;
}

/* ===== HEADER ===== */
header, footer {
  background: #2B2D42;
  border-bottom: 1px solid #3A3D5B;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  max-width: 1300px;
  margin: auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== LEFT: LOGO + SOCIAL ===== */
.head {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

#header-logo {
  width: 28px;
  height: auto;
}

.logo p {
  color: #2B2D42;
  font-weight: 600;
  letter-spacing: 3px;
  margin: 0;
}

/* Social Icons */
.head-social-links {
  display: flex;
  gap: 14px;
}

.head-social-links img {
  width: 18px;
  height: 18px;
}

/* ===== NAV + SEARCH ===== */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  font-size: 14px;
  color: #8D99AE;
}

/* ===== SEARCH BAR ===== */
.search-form {
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-input {
  background: #1F2233;
  border: 1px solid #3A3D5B;
  color: #EDF2F4;
  padding: 6px 10px;
  font-size: 13px;
  outline: none;
}

.search-input::placeholder {
  color: #8D99AE;
}

.search-button {
  background: #EDF2F4;
  color: #2B2D42;
  border: none;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
}
/* ===== LOGO STYLE ===== */
.logo p {
  color: #EDF2F4;
}

/* ===== FOOTER ===== */
.footer {
  background: #2B2D42;
  border: 1px solid #3A3D5B;
  color: #8D99AE;
}

/* === HERO SECTION */
.hero {
  padding: 14px 24px;
  background-color: #2b2d42;
  /* background-image:
    linear-gradient(rgba(174, 101, 101, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: 0 0, 0 0; */
  color: #8D99AE;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  background:#2B2D42;
  max-width: 1300px;
  margin: auto;
  margin-left: 300px;
  margin-top: 200px;
}
#badge {
  color: #EDF2F4;
  background-color: #ef233b95;
  border: 1px solid #ef233bd7;
  padding: 10px;
  width: 190px;
  border-radius: 20px;
  margin-bottom: 30px;
}

#main-heading {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}
#hero-span {
  color: #EF233C;
  border-bottom:1px solid #8D99AE;
  line-height: 1.2;
}
.sub-heading {
  font-size: 20px;
  font-weight: 400;
  line-height: 2.2;
}

#sub-heading-hi {
  font-size: 25px;
  line-height: 1.8;
}

.hero-intro {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
.small-labels {
  font-size: 15px;
  font-weight: 400;
  color: #EDF2F4;
}

/* headline-role-tag */
.heading-role-tag {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 15px;
  font-weight: 400;
  color: #EDF2F4;

}
/* Highlight Softrover in headline role tag */
#heading-role-tag-span a {
  color: #e63946;
  text-decoration: none;
}

/* == HERO SECTION BUTTONS == */
.hero-buttons {
  font-weight: 500;
  letter-spacing: 0.5px;
  justify-content: space-between;
  margin: auto;
}
.btn {
  font-size: 0.95rem;
  border: 1px solid;
  padding: 0.6rem 1.2rem;
}

#projects {
  margin-right: 10px;
  color: #EDF2F4;
  text-decoration: none;
  border-radius: 1px solid;
  border-radius: 10px;
}

#resume {
  color: #EDF2F4;
  background-color: #EF233C;
  border: 1px solid #EDF2F4;
  text-decoration: none;
  border-radius: 10px;
}

.social-links {
  margin-left: 14px;
  padding-top: 15px;
  display: flex;
  gap: 14px;
  margin-top: 1.2rem;
}

.social-links img {
  width: 28px;
  height: auto;
}

/* Center and offset hero image to the right */
#hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  left: 80%; /* Offset to the right from center, adjust as needed */
  top: -450px; /* Move towards top, adjust as needed */
  transform: translateX(15%);
}

#hero-image img {
  height: 500px;
  width: auto;
  border-radius: 0%;
}

/* === DOWN ARROW SCROLLER === */
.scroll-arrow a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 32.5rem;
  margin-top: -22rem;
  text-decoration: none;
  color: #EF233C;
}

#down-arrow {
  padding-left: 10px;
}











/* FOOTER-HEADER */

#footer-name {
  color: #EDF2F4;
  font-weight: 600;
}
.muted-text {
  font-weight: 400;
  color: #EF233C;
  font-size: 14px;
}

#back-to-surface-text {
  text-decoration: none !important;
  align-items: center;
}

.upper-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  margin: auto;
  max-width: 1300px;
  background: #2B2D42;
  border: 1px solid #3A3D5B;
  color: #8D99AE;
}

/* FOOTER-SOCIAL-ICONS */

.lower-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1300px;
  margin: auto;
  border: 1px auto #3A3D5B;
  padding: 14px 24px;
}
#privacy {
  margin-left: auto;
  padding: 0 5px;
}
#terms {
  padding: 0 5px;
}

/* === BACK TO SURFACE === */
.back-to-surface-btn {
  display: flex;
  align-items: center;
  margin-left: 30%;
}
.back-to-surface-btn img {
  width: 18px;
  height: 18px;
}
.back-to-surface-text {
  margin-left: 4px;
  font-size: 14px;
  color: #8D99AE;
}

/*  === FOOTER LINKS === */
.footer-social-links {
  display: flex;
  gap: 14px;
}

.footer-social-links img {
  width: 18px;
  height: 18px;
}

/* ==== NEWSLETTER ==== */
#newsletter-text {
  padding: 14px 24px;
  margin-left: 10px;
}