* {
  box-sizing: border-box;
  font-family: proxima nova light, Helvetica Neue, Helvetica, Arial, Sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  text-decoration: none;
}

:root {
  --black: #000;
  --light-grey: #d3d3d3;
  --dark-grey: #2c2c2c;
  --white: #fff;
  --secondary-white: #fafafa;
  --purple: purple;
  --blue: blue;
  --green-blue: #0772a4;
  --grey: grey;
  --transparent: transparent;
  --secondary-black: #333;
  --primary-grey: #333;
  --red-gradient: linear-gradient(90deg, red, #c12525, red);
  --shadow: rgba(0, 0, 0, 0.1);
  --secondary-shadow: transparent;
}

.fixed-nav {
  position: fixed;
  top: 0;
}

.hover-grey:hover,
.nav-text:hover {
  color: var(--grey);
}

nav {
  background-color: var(--black);
  height: 90px;
  padding-left: 160px;
  padding-right: 160px;
}

.nav-image {
  transition: transform 0.3s ease;
}

.nav-image:hover {
  transform: scale(1.15);
}

li {
  text-align: left;
}

.text-align {
  text-align: center;
}

.center-logo {
  align-items: center;
  display: flex;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

li,
ul {
  text-decoration: none;
}

.center-top {
  height: 100vh;
  margin-top: -45px;
}

.center-top img {
  position: relative;
  z-index: 1;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.blinking-cursor {
  animation: blink 1s step-start 0s infinite;
}

h2 {
  color: var(--secondary-black);
  font-size: 45px;
  font-size: 2rem;
  text-align: center;
}

.section-1 {
  height: calc(100vh - 70px);
}

.section-2 {
  background: #000;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
    4px 6px 20px 4px rgba(0, 0, 0, 0.19);
  color: #fff;
  height: fit-content;
  padding-bottom: 100px;
  padding-top: 100px;
  text-align: center;
}

.section-2 .header-title {
  color: #dcdcdc;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.grid-item-1,
.grid-item-2,
.grid-item-3,
.grid-item-4 {
  margin-bottom: 30px;
}

.grid-item-1,
.grid-item-3 {
  padding-left: 30px;
  padding-right: 30px;
  text-align: right;
}

.grid-item-2,
.grid-item-4 {
  padding-left: 30px;
  padding-right: 30px;
  text-align: left;
}

.responsive-image {
  height: auto;
  margin-left: 10px;
  margin-right: 10px;
  max-width: 90%;
}

.shake-image {
  height: auto;
  max-width: 90%;
  transition: transform 1.2s ease;
}

.shake-image:hover {
  animation: shake 1.2s ease infinite;
}

@keyframes shake {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translate(-5px);
  }
  50% {
    transform: translate(5px);
  }
  75% {
    transform: translate(-5px);
  }
  to {
    transform: translate(5px);
  }
}

.paragraph {
  padding: 0 160px 60px;
  text-align: center;
}

@media (max-width: 430px) {
  h1 {
    font-size: 3rem;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 3rem;
  }
  .center-top {
    margin-bottom: 5%;
    margin-top: 5%;
  }
}

.text-1 {
  color: var(--grey);
  font-size: 20px;
  line-height: 1.1cm;
  text-align: center;
}

.normal {
  font-weight: 400;
}

.footer-text {
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
}
.section-3 {
  background: radial-gradient(
    ellipse at center,
    hsla(0, 0%, 94%, 0.8) 0,
    hsla(0, 0%, 86%, 0.6) 40%,
    hsla(0, 0%, 78%, 0.4) 70%,
    #fff 100%
  );
  padding: 100px 20px;
  text-align: center;
}

.header-title {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
  text-transform: lowercase;
}
@media (max-width: 768px) {
  .header-title,
  .section-3 .header-title,
  .section-4 .header-title {
    font-size: 2rem !important;
  }
}

@media (max-width: 480px) {
  .header-title,
  .section-3 .header-title,
  .section-4 .header-title {
    font-size: 2rem !important;
  }
}

@media (max-width: 320px) {
  .header-title {
    font-size: 2rem;
  }
}

.section-3 .header-subtitle {
  color: var(--grey);
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-transform: lowercase;
}

.section-3 .form-container {
  margin-top: 50px;
}
.form-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
}
#email-form {
  gap: 20px !important;
}

#email-form input,
#email-form textarea {
  box-sizing: border-box;
  font-size: 1.8rem;
  line-height: 1.5;
}
#email-form input::placeholder,
#email-form textarea::placeholder {
  color: var(--grey);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
}
.submitBtn {
  box-sizing: border-box;
  font-size: 1.8rem;
  width: 100%;
}
@media (max-width: 768px) {
  .form-container {
    padding: 0 15px;
  }

  #email-form input,
  #email-form textarea,
  .submitBtn {
    font-size: 1.4rem;
    padding: 12px;
  }
}

