:root {
  --primary: #0d6efd;
  --dark: #0f172a;
  --light: #f8fafc;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f4f6fb;
  color: var(--dark);
}

.site-header {
  background: linear-gradient(135deg, #0d6efd, #1154d4);
}

.hero-content {
  padding-bottom: 0;
}

.hero-logo {
  width: 52px;
  height: 52px;
  font-size: 1rem;
  font-weight: 700;
}

.letter-spacing {
  letter-spacing: 0.2em;
}

.hero-card ul {
  padding-left: 0;
  margin-bottom: 0;
}

.hero-card li span {
  font-size: 0.95rem;
}

.hero-card a {
  color: var(--primary);
  font-weight: 600;
}

.section-heading h2 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-heading p {
  color: #5b616d;
  margin-bottom: 0;
}

.about-section, .mission-section, .contact-section, .portfolio-grid, .resume-section, .skills-section, .references {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  margin-top: 2rem;
}

.mission-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.contact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.15);
}

.site-footer {
  background: #050a14;
}

.portfolio-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.12);
}

.portfolio-media {
  height: 130px;
  border-radius: 1rem;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent), linear-gradient(135deg, #0d6efd, #6c757d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.resume-card {
  border-left: 4px solid var(--primary);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.resume-card h3 {
  margin-top: 0;
}

.resume-card ul {
  padding-left: 1rem;
  margin-bottom: 0;
}

.resume-card ul li {
  margin-bottom: 0.35rem;
}

.resume-grid article {
  margin-bottom: 1.5rem;
}

.resume-section .section-title {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.skills-section .progress {
  height: 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
}

.references-grid article {
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px solid #e4e7ec;
  padding: 1rem;
  text-align: center;
  height: 100%;
}

.reference-card h3 {
  margin-bottom: 0.5rem;
}

.portfolio-hero, .resume-hero {
  margin-top: 2rem;
  background: linear-gradient(135deg, #0b5ed7, #6610f2);
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.2);
}

.portfolio-hero .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
}

.resume-hero .btn {
  border-radius: 999px;
}

.resume-hero p {
  color: rgba(255, 255, 255, 0.8);
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.65rem;
  color: #d6dbf2;
  margin-bottom: 0.75rem;
}

footer a {
  color: inherit;
}

.progress-html .progress-bar {
  width: 85%;
}

.progress-css .progress-bar {
  width: 80%;
}

.progress-js .progress-bar {
  width: 60%;
}

.progress-word .progress-bar {
  width: 95%;
}

.progress-excel .progress-bar {
  width: 85%;
}

.progress-access .progress-bar {
  width: 30%;
}

.progress-google-admin .progress-bar {
  width: 90%;
}

.progress-google-workspace .progress-bar {
  width: 90%;
}

.progress-acrobat .progress-bar {
  width: 90%;
}

.progress-dreamweaver .progress-bar {
  width: 80%;
}

.progress-photoshop .progress-bar {
  width: 60%;
}

@media (max-width: 768px) {
  .hero-content {
    text-align: left;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-card {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
  }
}

@media (max-width: 768px) {
  .portfolio-media {
    height: 120px;
  }
}

