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

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.6;
  color: #e4e4e7;
  background: #0a0a0a;
  overflow-x: hidden;
}

/* --- Navbar Styles --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid #27272a;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #a1a1aa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #3b82f6;
}

/* --------------------- */

/* --- Updated Hero Section Styles --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  /* Add padding for smaller screens */
}

.hero::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.1) 1px,
    transparent 1px
  );
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.hero-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  z-index: 1;
  flex-direction: row;
  /* Default to row for larger screens */
  gap: 4rem;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
  /* Align text to the left */
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
}

.hero-about-text {
  font-size: 1.2rem;
  color: #d4d4d8;
  line-height: 1.8;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out 0.4s both;
  max-width: 400px;
  /* Limit image container width */
}

.hero-image {
  width: 100%;
  max-width: 350px;
  /* Adjust based on desired size */
  height: auto;
  border-radius: 16px;
  /* Slightly rounded corners for the image */
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
  border: 2px solid #3b82f6;
  /* Subtle border */
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ----------------------------------- */

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator::after {
  content: "↓";
  font-size: 2rem;
  color: #3b82f6;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.skills-section {
  background: #0a0a0a;
  padding: 4rem 0;
}

/* NEW SKILLS STRUCTURE STYLES (More Concise) */
.skill-category-container {
  max-width: 900px;
  margin: 0 auto;
}

.skill-category {
  margin-bottom: 1.5rem;
  /* Reduced space between categories (was 3rem) */
  padding: 1rem;
  /* Reduced padding inside the box (was 1.5rem) */
  background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
  border-radius: 10px;
  /* Slightly smaller radius (was 12px) */
  border: 1px solid #27272a;
}

.skill-category-title {
  font-size: 1.35rem;
  /* Smaller title font (was 1.6rem) */
  font-weight: 600;
  margin-bottom: 0.75rem;
  /* Reduced vertical space below title (was 1.25rem) */
  color: #f4f4f5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* Reduced gap (was 0.75rem) */
}

.skill-category-title {
  font-size: 1.3em;
  /* Reduced icon size (was 1.2em) */
}

/* MODIFIED/REUSED SKILLS GRID STYLES */
.skills-grid {
  max-width: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.skills-grid .tech-tag {
  font-size: 0.9rem;
  /* Smaller tag font (was 1rem) */
  padding: 0.4rem 0.8rem;
  /* Reduced tag padding (was 0.6rem 1.2rem) */
  transition: all 0.3s ease;
}

.skills-grid .tech-tag:hover {
  background: rgba(59, 130, 246, 0.2);
}

.education-section {
  background: #111111;
  padding: 4rem 0;
}

.education-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid #27272a;
}

.education-card h3 {
  color: #f4f4f5;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.education-card .degree {
  color: #3b82f6;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.education-card .date {
  color: #71717a;
  font-size: 1rem;
  margin-bottom: 2rem;
  display: block;
}

.education-card .courses-title {
  font-size: 1.3rem;
  color: #8b5cf6;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  border-top: 1px solid #27272a;
  padding-top: 1.5rem;
}

.education-card .course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding-left: 0;
}

.education-card .course-list li {
  background: rgba(139, 92, 246, 0.1);
  color: #c4b5fd;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.projects-section {
  background: #0a0a0a;
  padding: 4rem 0;
}

.project-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #27272a;
  position: relative;
  overflow: hidden;
}

.project-card.redis-featured {
  padding: 0;
  overflow: visible;
}

.project-content-wrapper {
  display: flex;
  gap: 0;
  min-height: 280px;
  border-radius: 16px;
  overflow: hidden;
}

.project-left-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.project-video-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 0 16px 16px 0;
  border: 1px solid #27272a;
  border-left: none;
  transition: all 0.3s ease;
}

.project-video-container:hover {
  border-color: #3b82f6;
  box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.2);
}

.project-preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-decoration: none;
  cursor: pointer;
  z-index: 10;
}

.youtube-badge {
  display: none;
}