@media (min-width: 1024px) {
  .form-container form {
    margin: 0 auto;
    width: 85% !important;
  }
}
.section-4 {
  background-color: var(--secondary-white);
  padding: 100px 20px 150px;
  text-align: center;
}

.section-4 .header-subtitle {
  color: var(--grey);
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-transform: lowercase;
}

.section-4 .form-container {
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
}

#email-form,
.section-4 .form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

#email-form input,
#email-form textarea {
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  padding: 15px;
  resize: none;
  width: 100%;
}

#email-form textarea {
  height: 150px;
}

.submitBtn {
  background-color: var(--black);
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  padding: 15px;
  transition: background-color 0.3s ease;
}

.submitBtn:hover {
  background-color: var(--dark-grey);
}
@media (max-width: 768px) {
  .section-4 {
    padding: 80px 15px;
  }

  .header-title {
    font-size: 4rem;
  }

  .section-4 .header-subtitle {
    font-size: 1.2rem;
  }

  #email-form input,
  #email-form textarea,
  .submitBtn {
    font-size: 14px;
    padding: 12px;
  }
}

.footer {
  align-items: center;
  background: linear-gradient(0deg, #000, #000, #1a1a1a);
  display: flex;
  height: 70px;
  justify-content: center;
}

.footer-links .footer-link {
  color: #000;
}

.hide {
  display: none;
}

.project-title {
  color: var(--secondary-black);
  font-size: 23px;
}

.blinker {
  animation: blinker 1s linear 1;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

#header {
  text-align: center;
}

.form-container {
  padding-left: 15px;
  padding-right: 15px;
}

input,
textarea {
  border: none;
  font-size: 1.8rem;
  height: 4rem;
  justify-content: center;
  line-height: 4rem;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

input::placeholder {
  font: 20px;
}

.margin-bottom {
  margin-bottom: 20px;
}

.subnmit-button {
  background-color: var(--light-grey);
}

.pause-button {
  bottom: 20px;
  position: fixed;
  right: 20px;
  z-index: 9999;
}

.pause-button button {
  background-color: var(--primary-grey);
  border: none;
  border-radius: 5px;
  color: var(--white);
  cursor: url(/public/assets/img/icons8-hand-cursor-25.png), auto;
  padding: 10px 20px;
  transition: cursor 0.2s ease;
}
.navbar {
  align-items: center;
  background-color: #000;
  border-bottom: 1px solid grey;
  display: flex;
  height: 70px;
  isolation: isolate !important;
  justify-content: center;
  opacity: 1;
  position: fixed;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 10000;
}

.navbar.fade-out {
  opacity: 0;
  pointer-events: none;
}

.navbar-content {
  height: 100%;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links .nav-link {
  color: #fff;
  font-size: 20px;
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links .nav-link:hover {
  color: grey;
}

.social-links .social-link img {
  height: 30px;
  margin-left: 15px;
  width: 30px;
}

.social-links .social-link:hover img {
  opacity: 0.8;
}
.social-icon {
  margin: 0 10px;
}
@media (max-width: 950px) {
  .navbar {
    display: none;
  }
  nav {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-text {
    color: var(--black);
  }

  .paragraph {
    padding: 0 60px 20px;
    text-align: center;
  }

  #header {
    padding: 0 10px;
  }

  .navigation {
    background-color: var(--white) !important;
  }
  .section-1 {
    height: fit-content !important;
  }

  .center-top {
    height: fit-content;
  }

  .grid-container {
    grid: none;
  }
  .center {
    padding: 0 !important;
    text-align: center !important;
  }

  .grid-item-3,
  .grid-item-4 {
    margin-bottom: 30px;
  }

  #header {
    display: none;
  }

  li,
  ul {
    text-align: center !important;
  }
}

@media (max-width: 800px) {
  .form-container {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (min-width: 950px) {
  .show--hide {
    display: none;
  }
}
.show--hide {
  margin-bottom: 70px !important;
  position: relative;
  text-align: center;
  z-index: 10;
}
.navbar-content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
}

.nav-logo img {
  border: 2px solid #fff;
  border-radius: 50%;
  height: 50px;
  transition: transform 0.3s ease;
  width: 50px;
}

.nav-logo img:hover {
  transform: scale(1.1);
}

.nav-links {
  margin-left: auto;
}

.nav-links .nav-link,
.social-links .social-link {
  color: #fff;
  font-size: 18px;
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.nav-link:hover {
  color: grey;
}

.social-links {
  display: flex;
}

.social-links .social-link img {
  height: 50px;
  transition: transform 0.3s ease;
  width: 50px;
}

.social-links .social-link:hover img {
  opacity: 0.7;
  transform: scale(1.1);
}
#splash-screen {
  align-items: center;
  background: #fff;
  display: none;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: fixed;
  width: 100%;
  z-index: 1000;
}
#splash-screen.show {
  display: flex;
}
#splash-screen h1 {
  animation: slideIn 2s ease-out 0.5s forwards;
  font-family: Montserrat, sans-serif;
  opacity: 0;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.main-content {
  opacity: 0;
  transition: opacity 2s ease-out;
}
.section-1 {
  height: calc(100vh - 64px);
  text-align: center;
}

.section-1,
.top-container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
}

.center-top,
.section-1,
.top-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  color: var(--secondary-black);
  font-size: 45px;
  font-size: 6rem;
  text-align: center;
}

.blinking-cursor {
  border-right: 3px solid var(--primary-grey);
}

.pulse-image {
  animation: pulse 2s ease-in-out infinite;
  display: inline-block;
  transition: transform 0.3s;
}
@media (max-width: 950px) {
  .center-top,
  .section-1,
  .section-1 header {
    height: fit-content;
  }
}

.footer-content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 30px;
  width: 100%;
}

