/* ===== Global Styles ===== */
:root {
  --primary-color: #D4AC0D;        /* Amarelo dourado mais escuro */
  --primary-hover: #D4B95E;        /* Amarelo mais escuro para hover */
  --primary-dark: #8B7500;         /* Amarelo escuro mais intenso */
  --text-primary: #e0e0e0;         /* Cinza claro para texto principal */
  --text-secondary: #9e9e9e;       /* Cinza para texto secundário */
  --bg-light: #1e1e1e;             /* Fundo cinza escuro */
  --bg-darker: #121212;            /* Fundo preto */
  --border-color: #333333;         /* Borda cinza escura */
  --card-bg: #1e1e1e;              /* Fundo do card */
  --card-border: 1px solid #4a3f00; /* Borda do card em tom de amarelo escuro */
  --surface-color: #1e1e1e;        /* Cor de superfície */
  --on-surface: #e0e0e0;           /* Texto sobre superfície */
  --on-surface-muted: #9e9e9e;     /* Texto secundário sobre superfície */
  --yellow-accent: #D4AC0D;        /* Amarelo para destaques mais escuro */
  --yellow-light: #D4B95E;         /* Amarelo claro mais escuro */
  --yellow-dark: #8B7500;          /* Amarelo escuro mais intenso */
  --yellow-border: #4a3f00;        /* Borda em tom de amarelo escuro */
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-darker);
  color: var(--on-surface);
  padding-top: 80px; /* Espaço para o cabeçalho fixo */
  min-height: 100vh;
}

/* Garante que as seções tenham espaçamento adequado */
.section {
  scroll-margin-top: 100px; /* Altura do header + um pouco mais */
  padding: 4rem 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: var(--primary-hover);
  text-decoration: none;
}

/* Remove underline animation for all links */
a::after {
  display: none;
}

/* Restore underline only for text links (not icons) */
p a:not([class*="icon"])::after,
li a:not([class*="icon"])::after {
  display: inline-block;
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

p a:not([class*="icon"]):hover::after,
li a:not([class*="icon"]):hover::after {
  width: 100%;
}

/* ===== Header ===== */
header {
  background-color: rgba(30, 30, 30, 0.9);
  padding: 0.8rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navigation Menu */
.main-nav {
  margin-left: auto;
  margin-right: 2rem;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--yellow-accent);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--yellow-accent);
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  z-index: 1001;
}

.menu-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg-darker);
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }
  
  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    display: block;
  }
  
  /* When menu is open */
  .menu-open .main-nav {
    right: 0;
  }
  
  .menu-open .menu-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .menu-open .menu-toggle-line:nth-child(2) {
    opacity: 0;
  }
  
  .menu-open .menu-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  /* Adjust header content for mobile */
  .header-content {
    position: relative;
  }
  
  .social-links {
    margin-left: auto;
    margin-right: 1rem;
  }
}

/* Desktop styles */
@media (min-width: 768px) {
  .main-nav {
    display: block !important;
  }
}

/* Esconde o menu em telas menores que 768px */
.d-none {
  display: none !important;
}

/* Mostra em telas médias e grandes (≥768px) */
@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}

/* Mobile styles */
@media (max-width: 767px) {
  header {
    position: relative;
    padding: 1rem 0;
  }
  
  body {
    padding-top: 0; /* Remove o espaço para o cabeçalho fixo */
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--yellow-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.header-profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1);
}

