/* === Global Reset === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; width: 100%; height: 100%; }
body {
  font-family: 'Netflix Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #141414;
  color: #fff;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

/* === Netflix Intro === */
.netflix-intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100vw;
  height: 100vh;
}
.netflix-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: #141414;
  overflow: hidden;
}
.netflix-logo {
  font-size: 7rem;
  font-weight: 900;
  color: #e50914;
  text-shadow: 0 0 80px rgba(229,9,20,0.8);
  letter-spacing: -0.05em;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeIn 0.5s forwards ease-in;
}
.netflix-logo.animate {
  animation: zoomOut 3s forwards ease-in-out;
}
@keyframes fadeIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes zoomOut {
  0%, 80% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

/* === Browse / Profile Selection === */
.browse-container {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #141414;
}
.browse-container.active {
  display: flex;
  animation: fadeIn 0.5s ease-in;
}
.who-is-watching {
  color: #fff;
  font-size: 3.5vw;
  font-weight: 400;
  width: 100%;
  text-align: center;
}
.profiles {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10rem;
  justify-content: center;
}

/* === Profile Card (matching netflix ProfileCard.css) === */
.profile-card {
  position: relative;
  margin: 10px;
  cursor: pointer;
  height: 10vw;
  max-height: 200px;
  max-width: 200px;
  min-height: 84px;
  min-width: 84px;
  text-decoration: none;
  width: 10vw;
}
.profile-card:hover {
  border-color: #e5e5e5;
  color: #e5e5e5;
}
.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 0.2em solid transparent;
  transition: border-color 0.3s;
}
.image-container:hover {
  border-color: #e5e5e5;
}
.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-name {
  color: white;
  display: block;
  font-size: 1.3vw;
  line-height: 1.2em;
  margin: 0.6em 0;
  min-height: 1.8em;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  font-weight: 400;
  text-transform: capitalize;
}

/* === Main Content === */
.main-content {
  display: none;
  opacity: 0;
  width: 100%;
}
.main-content.active {
  display: block;
  animation: contentFadeIn 0.5s ease-in forwards;
}
@keyframes contentFadeIn { to { opacity: 1; } }

/* === Navbar (matching netflix Navbar.css) === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  background-image: linear-gradient(180deg, rgb(0 0 1 / 90%) 10%, transparent 100%);
  padding: 20px;
  z-index: 100;
  transition: background-color 0.3s ease;
}
.navbar.scrolled {
  background-color: #141414;
}
.navbar-left, .navbar-right {
  display: flex;
  align-items: center;
}
.navbar-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: #e50914;
  text-decoration: none;
  margin-right: 30px;
  margin-left: 10px;
  cursor: pointer;
}
.navbar-links {
  display: flex;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 0;
}
.navbar-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.3s;
}
.navbar-links li a:hover {
  color: #e50914;
}
.profile-icon {
  width: 30px;
  height: 30px;
  border-radius: 15%;
  transition: transform 0.3s;
  margin-right: 3rem;
  cursor: pointer;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}
.profile-icon:hover {
  transform: scale(1.1);
}

/* Hamburger & Sidebar - hidden on desktop */
.hamburger, .sidebar-overlay, .sidebar {
  display: none;
}

/* === Profile Page Banner (matching netflix ProfilePage.css + ProfileBanner.css) === */
.profile-page {
  display: flex;
  align-items: center;
  height: 75vh;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.profile-banner {
  display: flex;
  align-items: flex-end;
  justify-content: left;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  padding-bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 40px 20px 20px 20px;
}
.profile-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.3) 100%);
  z-index: 0;
}
.banner-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  font-weight: bold;
  width: 100%;
  padding: 50px 0px;
  box-sizing: border-box;
  padding-top: 10px;
}
.banner-headline {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.banner-description {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 400;
}
.banner-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* === Play Button (matching netflix PlayButton.css) === */
.banner-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.play-button {
  background-color: #ffffff;
  color: #000;
}
.play-button:hover {
  background-color: grey;
}
.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.spacer {
  width: 1rem;
}
.btn-label {
  font-size: 1rem;
}
.btn-label-dark { color: black; }
.btn-label-light { color: white; }

/* === More Info Button (matching netflix MoreInfoButton.css) === */
.more-info-button {
  background-color: rgba(109, 109, 110, 0.7);
  color: #fff;
}
.more-info-button:hover {
  background-color: rgba(109, 109, 110, 0.9);
}

/* === Open to Work Badge === */
.open-to-work {
  display: inline-block;
  background: #10cc52;
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 204, 82, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(16, 204, 82, 0); }
}

