@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

.instrument-serif-regular {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.instrument-serif-regular-italic {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* Base Styles */
body {
  background-color: white;
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 20px;
  overflow-x: hidden;
}

/* Navigation Bar - Mobile First */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  flex-wrap: wrap;
}

.navbar-left {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.logo {
  width: 20px;
  height: 20px;
  background-color: #ff9900;
  border-radius: 50%;
  margin-right: 10px;
}

.name-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.title {
  font-size: 12px;
  color: #777;
  margin: 0;
}

.navbar-right {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.name-title a {
  text-decoration: none;
}

.name-title a:hover {
  text-decoration: none;
}

.navbar-right li {
  position: relative;
}

.navbar-right li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -10px;
  color: #777;
}

.navbar-right a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: bold;
}

.navbar-right a:hover {
  color: #ff9900;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-menu .bar {
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 10px;
  transition: 0.3s;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.3s ease;
}

.mobile-nav-content {
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.mobile-logo {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.close-menu {
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 5px;
}

.close-menu:hover {
  color: #ff9900;
}

.mobile-nav-links {
  list-style: none;
  padding: 40px 0;
  margin: 0;
  flex-grow: 1;
}

.mobile-nav-links li {
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(10px);
  animation: slideIn 0.4s ease forwards;
}

.mobile-nav-links li:nth-child(1) {
  animation-delay: 0.1s;
}

.mobile-nav-links li:nth-child(2) {
  animation-delay: 0.2s;
}

.mobile-nav-links li:nth-child(3) {
  animation-delay: 0.3s;
}

.mobile-nav-links li:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav-links a {
  display: block;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
}

.mobile-nav-links a:hover {
  color: #ff9900;
  border-bottom: 2px solid #ff9900;
}

.mobile-nav-footer {
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.mobile-social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.mobile-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #f5f5f5;
  border-radius: 50%;
  color: #333;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-social-link:hover {
  background-color: #ff9900;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger-menu {
    display: flex;
    margin-right: 15px;
  }

  .navbar-left {
    margin-left: 15px;
  }

  .navbar-right {
    display: none;
  }

  /* Hide the separator lines in mobile */
  .navbar-right li:not(:last-child)::after {
    display: none;
  }
}

/* Desktop Styles */
@media (min-width: 769px) {
  .mobile-nav-overlay {
    display: none !important;
  }

  .hamburger-menu {
    display: none !important;
  }

  .desktop-nav {
    display: flex !important;
  }
}

/* Animation for hamburger to X */
.hamburger-menu.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Hero Section */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}

.hero-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 30px;
}

.text-and-circles {
  margin-top: 20px;
  width: 100%;
}

.section-text {
  text-align: center;
  padding-left: 27px;
  margin-bottom: 30px;
}

.heading {
  color: #79716b;
  margin-bottom: 3px;
  padding-left: 0;
  font-size: 16px;
}

h2 {
  color: black;
  font-size: 28px;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

p {
  color: black;
  font-size: 16px;
  margin: 0 0 20px 0;
  line-height: 1.5;
  padding: 0 15px;
}

.circles {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

#circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid black;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.circle1 {
  background-color: #ff9900;
}

.circle1:hover {
  background-color: white;
}

.circle2 {
  background-color: #ff3b25;
}

.circle2:hover {
  background-color: white;
}

.circle3 {
  background-color: #80d8da;
}

.circle3:hover {
  background-color: white;
}

.circles a {
  text-decoration: none;
  display: flex;
}

/* Simple Projects Section */
.projects-section-simple {
  padding: 50px 15px;
  max-width: 100%;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* Grayed out coming soon card */
.project-card-simple.coming-soon {
  opacity: 0.8;
  filter: grayscale(20%);
}

.coming-soon-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 153, 0, 0.9);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
  z-index: 2;
}

.coming-soon-btn {
  background-color: #ccc !important;
  color: #666 !important;
  cursor: not-allowed !important;
  border: none !important;
}

.coming-soon-btn:hover {
  transform: none !important;
  box-shadow: none !important;
}

.project-card-simple {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project-card-simple.proj1:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px #ff9900;
}

.project-card-simple.proj2:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px #ff3b25;
}

.project-card-simple.proj3:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px #80d8da;
}

.project-card-simple.proj4:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px #4caf50;
}

.project-image {
  height: 180px;
  background: #f7f6f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-content {
  padding: 20px;
}