.footer-text {
  color: #fff;
  font-size: 18px;
}

.footer-links {
  display: flex;
}

.footer-links .footer-link {
  color: #fff;
  font-size: 18px;
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.footer-link:hover {
  color: grey;
}

@media (max-width: 1200px) {
  .footer-content {
    padding: 0 30px;
  }
}
.project-wrapper {
  display: inline-block;
  position: relative;
}
.project-seal {
  animation: pulse 2s ease-in-out infinite;
  background: linear-gradient(135deg, red, #c12525);
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 10px;
  position: absolute;
  right: 10px;
  text-transform: uppercase;
  top: 10px;
  z-index: 10;
}
@keyframes pulse {
  0%,
  to {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
#skills {
  background: radial-gradient(
    ellipse at center,
    hsla(0, 0%, 94%, 0.8) 0,
    hsla(0, 0%, 86%, 0.6) 40%,
    hsla(0, 0%, 78%, 0.4) 70%,
    #fff 100%
  );
  color: #333;
  padding: 150px 0;
  text-align: center;
}

#skills h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.sphere-container {
  align-items: center;
  background: transparent;
  border-radius: 0;
  display: flex;
  height: 624px;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 624px;
}
@media (max-width: 1200px) {
  .sphere-container {
    height: 500px;
    width: 500px;
  }
}

@media (max-width: 768px) {
  .sphere-container {
    height: 400px;
    width: 400px;
  }
}

@media (max-width: 480px) {
  .sphere-container {
    height: 300px;
    width: 300px;
  }
}
.tag-sphere {
  height: 100%;
  pointer-events: none;
  position: absolute;
  transform: scale(1.2);
  width: 100%;
}
.tag-sphere span {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.15));
  font-size: 0;
  height: 50px;
  margin: 10px;
  position: relative;
  transition: transform 0.2s ease;
  width: 50px;
}
@media (max-width: 768px) {
  .tag-sphere span {
    height: 40px;
    margin: 8px;
    width: 40px;
  }
}