/* === Impact Metrics Strip === */
.metrics-strip {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, #141414 100%);
  flex-wrap: wrap;
}
.metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
}
.metric-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #e50914;
  line-height: 1;
}
.metric-label {
  font-size: 0.85rem;
  color: #999;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === Companies Strip === */
.companies-strip {
  text-align: center;
  padding: 20px 20px 30px;
}
.companies-label {
  font-size: 0.85rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.companies-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.company-tag {
  padding: 8px 20px;
  border: 1px solid #333;
  border-radius: 6px;
  color: #ccc;
  font-size: 0.95rem;
  font-weight: 600;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.company-tag:hover {
  border-color: #e50914;
  color: #fff;
}

/* === Top Picks Row (matching netflix TopPicksRow.css) === */
.top-picks-row {
  margin: 20px 0;
  padding: 10px 20px;
}
.top-picks-row .row-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
  animation: titleFadeIn 1s ease-in-out;
}
.top-picks-row .card-row {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.top-picks-row .card-row::-webkit-scrollbar {
  display: none;
}
.pick-card {
  position: relative;
  width: 250px;
  min-width: 250px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideIn 0.5s ease forwards;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.pick-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
}
.pick-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.pick-card:hover .pick-image {
  transform: scale(1.1);
}
.pick-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 15px;
  opacity: 1;
  transition: background 0.3s ease;
}
.pick-card:hover .pick-overlay {
  background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.9));
}
.pick-label {
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

@keyframes titleFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* === Continue Watching Row (matching netflix ContinueWatching.css) === */
.continue-watching-row {
  padding: 20px;
  color: #fff;
}
.continue-watching-row .row-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.continue-watching-row .card-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.continue-watching-row .card-row::-webkit-scrollbar {
  display: none;
}
.cw-card {
  position: relative;
  min-width: 150px;
  width: 200px;
  height: 140px;
  flex: 0 0 auto;
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.cw-card:hover {
  transform: scale(1.05);
}
.cw-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.cw-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.cw-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

/* === Skills Section (matching netflix Skills.css) === */
.skills-container {
  padding: 80px 40px 40px;
  text-align: center;
  color: #fff;
  max-width: 1000px;
  margin: auto;
}
.skills-title {
  font-size: 2.5rem;
  color: #e50914;
  margin-bottom: 30px;
}
.category-title {
  font-size: 1.8rem;
  color: #e6e6e6;
  margin: 30px 0 20px;
  border-bottom: 2px solid #e50914;
  padding-bottom: 5px;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 0.8s ease forwards;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.skill-card {
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #e6e6e6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.skill-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
  cursor: pointer;
}
.skill-icon {
  font-size: 2rem;
  color: #e50914;
  margin-bottom: 10px;
}
.skill-name {
  display: flex;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}
.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(-20px);
  animation: dropIn 0.5s forwards ease-out;
}
@keyframes dropIn {
  to { opacity: 1; transform: translateY(0); }
}
.skill-description {
  font-size: 0.9rem;
  color: #999;
  margin-top: 5px;
}
@keyframes fadeSlideIn {
  to { opacity: 1; transform: translateY(0); }
}

/* === Projects Section (matching netflix Projects.css) === */
.projects-container {
  padding: 80px 20px;
  background-color: #141414;
  color: #fff;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
}
.project-card {
  background: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(160, 16, 16, 0.6);
  opacity: 0;
  animation: fadeInUp 0.5s forwards ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(244, 0, 13, 0.6);
  cursor: pointer;
}
.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #e50914;
  transition: transform 0.3s ease;
}
.project-card:hover .project-image {
  transform: scale(1.05);
}
.project-details {
  padding: 20px;
}
.project-details h3 {
  font-size: 1.2rem;
  color: #e50914;
  margin-bottom: 10px;
}
.project-details p {
  font-size: 0.8rem;
  margin-bottom: 15px;
  line-height: 1.2rem;
}
.tech-used {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}
.tech-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 12px;
  background: #2c2c2c;
  color: #fff;
  font-size: 0.8rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}
