.panel {
  background-color: #211726;
  border: 1px solid #3C2A45;  
  border-radius: 12px;
  color: #C9A87C;
  padding: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  box-shadow: 0 0 20px rgba(255,255,255,0.03);
}

/* --- Hero Section --- */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

.hero img {
  max-width: 250px;
  border-radius: 8px;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

/* --- Hero Body --- */
.hero-body {
  background-color: #1A1124;
  border-left: 3px solid #F29422;
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  margin-top: 0.75rem;
}

.hero-body p {
  margin: 0 0 0.85rem 0;
}

.hero-body p:last-child {
  margin-bottom: 0;
}

/* --- Global --- */
html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0E0A1A, #3C2A45);
  /*background: linear-gradient(135deg, #0E0A1A, #3C2A45, #C86B46);*/
  /*background-color: #0E0A1A;*/
  /*background-image: url("/static/img/Background.png");*/
  background-repeat: repeat;
  background-size: cover; /* or 'cover' or 'auto' depending on the look you want */
  background-attachment: fixed; /* Optional: keeps it static on scroll */
  background-color: #0E0A1A; /* fallback color (Charcoal Night) */
  color: #F4B76D; /* Optional: temp text color for readability */
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3 {
  color: #F4B76D;
  font-family: 'Space Grotesk', sans-serif;
  margin-top: 1.5rem;
}

img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 1rem auto;
}

a {
  color: #F29422;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* --- Navbar --- */
.navbar {
  padding: 0.5rem 2rem;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  /*padding: 0.25rem 1rem;*/
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 1 auto;
}

.nav-links a {
  text-decoration: none;
  border-radius: 6px;
}

.nav-logo {
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img { 
  display: block;
  height: 65px;
  width: auto;
  display: block;
}

.navbar a {
  color: #F4B76D;
  text-decoration: none;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.navbar a:hover,
.navbar a.active {
  background-color: #7F618C;
}

/* --- Resume --- */
.resume-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.resume-header h1 {
  margin: 0;
}

.btn-download {
  display: inline-block;
  background-color: #C86B46;
  color: #0E0A1A;
  font-weight: 700;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.btn-download:hover {
  background-color: #F4B76D;
  text-decoration: none;
}

.resume-embed {
  width: 100%;
  height: 80vh;
  min-height: 600px;
  border: 1px solid #3C2A45;
  border-radius: 8px;
}

/* --- Contact --- */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 3px solid #F29422;
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.85rem 1.5rem;
  background-color: #1A1124;
  border-bottom: 1px solid #3C2A45;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-label {
  font-weight: 700;
  color: #F4B76D;
  min-width: 60px;
  font-family: 'Space Grotesk', sans-serif;
}

/* --- Footer --- */
.footer {
  color: #7F618C;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  border-radius: 12px;
}

/* --- Container --- */
.container {
  width: 100%;
}

/* --- Project Cards --- */
.projects-intro {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.project-card {
  border-left: 3px solid #F29422;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  background-color: #1A1124;
  border-radius: 0 8px 8px 0;
}

.project-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.project-header h2 {
  margin-top: 0;
}

.project-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #7F618C;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.project-stack {
  font-size: 0.85rem;
  color: #7F618C;
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}
