/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --primary: #1e3a8a; 
  --accent: #14b8a6;    /* Vibrant teal */
  --bg-dark: #1f2937;   /* Darker background (near black-blue) */
  --bg-light: #374151;  /* Softer dark (for cards/sections) */
  --text-light: #f3f4f6; /* Soft white for text */
  --text-muted: #9ca3af; /* Muted gray for secondary text */
  --card-bg: #2d3748;   /* Dark slate for cards */
  --border-color: #4b5563; /* Subtle border color */
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Stronger, moodier shadow */

}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-light);
  line-height: 1.6;
}

/* Header */
header {
  background-color: var(--primary);
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

header h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

header p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

/* Layout container */
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  gap: 2rem;
}

/* Project list (left side) */
.projects {
  flex: 2;
  min-width: 300px;
}

.projects h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.25rem;
}

.project-card {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-left: 5px solid var(--accent);
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.project-card h3 {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.project-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.project-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

/* Sidebar profile (right side) */
.profile {
  flex: 1;
  min-width: 250px;
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: fit-content;
}

.profile h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.profile p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.profile a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.profile-pic {
  width: 180px;
  height: 180px;
  object-fit: cover;
  display: block;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--primary);
  color: white;
  font-size: 0.95rem;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}