.tech-badge:hover {
  transform: scale(1.1);
  background-color: #e50914;
  color: #fff;
  box-shadow: 0 4px 10px rgba(229, 9, 20, 0.6);
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* === Work Experience Timeline === */
.timeline-section {
  padding: 80px 20px;
  background-color: #141414;
}
.timeline-header {
  text-align: center;
  padding: 20px;
}
.timeline-title {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 40px;
  display: inline-block;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 2s ease-in-out both;
}
.vertical-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.vertical-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #333;
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}
.timeline-item.left {
  left: 0;
  text-align: right;
}
.timeline-item.right {
  left: 50%;
}
.timeline-item::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  z-index: 1;
}
.timeline-item.left::before {
  right: -8px;
}
.timeline-item.right::before {
  left: -8px;
}
.timeline-item.work::before {
  background: rgb(33, 150, 243);
}
.timeline-item.education::before {
  background: rgb(255, 160, 200);
}
.timeline-item-content {
  border-radius: 8px;
  padding: 20px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #000;
}
.timeline-item-content:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.timeline-item.work .timeline-item-content {
  background: rgb(240, 240, 240);
}
.timeline-item.work:first-child .timeline-item-content {
  background: rgb(33, 150, 243);
  color: #fff;
}
.timeline-item.education .timeline-item-content {
  background: rgb(255, 224, 230);
}
.timeline-item-content h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.timeline-item-content h4 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 8px;
  opacity: 0.8;
}
.timeline-item-content .timeline-tech {
  font-size: 0.85rem;
  margin-bottom: 8px;
  opacity: 0.9;
}
.timeline-item-content p {
  font-size: 0.85rem;
  line-height: 1.5;
}
.timeline-date {
  font-size: 0.85rem;
  color: #999;
  margin-top: 8px;
}
.timeline-star {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: rgb(16, 204, 82);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-top: 10px;
}

/* === Certifications Section (matching netflix Certifications.css) === */
.certifications-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 50vh;
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 1, 0.9) 10%, rgba(20, 20, 20, 0.9) 100%);
  background-size: 200% 200%;
  color: #fff;
  animation: backgroundShift 10s ease-in-out infinite;
}
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1000px;
  justify-items: center;
}
.certification-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px) rotate(-2deg) scale(0.95);
  animation: cardFadeIn 0.6s forwards ease-in-out;
  width: 100%;
}
.certification-card:hover {
  transform: scale(1.08) rotate(0deg);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
}
.certification-content {
  text-align: left;
  display: flex;
  flex-direction: column;
}
.certification-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.certification-content h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.certification-content p {
  font-size: 0.9rem;
  color: #ccc;
}
.issued-date {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.5rem;
}
.certification-link-icon {
  font-size: 1.5rem;
  color: #e50914;
  transition: transform 0.2s ease;
}
.certification-card:hover .certification-link-icon {
  transform: scale(1.2);
}
@keyframes backgroundShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(50px) rotate(-2deg) scale(0.95); }
  to { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); }
}

/* === About Section === */
.about-section {
  padding: 80px 40px;
  background-color: #141414;
  color: #e6e6e6;
}
.about-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
}
.about-content {
  max-width: 900px;
  line-height: 1.8;
  color: #e5e5e5;
}
.about-content p { margin-bottom: 1.25rem; }
.about-content strong { color: #fff; }
.about-content ul { margin-left: 2rem; margin-top: 1rem; line-height: 2; }

/* === Contact Section (matching netflix ContactMe.css) === */
.contact-container {
  padding: 80px 20px;
  background-color: #141414;
  color: #e6e6e6;
  text-align: center;
  animation: fadeIn 0.8s ease-in-out;
}
.linkedin-badge-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #e6e6e6;
  max-width: 400px;
  margin: 0 auto;
}
.badge-avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  background: linear-gradient(135deg, #e50914, #b81d24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.badge-content { text-align: left; }
.badge-name {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
  color: #fff;
}
.badge-title {
  font-size: 0.9rem;
  margin: 0;
  color: #aaa;
}
.badge-description {
  font-size: 0.85rem;
  margin: 5px 0;
  color: #ccc;
}
.badge-company {
  font-size: 0.85rem;
  color: #888;
}
.badge-link {
  display: inline-flex;
  align-items: center;
  background-color: #0077b5;
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}
.badge-link:hover {
  background-color: #005983;
}
.contact-header p {
  font-size: 1.2rem;
  color: #ccc;
  margin: 20px 0 30px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1e1e1e;
  padding: 10px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.contact-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(214, 43, 43, 0.6);
}
.contact-icon-emoji {
  font-size: 1.5rem;
}
.contact-link {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
}
.contact-link:hover {
  text-decoration: underline;
}
.contact-fun {
  margin-top: 30px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e6e6e6;
}
.coffee-icon {
  font-size: 2rem;
  animation: swing 1s infinite ease-in-out;
}
@keyframes swing {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(30deg); }
}

/* === Footer === */
.footer {
  padding: 3rem 4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: #808080;
  font-size: 0.875rem;
}

