@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

/* =====================
   RESET + BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(45deg, #6df5ff, #f5d33b);
  color: #222;
  line-height: 1.6;
}

p {
  color: #555;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =====================
   NAVIGATION
===================== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 10%;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.nav-links a:hover {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 0.4rem;
}

.logo {
  font-size: 1.6rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
}

/* =====================
   HERO
===================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  min-height: 80vh;
  padding: 6rem 10%;
  text-align: center;
}

/* Left side (image) */
.hero-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Right side (text block) */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Ensure buttons + socials are centered */
.btn-container,
.socials {
  justify-content: center;
}

.profile-pic {
  width: 320px;
  border-radius: 2rem;
}

.title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.subtitle {
  font-weight: 600;
  color: #444;
}

.description {
  max-width: 500px;
  margin-bottom: 2rem;
}

/* =====================
   BUTTONS
===================== */
.btn-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

button,
.button {
  padding: 0.9rem 1.4rem;
  border-radius: 2rem;
  border: 1px solid #333;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover {
  background: #000;
  color: #fff;
}

/* =====================
   SOCIALS
===================== */
.socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
  align-items: center;
}

/* Proper social icon sizing */
.socials img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  padding: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}

.socials img:hover,
.icon:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.05);
}

/* =====================
   SECTIONS
===================== */
.section {
  padding: 5rem 12%;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

/* =====================
   CARDS (ABOUT)
===================== */
.cards {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  flex: 1;
  background: rgba(255, 255, 255, 0.6);
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid #bbb;
}

/* =====================
   EXPERIENCE TIMELINE
===================== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.job {
  background: rgba(255, 255, 255, 0.6);
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid #bbb;
}

.job h3 {
  margin-bottom: 0.3rem;
}

.job span {
  font-size: 0.9rem;
  color: #666;
}

.job ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

/* =====================
   PROJECTS
===================== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: rgba(255, 255, 255, 0.6);
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid #bbb;
  transition: transform 0.2s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

/* =====================
   CONTACT
===================== */
#contact a {
  color: #000;
  font-weight: 600;
}

/* =====================
   FOOTER
===================== */
footer {
  text-align: center;
  padding: 3rem;
  color: #333;
}

/* =====================
   MOBILE MENU (basic fix)
===================== */
#hamburger-nav {
  display: none;
}