.project-title-simple {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.project-description-simple {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 15px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.tech-tag {
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  color: #555;
}

.project-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.project-link {
  padding: 8px 16px;
  background: #ff9900;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.3s ease;
}

.project-link:hover {
  background: #e68900;
}

.project-link.github {
  background: #333;
}

.project-link.github:hover {
  background: #555;
}

.subtitle {
  text-align: center;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 20px;
  margin-bottom: 10px;
}

.title {
  text-align: center;
  font-size: 28px;
  margin-top: 10px;
  color: black;
  padding: 0 15px;
}

/* About Section */
.about-section {
  padding: 50px 15px;
}

.about-text {
  max-width: 100%;
  margin: 20px auto 30px auto;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  padding: 0 15px;
}

.image-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.about-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about-images img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.rotate1 {
  transform: rotate(5deg);
}

.rotate2 {
  margin-top: 10px;
}

.rotate3 {
  transform: rotate(-5deg);
}

.about-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

#hover-tooltip {
  position: absolute;
  padding: 8px 12px;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 14px;
  border-radius: 8px;
  pointer-events: none;
  white-space: nowrap;
  transform: translate(-50%, -120%);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1000;
}

/* Section Wrapper */
.skills-section {
  background-color: #000;
  padding: 6rem 1.5rem;
  color: #fff;
}

/* Content Container */
.skills-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow Text */
.skills-eyebrow {
  font-style: italic;
  font-size: 0.95rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

/* Main Heading */
.skills-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 3rem;
}

/* Skills Grid */
.skills-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Individual Skill Pill */
.skill-pill {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e5e7eb;
  white-space: nowrap;
  transition: all 0.25s ease;
}

/* Hover State */
.skill-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .skill-pill {
    font-size: 0.85rem;
    padding: 0.5rem 0.85rem;
  }
}

/* Skills Section */
.skills-section {
  padding: 60px 15px;
  background-color: #fff;
}

.skills-container {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

/* Skills list */
.skills-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Skill pill – light, soft, editorial */
.skill-pill {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  border-radius: 7px;
  background-color: #f7f6f2;
  color: #333;
  border: 1px solid #e6e4de;
  white-space: nowrap;
  transition: all 0.25s ease;
}

/* Hover interaction – matches your buttons & cards */
.skill-pill:hover {
  background-color: #ff3b25;
  color: #fff;
  border-color: #000;
  border-width: 1.5px;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 153, 0, 0.25);
}

/* Slight emphasis for "+ More" */
.skill-pill:last-child {
  font-weight: 600;
  background-color: #fff;
  border-style: dashed;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .skill-pill {
    font-size: 13px;
    padding: 7px 14px;
  }
}

/* Education Section */
.education {
  padding: 50px 15px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.timeline {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0 40px 0;
  flex-wrap: wrap;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 2px;
  background-color: #e0e0e0;
  z-index: 1;
}

.timeline-year {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  background-color: white;
  z-index: 2;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
}

.timeline-year:hover {
  color: #000;
  border-color: #ff3b25;
}

.timeline-year.active {
  color: white;
  background-color: #ff3b25;
  border-color: #ff3b25;
  transform: scale(1.1);
  box-shadow: 0 0 15px #ff9900;
}

.education-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.education-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.education-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.education-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #ff9900, #ff3b25);
  border-radius: 5px 0 0 5px;
}