/* === Responsive (Mobile) === */
@media (max-width: 768px) {
  .who-is-watching {
    font-size: 30px;
  }
  .profile-card {
    flex-wrap: wrap;
    width: 35vw;
    height: 35vw;
    max-width: 150px;
    max-height: 150px;
    cursor: pointer;
  }
  .profile-name {
    font-size: 14px;
  }
  .netflix-logo {
    font-size: 3rem;
  }
  .profiles {
    gap: 12px;
    margin-bottom: 5rem;
  }

  /* Navbar mobile */
  .navbar {
    padding: 15px;
  }
  .navbar-links {
    display: none;
  }
  .hamburger {
    display: block;
    cursor: pointer;
  }
  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px;
    transition: 0.3s;
  }
  .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: none;
  }
  .sidebar-overlay.open {
    display: block;
  }
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 70%;
    background-color: #141414;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 101;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .sidebar-logo {
    font-size: 2rem;
    font-weight: 900;
    color: #e50914;
    margin-bottom: 20px;
  }
  .sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .sidebar ul li {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .sidebar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .profile-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
  }

  /* Banner mobile */
  .profile-page {
    height: auto;
    min-height: 70vh;
  }
  .profile-banner {
    padding: 0 15px 20px;
    align-items: flex-end;
    justify-content: flex-start;
  }
  .profile-banner::before {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.7) 100%);
  }
  .banner-content {
    max-width: 100%;
    padding: 0 5px;
    padding-top: 80px;
  }
  .banner-headline {
    font-size: 1.5rem;
    margin-top: 0;
    line-height: 1.3;
  }
  .banner-description {
    line-height: 1.5;
    font-size: 12px;
    margin-bottom: 15px;
  }
  .banner-buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
  .banner-button {
    width: auto;
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  .banner-buttons {
    flex-wrap: wrap;
  }
  .open-to-work {
    font-size: 0.7rem;
    padding: 4px 10px;
    margin-bottom: 10px;
  }

  /* Metrics mobile */
  .metrics-strip {
    gap: 15px;
    padding: 25px 15px;
  }
  .metric-card {
    min-width: 45%;
  }
  .metric-number {
    font-size: 2rem;
  }
  .metric-label {
    font-size: 0.75rem;
  }

  /* Companies mobile */
  .companies-strip {
    padding: 15px 10px 20px;
  }
  .companies-row {
    gap: 8px;
  }
  .company-tag {
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  /* Top Picks mobile */
  .top-picks-row {
    padding: 10px 15px;
  }
  .top-picks-row .row-title {
    font-size: 1.4rem;
  }
  .pick-card {
    width: 160px;
    min-width: 160px;
    height: 120px;
  }

  /* Continue Watching mobile */
  .continue-watching-row {
    padding: 10px 15px;
  }
  .continue-watching-row .row-title {
    font-size: 1.2rem;
  }

  /* Skills mobile */
  .skills-container {
    padding: 60px 15px;
  }
  .skills-title {
    font-size: 2rem;
  }
  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
  }
  .skill-card {
    padding: 15px;
  }

  /* Projects mobile */
  .projects-container {
    padding: 60px 15px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }

  /* Timeline mobile */
  .timeline-section {
    padding: 60px 10px;
  }
  .timeline-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .vertical-timeline {
    padding: 10px 0;
  }
  .vertical-timeline::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .timeline-item.left,
  .timeline-item.right {
    left: 0;
    text-align: left;
  }
  .timeline-item.left::before,
  .timeline-item.right::before {
    left: 12px;
  }
  .timeline-item-content {
    padding: 15px;
  }
  .timeline-item-content h3 {
    font-size: 1rem;
  }
  .timeline-item-content h4 {
    font-size: 0.85rem;
  }
  .timeline-item-content p {
    font-size: 0.8rem;
  }
  .timeline-star {
    left: 20px;
    transform: none;
  }

  /* Certifications mobile */
  .certifications-container {
    padding: 60px 15px;
  }
  .certifications-grid {
    grid-template-columns: 1fr;
  }

  /* About mobile */
  .about-section {
    padding: 60px 15px;
  }
  .about-title {
    font-size: 1.6rem;
  }
  .about-content {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Contact mobile */
  .contact-container {
    padding: 60px 15px;
  }
  .linkedin-badge-custom {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  .badge-avatar-placeholder {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .badge-content {
    text-align: center;
  }
  .contact-item {
    padding: 8px 16px;
  }
  .contact-link {
    font-size: 0.95rem;
  }

  /* Footer mobile */
  .footer {
    padding: 2rem 1rem;
  }
}