.redis-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .project-content-wrapper {
    flex-direction: column;
    min-height: auto;
  }

  .project-video-container {
    border-radius: 0 0 16px 16px;
    border-left: 1px solid #27272a;
    border-top: none;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .project-left-content {
    padding: 1.5rem;
  }

  .project-video-container {
    min-height: 250px;
  }

  .youtube-badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: #3b82f6;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-card.redis-featured:hover {
  transform: none;
  border-color: #3b82f6;
}

.project-card.redis-featured:hover::before {
  transform: scaleX(1);
}

.project-card.redis-featured:hover .project-content-wrapper {
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

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

.project-title {
  font-size: 1.8rem;
  color: #f4f4f5;
  margin-bottom: 0.5rem;
}

.expand-icon {
  font-size: 1.5rem;
  color: #3b82f6;
  transition: transform 0.3s ease;
}

.project-card.expanded .expand-icon {
  transform: rotate(180deg);
}

.project-summary {
  color: #a1a1aa;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.github-repo-link {
  display: inline-block;
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.github-repo-link:hover {
  color: #0052a3;
  text-decoration: underline;
}

.project-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.project-links h4 {
  margin: 0;
}

.architecture-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.architecture-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.architecture-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-content {
  background-color: #1a1a1a;
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 2rem;
  max-width: 1000px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease;
}

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

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: #a1a1aa;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #3b82f6;
}

.modal-content h2 {
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-diagrams {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .modal-diagrams {
    grid-template-columns: 1fr;
  }
}

.diagram-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.diagram-container h3 {
  color: #e4e4e7;
  font-size: 1.1rem;
}

.architecture-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #27272a;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.clickable-diagram {
  cursor: pointer;
  transition: all 0.3s ease;
}

.clickable-diagram:hover {
  border-color: #3b82f6;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  transform: scale(1.02);
}

/* Expanded Diagram Modal */
.expanded-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  overflow: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.expanded-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.expanded-modal-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  animation: slideIn 0.3s ease;
}

.expanded-diagram-image {
  width: 100%;
  height: auto;
  max-width: 95vw;
  max-height: 95vh;
  border-radius: 12px;
  border: 2px solid #3b82f6;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.5);
}

.expanded-modal .modal-close {
  z-index: 1;
}