.education-degree {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.education-school {
  font-size: 16px;
  color: #666;
  margin-bottom: 5px;
}

.education-dates {
  font-size: 14px;
  color: #888;
  font-style: italic;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.education-item {
  padding: 15px 0;
}

.education-degree {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.education-school {
  font-size: 16px;
  color: #666;
  margin-bottom: 5px;
}

.education-dates {
  font-size: 14px;
  color: #888;
  font-style: italic;
}

/* Connect CTA Section */
.connect-cta {
  padding: 50px 15px 40px 15px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid #eee;
}

.connect-cta .title {
  font-size: 28px;
  margin-bottom: 40px;
  color: #333;
  line-height: 1.3;
  padding: 0 15px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 100%;
  margin: 0 auto 40px auto;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px;
  border: #000 dotted 3px;
  border-radius: 15px;
  gap: 8px;
}

.contact-item:hover {
  background-color: #ff9900;
}

.contact-label {
  font-size: 16px;
  color: #666;
  font-weight: 500;
  text-align: left;
  width: 100%;
}

.contact-value {
  font-size: 16px;
  color: #333;
  text-align: left;
  width: 100%;
  word-break: break-all;
}

.contact-value.link {
  color: #ff9900;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-right: 20px;
}

.contact-value.link:hover {
  color: #fff;
}

.contact-value.link::after {
  content: "↗";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 14px;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.contact-value.link:hover::after {
  transform: translate(2px, -2px);
}

.contact-value.resume-btn {
  background: #ff9900;
  border: 2px solid #ff9900;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  margin-top: 10px;
}

.contact-value.resume-btn:hover {
  background-color: #ff9900;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 153, 0, 0.2);
}

.copyright-notice {
  font-size: 14px;
  color: #888;
  padding-top: 30px;
  border-top: 1px solid #eee;
  margin-top: 20px;
  letter-spacing: 0.5px;
}

/* Footer */
.footer-basic {
  padding: 30px 15px;
  background-color: #ffffff;
  color: #4b4c4d;
  margin-top: 50px;
}

.footer-basic ul {
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-basic li {
  padding: 0 8px;
  display: inline-block;
}

.footer-basic ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.footer-basic ul a:hover {
  opacity: 1;
}

.footer-basic .social {
  text-align: center;
  padding-bottom: 20px;
}

.footer-basic .social > a {
  font-size: 20px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin: 0 6px;
  color: inherit;
  opacity: 0.75;
}

.footer-basic .social > a:hover {
  opacity: 0.9;
}

.footer-basic .copyright {
  margin-top: 15px;
  text-align: center;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 0;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-card,
.about-content,
.container {
  animation: fadeInUp 0.6s ease-out;
}

/* Tablet Styles */
@media (min-width: 768px) {
  body {
    padding: 30px;
  }

  .navbar {
    padding: 15px 0;
  }

  .navbar-left {
    margin-left: 0;
  }

  .navbar-right {
    margin-right: 0;
    gap: 20px;
  }

  .navbar-right li:not(:last-child)::after {
    right: -15px;
  }

  .navbar-right a {
    font-size: 16px;
  }

  .container {
    flex-direction: row;
    text-align: left;
    padding: 40px 0;
  }

  .hero-image {
    width: 300px;
    height: 300px;
    margin: 0 0 0 50px;
  }

  .text-and-circles {
    margin-left: 30px;
    margin-top: 0;
  }

  .section-text {
    text-align: left;
    margin-left: 0;
  }

  .heading {
    font-size: 18px;
    padding-left: 2px;
  }

  h2 {
    font-size: 36px;
  }

  p {
    font-size: 17px;
    padding: 0;
  }

  .circles {
    justify-content: flex-start;
    margin-left: 25px;
  }

  #circle {
    width: 100px;
    height: 100px;
    font-size: 16px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .about-images img {
    width: 180px;
    height: 180px;
  }

  .about-text {
    max-width: 700px;
    font-size: 17px;
  }

  .contact-item {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .contact-label {
    min-width: 120px;
    font-size: 17px;
  }

  .contact-value {
    text-align: right;
    font-size: 17px;
  }

  .contact-value.resume-btn {
    width: auto;
    margin-left: auto;
  }

  .timeline {
    gap: 30px;
  }

  .timeline-year {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  body {
    padding: 20px;
  }

  .navbar-left {
    margin-left: 200px;
  }

  .navbar-right {
    margin-right: 70px;
  }

  .hero-image {
    width: 400px;
    height: 400px;
    margin-left: 100px;
  }

  .text-and-circles {
    margin-top: 70px;
  }

  .projects-section-simple {
    max-width: 850px;
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .about-text {
    max-width: 800px;
    font-size: 18px;
  }

  .about-images {
    gap: 50px;
  }

  .about-images img {
    width: 200px;
    height: 200px;
  }

  .education {
    max-width: 800px;
  }

  .connect-cta {
    max-width: 800px;
  }

  .contact-item {
    justify-content: space-between;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Fix for timeline on very small screens */
@media (max-width: 480px) {
  .timeline::before {
    display: none;
  }

  .timeline {
    gap: 10px;
  }

  .timeline-year {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }

  .project-image {
    height: 150px;
  }

  #circle {
    width: 70px;
    height: 70px;
    font-size: 12px;
  }

  h2 {
    font-size: 24px;
  }

  .title {
    font-size: 24px;
  }

  .subtitle {
    font-size: 18px;
  }
}

/* ============================
   Dark Mode Toggle Button
============================ */
#theme-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease, transform 0.2s ease;
}

#theme-toggle:hover {
  transform: translateY(-2px);
}

#theme-toggle i {
  font-size: 18px;
}

/* ============================
   Dark Theme Overrides
============================ */
body.dark {
  background-color: #0e0e0e;
  color: #e5e5e5;
}

/* Text */
body.dark h1,
body.dark h2,
body.dark h3,
body.dark p,
body.dark .title,
body.dark .subtitle {
  color: #e5e5e5;
}

/* Navbar */
body.dark .navbar,
body.dark .mobile-nav-overlay {
  background-color: #0e0e0e;
}

body.dark .navbar-right a,
body.dark .name,
body.dark .mobile-nav-links a {
  color: #e5e5e5;
}

/* Cards */
body.dark .project-card-simple,
body.dark .education-card,
body.dark .contact-item {
  background-color: #151515;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Pills / tags */
body.dark .tech-tag,
body.dark .skill-pill {
  background-color: #1f1f1f;
  color: #ddd;
  border-color: #333;
}

/* Sections */
body.dark .skills-section {
  background-color: #0e0e0e;
}

/* Buttons & links */
body.dark .project-link.github {
  background-color: #222;
}

body.dark .project-link {
  background-color: #ff9900;
  color: #000;
}

/* Tooltip */
body.dark #hover-tooltip {
  background-color: #222;
}

/* Toggle icon change */
body.dark #theme-toggle {
  background: #fff;
  color: #000;
}
