/* Main CSS - Responsive Portfolio */

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

h2, h3, h5 {
  font-weight: 600;
}
h3{
	font-size: 25px;
}
a {
  text-decoration: none;
  color: #000;
}

a:hover {
  color: #FF000C;
}

/* Header */
.header {
  background: linear-gradient(to right, #000000, #FF000C);
  color: #fff;
}

.header .sitename {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.social-links a {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0.5rem;
  transition: 0.3s;
}

.social-links a:hover {
  color: #C9D291;
}

/* Navigation */
.navmenu a {
  display: inline-block;
  margin: 0 1rem;
  font-weight: 500;
  color: #333;
}

.navmenu a:hover {
  color: #EC6233;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #000000, #FF000C);
  color: #fff;
}

.typed {
  font-weight: 500;
  color: #fff;
}

/* About Section */
.about ul {
  padding-left: 0;
  list-style: none;
}

.about ul li {
  padding: 5px 0;
  border-bottom: 1px solid #eaeaea;
}

/* Portfolio */
.portfolio .card {
  border: none;
  transition: transform 0.3s;
}

.portfolio .card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  font-size: 0.9rem;
}

/* Scroll Top */
#scroll-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .navmenu a {
    display: block;
    margin: 0.5rem 0;
  }
}
.nav-tabs .nav-link {
  font-weight: 600;
  color: #333;
}

.nav-tabs .nav-link.active {
  color: #EC6233;
  border-color: #EC6233 #EC6233 #fff;
}
/* Hide default cursor */
* {
  cursor: none;
}

/* Cursor base */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}

/* Large circle */
.cursor--large {
  width: 32px;
  height: 32px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: transform 0.15s ease-out;
}

/* Small dot */
.cursor--small {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

/* Hover effect (links, buttons) */
a:hover ~ .cursor--large,
button:hover ~ .cursor--large {
  transform: translate(-50%, -50%) scale(1.5);
}


