:root {
  --primary: #131173;
  --secondary: #de208a;
  --accent: #6b7280;
}

*{
  line-height: 1.5 !important;
}

html {
  scroll-behavior: smooth !important;
}

body {
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

.hero-section {
  padding-top: 5rem; /* pt-20 (20 * 0.25rem = 5rem) */

  /* Responsive padding for md:pt-8 */
  @media (min-width: 769px) {
    padding-top: 2rem; /* pt-8 = 8 * 0.25rem = 2rem */
  }

  min-height: 100vh; /* min-h-screen */

  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  /* 4xl:min-h-fit */
  @media (min-width: 1921px) {
    min-height: fit-content;
  }
}

.hero-section-box {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 10;

  @media (min-width: 641px) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  @media (min-width: 1025px) {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}


.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 640px) {
  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.primary-btn {
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif !important;
  line-height: 1.5;
}

.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.primary-btn:hover::before {
  left: 100%;
}

.primary-btn:hover {
  background-color: #07055a;
  transform: translateY(-2px);
}

/* Responsive text */
.description-text {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  color: #6b7280;
  line-height: 1.5;
  font-size: 14px;

}

@media (min-width: 640px) {
  .description-text {
    font-size: 14px;

  }
}

@media (min-width: 1024px) {
  .description-text {
    font-size: 16px;

  }
}

@media (min-width: 1280px) {
  .description-text {
    font-size: 18px;
  }
}

.small-heading {
  color: black;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.big-heading {
  font-weight: 700;
  font-size: 1.5rem; /* base: ~24px */
}

@media (min-width: 640px) { /* sm */
  .big-heading {
    font-size: 1.875rem; /* 30px */
  }
}

@media (min-width: 769px) { /* md */
  .big-heading {
    font-size: 2rem; /* 36px */
  }
}

@media (min-width: 1025px) { /* md */
  .big-heading {
    font-size: 2.25rem; /* 36px */
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 9999;
  transition: width 0.1s ease;
}

#navbar .active{
  color: var(--primary) !important;
}

footer .active {
  font-weight: 600 !important;
}

.hero-heading{
  line-height: 2rem !important;

  @media (min-width: 767px) {
    line-height: 3rem !important;
  }
}

#navbar, footer{
  font-family: "Inter", sans-serif !important;
} 
  .skeleton-overlay {
    @apply absolute inset-0 bg-gray-200 animate-pulse rounded-md;
  }

  .skeleton-fade {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  .skeleton-fade.loaded {
    opacity: 1;
  }

  .tech-tag {
    background-color: #FFEEE7; /* Tailwind's bg-orange-100 */
    color: #DE4E10;           /* Tailwind's text-orange-800 */
    padding: 0.25rem 0.5rem;  /* py-1 px-2 → 4px top/bottom, 8px left/right */
    border-radius: 0.25rem;   /* Tailwind's rounded → 4px */
    font-size: 0.75rem;       /* Tailwind's text-xs → 12px */
    line-height: 1rem;        /* 16px line height (Tailwind default for text-xs) */
    display: inline-block;    /* optional: makes it behave like a tag */
    transition: all 0.3s ease-in;
  }

  .tech-tag:hover{
    background-color: orange;
    color: white;
  }

  .tech-stack {
    background-color: #EAF7FF; /* Tailwind's bg-orange-100 */
    color: #1DA1F3;           /* Tailwind's text-orange-800 */
    padding: 0.25rem 0.5rem;  /* py-1 px-2 → 4px top/bottom, 8px left/right */
    border-radius: 0.25rem;   /* Tailwind's rounded → 4px */
    font-size: 0.75rem;       /* Tailwind's text-xs → 12px */
    line-height: 1rem;        /* 16px line height (Tailwind default for text-xs) */
    display: inline-block;    /* optional: makes it behave like a tag */
    transition: all 0.3s ease-in;

  }
  
  .tech-stack:hover{
    background-color: #008fe7;
    color: white;
  }

  /* Hamburger Icon Styles */
.hamburger-btn {
  padding: 10px;
  border-radius: 8px;
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-icon {
  width: 20px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Cross Animation */
.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}