.logo-text h1 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.logo-text p {
  margin: 0.25rem 0 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.social-links a::after {
  display: none; /* Remove a barra de hover */
}

.social-links a {
  border-bottom: none !important;
}

.social-links a:hover::after {
  display: none !important;
}

.social-links {
  display: flex;
  gap: 6px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-size: 1.1rem;
}

/* Hover effect for all social icons */
.social-link:hover {
  transform: translateY(-3px);
  background-color: var(--yellow-accent);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  color: #121212; /* Texto preto para melhor contraste */
  border-color: transparent;
  text-decoration: none;
}

/* CV link styles */
.cv-link {
  background-color: var(--yellow-accent);
  color: #121212; /* Texto preto para melhor contraste */
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding: 0.2rem;
}

.cv-link:hover {
  background-color: var(--primary-hover) !important; /* Amarelo mais claro no hover */
  color: #121212 !important;
}

.cv-text {
  font-size: 0.9rem;
  display: block;
}

.cv-lang {
  font-size: 0.7rem;
  display: block;
  margin-top: 2px;
  font-weight: normal;
}

/* ===== Hero Section ===== */
.hero {
  text-align: center;
  padding: 70px 0 10px;
  position: relative;
  overflow: hidden;
  margin-top: -20px; /* Compensa o padding do body */
}

.avatar {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid var(--yellow-accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.highlight {
  color: var(--primary-color);
  font-weight: 700;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.subtitle strong {
  color: var(--yellow-accent);
  font-weight: 600;
}

/* ===== Academic Section ===== */
.academic-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.academic-item {
  position: relative;
  padding: 30px 0;
  width: 100%;
  transition: all 0.3s ease;
}

.academic-item:hover {
  transform: translateX(5px);
}

.academic-content {
  display: flex;
  align-items: flex-start;
  position: relative;
  background: var(--card-bg);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.academic-content:hover {
  border-color: var(--yellow-accent);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.academic-logo {
  display: none; /* Escondendo o container do ícone */
}

.academic-details {
  flex: 1;
}

.academic-degree {
  color: var(--yellow-accent);
  font-size: 1.25rem;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.academic-institution {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.academic-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.academic-period {
  display: flex;
  align-items: center;
  gap: 5px;
}

.academic-period i {
  color: var(--yellow-accent);
}

/* Responsive styles */
@media (max-width: 768px) {
  .academic-content {
    padding: 20px;
  }
  
  .academic-degree {
    font-size: 1.1rem;
  }
  
  .academic-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

/* ===== Badges Section ===== */
.badges-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  max-width: 100%;
  padding: 0;
}

.badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.badge-link {
  display: inline-block;
  line-height: 0;
  margin: 0;
  padding: 2px;
  text-align: center;
}

.badge-img {
  height: 162px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

/* Ajustes para telas médias */
@media (max-width: 992px) {
  .badge-img {
    height: 70px;
  }
  
  .badge-link {
    padding: 0 10px;
  }
}

/* Ajustes para telas pequenas */
@media (max-width: 768px) {
  .badge-img {
    height: 60px;
  }
  
  .badge-link {
    padding: 0 8px;
  }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
  .badge-img {
    height: 50px;
  }
  
  .badge-link {
    padding: 0 5px;
  }
}

/* ===== Experience Timeline ===== */
.experience-timeline {
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 0 1rem;
  position: relative;
}

.experience-timeline::before {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--yellow-accent);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.experience-item {
  display: flex;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 2.5rem;
  width: 50%;
  padding: 0 1.5rem;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Alternate alignment for even items */
.experience-item:nth-child(even) {
  margin-left: auto;
  justify-content: flex-start;
  padding-left: 1.5rem;
  padding-right: 0;
}

.experience-item:nth-child(odd) {
  margin-right: auto;
  justify-content: flex-end;
  padding-right: 1.5rem;
  padding-left: 0;
}

.experience-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--yellow-accent);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
}

.experience-item:nth-child(even)::after {
  right: auto;
  left: -10px;
}

.experience-content {
  background-color: var(--card-bg);
  border: 1px solid var(--yellow-border);
  border-radius: 8px;
  padding: 1.5rem;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.experience-item:hover .experience-content {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.experience-logo {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  border: none;
  margin: 0;
}

.experience-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.experience-details {
  text-align: left;
  flex: 1;
}

.experience-company {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--yellow-accent);
  margin-bottom: 0.5rem;
}

.experience-position {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.experience-period {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .experience-timeline::before {
    display: none; /* Hide the vertical line */
  }
  
  .experience-item,
  .experience-item:nth-child(even) {
    width: 100%;
    padding: 0 1rem; /* Add horizontal padding */
    margin: 0 0 1.5rem 0;
    justify-content: flex-start;
    position: relative;
  }
  
  .experience-item::after,
  .experience-item:nth-child(even)::after {
    display: none; /* Hide the dots */
  }
}

/* ===== Skills Section ===== */
.section {
  padding: 2rem 0;
}

/* Section Title Styles */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 0 auto 2rem;
  position: relative;
  display: block;
  width: 100%;
  padding: 0 1rem;
}

/* Section Header with Icon */
.section-header {
  text-align: center;
  margin: 0 auto 2rem;
  width: 100%;
  padding: 0 1rem;
}

.section-header .section-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
  width: auto;
  padding: 0;
}

.section-header .section-title i {
  color: var(--yellow-accent);
  font-size: 1.5rem;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.skill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #2a2a2a;
  color: var(--yellow-accent);
  border-radius: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid var(--yellow-dark);
}

.skill-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.skill-badge i {
  font-size: 1.2em;
}

/* ===== Projects Section ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.project-card {
  background: var(--card-bg);
  border: 1px solid var(--yellow-border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 200px;
}

/* Card content layout */
.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Push all content to top */
.project-card > *:not(.project-link):not(.project-location) {
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

/* Create a container for bottom-aligned items */
.project-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Style the link */
.project-link {
  margin: 0;
  padding: 0;
}

/* Style the location */
.project-location {
  margin: 0;
  padding: 0.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Style the link */
.project-link a {
  display: inline-block;
  margin: 0;
  text-align: left;
  width: auto;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(139, 117, 0, 0.3);
  border-color: var(--primary-color);
}

.project-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.project-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.project-tag {
  background-color: rgba(255, 215, 0, 0.1);
  color: var(--yellow-accent);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid var(--yellow-dark);
}

.project-tag.live {
  background-color: rgba(255, 215, 0, 0.2);
  color: var(--yellow-accent);
  border-color: var(--yellow-dark);
}

.project-title {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  font-weight: 600;
}

.project-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0.25rem 0 1rem 0;
  line-height: 1.5;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  padding: 0.5rem 0;
}

.project-link:hover {
  color: var(--yellow-light);
  text-decoration: none;
}

.project-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--yellow-accent);
  transition: width 0.3s ease;
}

.project-link:hover::after {
  width: 100%;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== Skills Grid ===== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.skill-card {
  background: var(--surface-color);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  color: var(--on-surface);
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  background: #2a2a2a;
}

.skill-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  background-color: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
}

.skill-icon i {
  font-size: 1.5em;
}

.skill-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0.5rem 0 0.25rem;
  color: var(--text-primary);
}

.skill-category {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.skill-year {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== Footer ===== */
.footer {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-social-links .social-link {
  width: 2.8rem;
  height: 2.8rem;
  font-size: 1.2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-social-links .social-link:hover {
  background-color: var(--yellow-accent);
  color: var(--bg-darker);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-contact {
  margin: 0.5rem 0;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.contact-email:hover {
  color: var(--yellow-accent);
}

.contact-email i {
  font-size: 1.1em;
}

.footer-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  opacity: 0.8;
}

.footer-text::before {
  content: '©';
  display: inline-block;
  margin-right: 6px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 0 2rem;
  }
  
  .footer-content {
    padding: 0 1.5rem;
    gap: 1.25rem;
  }
  
  .footer-social-links {
    gap: 0.75rem;
  }
  
  .footer-social-links .social-link {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.1rem;
  }
  
  .contact-email {
    font-size: 0.95rem;
  }
  
  .footer-text {
    font-size: 0.85rem;
  }
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .logo {
    flex-direction: column;
    text-align: center;
  }
  
  /* Center social icons on mobile */
  .social-links {
    justify-content: center;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .projects-grid,
  .skills-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}
