/* Base */

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Lato", sans-serif;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #2c3e50, #111827);
  color: #f0f0f0;
}

/* Layout wrapper */

.page-wrapper {
  max-width: 960px;
}

/* Hero / profile card */

.profile-card {
  background: rgba(31, 41, 55, 0.95);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

.name-heading {
  font-size: 2.1rem;
  font-weight: 700;
}

.role {
  font-size: 1rem;
  font-weight: 400;
  color: #e5e7eb;
  opacity: 0.9;
}

.intro-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #e5e7eb;
}

.availability {
  font-weight: 400;
  color: #a5b4fc;
}

.emoji {
  font-size: 1.2em;
  vertical-align: middle;
  margin-right: 6px;
}

/* Skills tags */

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

@media (min-width: 768px) {
  .skills-tags {
    justify-content: flex-start;
  }
}

.tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(6px);
}

/* Projects */

.projects-header p {
  font-size: 0.95rem;
  color: #cbd5f5;
}

.project-card {
  background: rgba(17, 24, 39, 0.92);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(75, 85, 99, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background 0.2s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  border-color: #38bdf8;
  background: rgba(15, 23, 42, 0.98);
}

.project-type {
  font-size: 0.85rem;
  color: #9ca3af;
}

.project-description {
  font-size: 0.95rem;
  color: #e5e7eb;
}

/* Contact section */

.contact-section {
  background: rgba(17, 24, 39, 0.96);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.contact-email-link {
  color: #38bdf8;
  text-decoration: none;
}

.contact-email-link:hover {
  text-decoration: underline;
}

/* Override Bootstrap primary button a bit to fit theme */

.btn-primary {
  background-color: #38bdf8;
  border-color: #38bdf8;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #0ea5e9;
  border-color: #0ea5e9;
}

/* Make text light on dark cards */
.profile-card .card-body,
.project-card .card-body,
.contact-section .card-body {
  color: #f9fafb;
}

/* Headings in dark sections */
.profile-card .name-heading,
.profile-card .role,
.projects-header h2 {
  color: #f9fafb;
}

/* Subtext in sections */
.projects-header p,
.project-type,
.project-description {
  color: #e5e7eb;
}

/* Link inside "Currently available..." line if you ever add one */
.profile-card a {
  color: #60a5fa;
  text-decoration: none;
}
.profile-card a:hover {
  text-decoration: underline;
}

/* Footer */

.footer-text {
  color: #d1d5db;
}

.social-icons a {
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
  color: #38bdf8 !important;
  transform: translateY(-1px) scale(1.05);
}
