/* ===== Base Styles ===== */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0e0e0e;
  color: #f1f1f1;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  color: #00bcd4;
  text-decoration: none;
}
a:hover {
  color: #ffffff;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

.section {
  padding: 4rem 0;
  border-bottom: 1px solid #222;
}

h1, h2, h3 {
  color: #ffffff;
}

/* ===== Navbar ===== */
.navbar {
  background: #1a1a1a;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links li a {
  font-weight: 600;
  transition: color 0.3s ease;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(145deg, #121212, #1f1f1f);
  text-align: center;
  padding: 6rem 2rem;
}
.hero .highlight {
  color: #00bcd4;
}
.hero .btn {
  display: inline-block;
  margin-top: 1rem;
  background: #00bcd4;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.hero .btn:hover {
  background: #00a2b8;
}

/* ===== Skills List ===== */
.skills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
}
.skills li {
  background: #222;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

/* ===== Projects ===== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.project-card {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}
.project-card:hover {
  transform: scale(1.02);
}
.project-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* ===== Resume ===== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.timeline-item {
  background: #1f1f1f;
  padding: 1rem;
  border-left: 4px solid #00bcd4;
  border-radius: 5px;
}
.timeline-item .date {
  font-size: 0.9rem;
  color: #bbb;
}

/* ===== Contact ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  background: #222;
  color: #f1f1f1;
  font-size: 1rem;
}
.contact-form button {
  background: #00bcd4;
  color: #000;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
.contact-form button:hover {
  background: #00a2b8;
}

.social-links {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ===== Scroll Animation ===== */
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.hero {
  background: url('soleeddev-logo.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 50vh;
  padding: 6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