@media (max-width: 480px) {
  .tag-sphere span {
    height: 30px;
    margin: 6px;
    width: 30px;
  }
}
.tag-sphere span:before {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
}
.tag-sphere span:after {
  background: #000;
  border-radius: 4px;
  bottom: -28px;
  color: #fff;
  content: attr(data-text);
  font-size: 10px;
  left: 50%;
  opacity: 0;
  padding: 4px 8px;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.tag-sphere span:hover:after {
  opacity: 1;
}
.tag-sphere span[data-text='react']:before {
  background-image: url(assets/logos/react.svg);
}
.tag-sphere span[data-text='nodejs']:before {
  background-image: url(assets/logos/nodejs.svg);
}
.tag-sphere span[data-text='typescript']:before {
  background-image: url(assets/logos/typescript.svg);
}
.tag-sphere span[data-text='docker']:before {
  background-image: url(assets/logos/docker.svg);
}
.tag-sphere span[data-text='postgresql']:before {
  background-image: url(assets/logos/postgresql.svg);
}
.tag-sphere span[data-text='supabase']:before {
  background-image: url(assets/logos/supabase.svg);
}
.tag-sphere span[data-text='next']:before {
  background-image: url(assets/logos/next.svg);
}
.tag-sphere span[data-text='mongodb']:before {
  background-image: url(assets/logos/mongodb.svg);
}
.tag-sphere span[data-text='vue']:before {
  background-image: url(assets/logos/vue.svg);
}
.tag-sphere span[data-text='netsuite']:before {
  background-image: url(assets/logos/netsuite.svg);
}
.tag-sphere span[data-text='css']:before {
  background-image: url(assets/logos/css.svg);
}
.tag-sphere span[data-text='html']:before {
  background-image: url(assets/logos/html.svg);
}
.tag-sphere span[data-text='go']:before {
  background-image: url(assets/logos/go.svg);
}
.tag-sphere span[data-text='javascript']:before {
  background-image: url(assets/logos/javascript.svg);
}
.tag-sphere span[data-text='express']:before {
  background-image: url(assets/logos/express.svg);
}
.tag-sphere span[data-text='postcss']:before {
  background-image: url(assets/logos/postcss.svg);
}
.tag-sphere span[data-text='tailwindcss']:before {
  background-image: url(assets/logos/tailwindcss.svg);
}
.tag-sphere span[data-text='prisma']:before {
  background-image: url(assets/logos/prisma.svg);
}
.tag-sphere span[data-text='zsh']:before {
  background-image: url(assets/logos/zsh.svg);
}
.tag-sphere span[data-text='stripe']:before {
  background-image: url(assets/logos/stripe.svg);
}
.tag-sphere span[data-text='git']:before {
  background-image: url(assets/logos/git.svg);
}
.tag-sphere span[data-text='github']:before {
  background-image: url(assets/logos/github.svg);
}
.section-5 {
  background: radial-gradient(
    ellipse at center,
    hsla(0, 0%, 94%, 0.8) 0,
    hsla(0, 0%, 86%, 0.6) 40%,
    hsla(0, 0%, 78%, 0.4) 70%,
    #fff 100%
  );
  padding: 100px 20px;
  text-align: center;
}

.resume-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.resume-preview {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 600px;
  max-width: 800px;
  width: 100%;
}
.button-style {
  background-color: var(--primary-grey);
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 10px 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.button-style:hover {
  background-color: var(--dark-grey);
  transform: scale(1.05);
}
button {
  background-color: #333;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #555;
}

button:active {
  background-color: #111;
}

.notification {
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 15px;
  opacity: 0;
  padding: 15px 20px;
  text-align: center;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.notification.success {
  background: linear-gradient(135deg, #0f0, #25c125);
}

.notification.error {
  background: linear-gradient(135deg, red, #c12525);
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

.notification.sending {
  background: #111 !important;
  color: #333 !important;
}

.hidden {
  display: none;
}
.project-grid {
  color: #fff;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 0 auto;
  max-width: 1200px;
  padding: 2rem;
  width: 90%;
}
.card-wrapper {
  isolation: isolate;
  margin-bottom: 2rem;
  overflow: hidden;
}
.card-wrapper,
.project-card {
  position: relative;
  z-index: 1;
}
.project-card {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: hsla(0, 0%, 100%, 0.05);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: block;
  margin-top: 5px;
  overflow: hidden;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.project-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.project-card h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.project-card p {
  color: #bbb;
  font-size: 1rem;
  margin: 0.5rem 0;
}

.project-card .tag {
  background: #111; /* black pill */
  border: 1px solid #333;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  width: max-content; /* force width to content */
  margin-left: auto; /* center horizontally */
  margin-right: auto; /* center horizontally */
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  padding: 0.4rem 0.8rem;
}

/* Equal height for SaaS cards (last section grid) */
.saas-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
  /* Default to single column; override to 2 columns on desktop */
  grid-template-columns: 1fr;
}
.saas-grid .card-wrapper {
  height: 100%;
  display: flex;
}
.saas-grid .project-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.saas-grid .project-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.saas-grid .card-description {
  margin-top: 2rem;
}

/* Force 2 columns on desktop and allow a full-width row item */
@media (min-width: 900px) {
  .saas-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
  .saas-grid .card-wrapper.full-row {
    grid-column: 1 / -1;
  }
}

/* Mobile tweaks: ensure SaaS cards don't overflow horizontally */
@media (max-width: 600px) {
  .saas-grid {
    width: 100%;
    padding: 1rem; /* reduce grid padding to avoid viewport overflow */
    gap: 1.25rem;
    box-sizing: border-box;
  }
  .saas-grid .project-card {
    padding: 1.25rem; /* slightly tighter card padding on phones */
    box-sizing: border-box;
  }
  /* Make non-SaaS project grids match SaaS spacing on phones */
  .project-grid {
    width: 100%;
    padding: 1rem;
    gap: 1.25rem;
    box-sizing: border-box;
  }
  .project-grid .project-card {
    padding: 1.25rem;
    box-sizing: border-box;
  }
  /* Add comfortable side padding for the Foundation intro paragraph only on phones */
  .section-2 .project-intro {
    padding: 0 1.25rem; /* ~20px */
  }
  /* Ensure last Bankist card has breathing room below on small screens */
  .section-2 .project-grid.saas-grid .card-wrapper:last-child {
    margin-bottom: 3.5rem;
  }
}

.card-description {
  color: #bbb !important;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 2rem;
  text-align: left;
}

.project-intro {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.6;
  margin: 1rem auto 2rem;
  max-width: 800px;
  text-align: center;
}
.footer-desktop {
  display: block;
}

.footer-mobile {
  display: none;
}
@media (max-width: 768px) {
  .footer-desktop {
    display: none;
  }

  .footer-mobile {
    display: block;
  }
  .footer-mobile .footer-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-mobile .footer-left {
    margin-bottom: 10px;
  }

  .footer-mobile .footer-right {
    justify-content: center;
  }

  .footer-mobile .footer-separator {
    background-color: #333;
    height: 1px;
    margin: 10px auto;
    width: 80%;
  }
}
.footer {
  background-color: #000;
  border-top: 1px solid #333;
  color: #fff;
  font-size: 14px;
  padding: 20px 40px;
  width: 100%;
}

.footer-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
}

.footer-left p {
  color: #bbb;
  font-size: 14px;
  margin: 0;
  text-align: center;
}

.footer-right {
  align-items: center;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icon {
  color: #fff;
  font-size: 24px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: #c12525;
  transform: scale(1.2);
}
.footer-mobile {
  background-color: #000;
  border-top: 1px solid #333;
  color: #fff;
  font-size: 14px;
  height: fit-content;
  padding: 20px 15px;
  width: 100%;
}

.footer-mobile .footer-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.footer-mobile .footer-left {
  margin: 0;
}

.footer-mobile .footer-separator {
  background-color: #333;
  height: 1px;
  margin: 5px 0;
  width: 80%;
}

.footer-mobile .footer-right {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.footer-mobile .social-icon {
  color: #fff;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-mobile .social-icon:hover {
  color: #c12525;
  transform: scale(1.2);
}
body {
  padding: 0;
}

.footer-mobile,
body {
  margin: 0;
}
.spinner {
  animation: spin 0.8s linear infinite;
  border: 3px solid #eee;
  border-radius: 50%;
  border-top-color: #333;
  display: inline-block;
  height: 18px;
  margin-right: 10px;
  vertical-align: middle;
  width: 18px;
}
@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}
