/* 🧼 RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🌍 BASE BODY STYLE */
body {
  font-family: "Sour Gummy", sans-serif;
  background-color: #10141C;
  color: #fff;
  line-height: 1.6;
}

/* 📦 CONTAINER */
.container {
  padding: 80px;
  max-width: 1280px;
  margin: 0 auto;
}

/* 🔝 TAB BAR */
.tab-bar {
  background-color: #E2B4EF;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.tab-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 1rem 0;
  position: relative;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: #10141C;
  font-weight: 500;
  padding: 8px 16px;
  transition: background 0.2s ease;
}

.connect-btn {
  border: 2px solid #10141C;
  border-radius: 20px;
}

/* 🍔 HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.hamburger span {
  background: #10141C;
  height: 3px;
  border-radius: 2px;
  width: 100%;
}

@media (max-width: 768px) {
  .tab-content {
    flex-direction: row;
    align-items: center;
    padding: 0 24px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #E2B4EF;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    padding: 20px;
    gap: 16px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }
}

/* 👩‍🎨 BIO SECTION */
.about-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.bio-image {
  flex: 1 1 250px;
  max-width: 300px;
}

.bio-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.bio-info {
  flex: 2;
}

.bio-info h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #FFE3BB;
}

.bio-line {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.1rem;
  gap: 10px;
}

.bio-line i {
  color: #E2B4EF;
}

/* ⏲️ TIME STYLE */
#live-time {
  font-family: monospace;
}

/* 📦 GRID SECTIONS FOR CARDS */
.info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

/* 🃏 CARDS STYLE */
.card {
  background: #272727;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Experience card */
.experience-list {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 1.6;
}

.experience-list li {
  margin-bottom: 16px;
}

.experience-list .year {
  font-weight: normal;
  opacity: 0.7;
  margin-left: 8px;
}

.exp-title {
  color: #FFE3BB; /* Light peach */
}

.exp-year {
  color: #6c6c6c; /* Soft purple */
  font-weight: normal;
  margin-left: 8px;
  opacity: 0.9;
}

.exp-desc {
  color: #CCCCCC; /* Light gray for body text */
  display: inline-block;
  margin-top: 4px;
}

/* 🔧 TOOLS + SKILLS POSITIONING */
.right-grid {
  display: grid;
  grid-template-rows: auto auto;
  gap: 24px;
}

.card h2 {
  margin-bottom: 16px;
  color: #E2B4EF;
}

/* TOOLS ICONS */
.tools-card h3 {
  font-size: 1.5rem;
  color: #E2B4EF; /* Same purple */
  margin-bottom: 16px;
}

.tools-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr)); /* Responsive 3+ columns */
  gap: 24px;
  justify-items: center;
  align-items: center;
  padding: 20px 0;
}

.tools-icons img {
  height: 48px;                /* Set fixed height */
  width: auto;                 /* Width auto so image maintains ratio */
  transition: transform 0.3s ease;
  cursor: default;
}

.tools-icons img:hover {
  transform: scale(1.1);       /* Subtle zoom on hover */
}

/* Responsive: 2 columns on smaller screens */
@media (max-width: 600px) {
  .tools-icons {
    grid-template-columns: repeat(2, 1fr); /* ✅ 2 Columns */
    gap: 20px;
    padding: 12px 0;
  }

  .tools-icons img {
    width: 40px;
    height: 40px;
  }
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}


/* SKILL */
.skills {
  margin-top: 20px;
}

.skills-title {
  font-size: 1.25rem;
  color: #E2B4EF;
  font-weight: 600;
  margin-bottom: 12px;
}

.skills-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background-color: #272727;
  color: #fff;
  border: 2px solid #E2B4EF;
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}