.tech-stack {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.tech-tag {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.project-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.project-card.expanded .project-details {
  max-height: 3000px;
}

.project-card.redis-featured .project-details {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid #27272a;
  border-top: none;
  border-radius: 0 0 16px 16px;
}

.details-content {
  padding: 2rem;
  border-top: 1px solid #27272a;
  margin-top: 0;
}

.decision-section {
  margin-bottom: 2rem;
}

.decision-section h4 {
  color: #3b82f6;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.decision-section h4::before {
  content: "▸";
  color: #8b5cf6;
}

.decision-section p {
  color: #d4d4d8;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.decision-section ul {
  margin-left: 1.5rem;
  color: #d4d4d8;
}

.decision-section li {
  margin-bottom: 0.5rem;
}

.experience-section {
  background: #111111;
  padding: 4rem 0;
}

/* NEW TIMELINE STYLES */
/* NEW TIMELINE STYLES */
.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
}

.timeline-nav {
  flex: 0 0 300px;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.timeline-nav-inner {
  position: relative;
  padding-left: 30px;
}

/* The vertical line */
.timeline-nav-inner::before {
  content: "";
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
  top: 0;
  bottom: 0;
  left: 12px;
  z-index: 0;
}

.timeline-nav-item {
  position: relative;
  margin-bottom: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline-nav-item.inactive {
  opacity: 0.4;
}

.timeline-nav-item.active {
  opacity: 1;
}

.timeline-nav-dot {
  position: absolute;
  top: 8px;
  left: -18px;
  height: 12px;
  width: 12px;
  background-color: #3b82f6;
  border-radius: 50%;
  border: 2px solid #0a0a0a;
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-nav-item.active .timeline-nav-dot {
  background-color: #8b5cf6;
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.3);
}

.timeline-nav-item:hover .timeline-nav-dot {
  background-color: #8b5cf6;
  transform: scale(1.2);
}

.timeline-nav-title {
  font-size: 1rem;
  font-weight: 600;
  color: #f4f4f5;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.timeline-nav-item.inactive .timeline-nav-title {
  color: #71717a;
}

.timeline-nav-company {
  font-size: 0.9rem;
  color: #a1a1aa;
  margin-bottom: 0.25rem;
}

.timeline-nav-date {
  font-size: 0.85rem;
  color: #71717a;
}

.timeline-content-wrapper {
  flex: 1;
  min-height: 400px;
}

.timeline-roadmap-intro {
  text-align: center;
  color: #a1a1aa;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 10px;
}

.timeline-item {
  display: none;
}

.timeline-item.active {
  display: block;
  animation: fadeInSlide 0.5s ease-out;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-content {
  width: 100%;
}

/* Ensure the roadmap entry styles are also present and clean */
.experience-roadmap-entry {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed #27272a;
}

.experience-roadmap-entry h4 {
  color: #8b5cf6;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.experience-roadmap-entry p {
  color: #d4d4d8;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.experience-roadmap-entry ul {
  margin-left: 1.5rem;
  color: #d4d4d8;
}

.experience-roadmap-entry li {
  margin-bottom: 0.5rem;
}

/* Media Query Adjustment for smaller screens */
/* Media Query Adjustment for smaller screens */
@media (max-width: 992px) {
  .timeline-container {
    flex-direction: column;
  }

  .timeline-nav {
    position: relative;
    top: 0;
    flex: none;
    width: 100%;
  }

  .timeline-nav-inner {
    display: flex;
    overflow-x: auto;
    padding-left: 0;
    padding-bottom: 1rem;
  }

  .timeline-nav-inner::before {
    display: none;
  }

  .timeline-nav-item {
    margin-bottom: 0;
    margin-right: 2rem;
    min-width: 200px;
  }

  .timeline-nav-dot {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 0.5rem;
  }
}

.contact-section {
  background: #111111;
  /* Changed background */
  padding: 4rem 0;
  text-align: center;
}

.contact-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #3b82f6;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid #27272a;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  border-color: #3b82f6;
}

.favorites-section {
  background: #0a0a0a;
  /* Changed background */
  padding: 4rem 0;
}

.favorites-content {
  max-width: 900px;
  margin: 0 auto;
}

.favorites-intro {
  text-align: center;
  color: #d4d4d8;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.favorites-intro p {
  margin-bottom: 1rem;
}

.team-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid;
}

.lakers-badge {
  background: linear-gradient(135deg, #552583 0%, #fdb927 100%);
  border-color: #fdb927;
  color: white;
}

.ferrari-badge {
  background: linear-gradient(135deg, #dc0000 0%, #8b0000 100%);
  border-color: #dc0000;
  color: white;
}

.teaching-badge {
  background: linear-gradient(
    135deg,
    #f59e0b 0%,
    #ef4444 100%
  ); /* Amber to Red */
  border-color: #f59e0b;
  color: white;
}

.hiking-badge {
  background: linear-gradient(135deg, #10b981 0%, #065f46 100%);
  border-color: #10b981;
  color: white;
}

.gym-badge {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  border-color: #a855f7;
  color: white;
}

.spotify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.spotify-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.spotify-embed:hover {
  transform: translateY(-5px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .hero-content-wrapper {
    flex-direction: column;
    /* Stack vertically on smaller screens */
    gap: 2rem;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-about-text {
    font-size: 1rem;
  }

  .hero-image-container {
    order: -1;
    /* Move image above text on small screens */
    margin-bottom: 2rem;
    max-width: 300px;
    /* Adjust size for mobile */
  }

  .hero-image {
    max-width: 250px;
  }

  .navbar .nav-links {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .project-title {
    font-size: 1.4rem;
  }

  .spotify-grid {
    grid-template-columns: 1fr;
  }

  .navbar {
    padding: 1rem;
  }

  .nav-logo {
    font-size: 1.2rem;
  }

  .nav-links {
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
