/* Premium CSS maintaining exact Arch-Canvas design with improvements */

:root {
  --background: 0 0% 0%; /* Pure black */
  --foreground: 0 0% 98%;
  --muted: 0 0% 15%;
  --muted-foreground: 0 0% 60%;
  --border: 0 0% 20%;
  --primary: 0 0% 98%;
  --card: 0 0% 8%;
}

* {
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

body {
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Progress Bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 1px;
  background-color: hsl(var(--foreground));
  z-index: 1000;
  transform-origin: left;
  mix-blend-mode: difference;
  width: 0%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.5s ease;
  border-bottom: 1px solid transparent;
  padding: 2rem 0; /* Increased for larger logo */
}

.navbar.scrolled {
  background-color: hsl(var(--background) / 0.8);
  backdrop-filter: blur(12px);
  border-bottom-color: hsl(var(--border));
  padding: 1.5rem 0; /* Slightly reduced when scrolled */
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* Mobile Logo - Larger */
@media (max-width: 768px) {
  .logo {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 120px;
  }
}

.logo::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.logo:hover {
  transform: scale(1.05) translateY(-1px);
}

.logo:hover::before {
  opacity: 1;
}

.nav-menu {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: hsl(var(--foreground));
}

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

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

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
  padding: 0.5rem;
  z-index: 1000;
  position: relative;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: hsl(var(--foreground));
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: hsl(var(--background));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  line-height: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-nav-link {
  color: hsl(var(--foreground));
  text-decoration: none;
  font-size: 2rem;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: hsl(var(--muted-foreground));
}

/* Hero Section - Pure Black Background with White Text */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 20;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.hero-text {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  font-weight: 200;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 2rem;
  color: hsl(var(--foreground));
}

.text-stroke {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  color: transparent;
}

.hero-description {
  max-width: 36rem;
  margin: 0 auto;
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
}

/* Projects Section - Fixed Alignment */
#projects {
  padding-top: 12rem; /* Increased spacing from navbar */
  position: relative;
  z-index: 10;
}

/* Mobile Projects Section */
@media (max-width: 768px) {
  #projects {
    padding-top: 8rem;
  }
}

@media (max-width: 480px) {
  #projects {
    padding-top: 6rem;
  }
}

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

/* Works Header - Smaller and Lower */
.works-title {
  font-size: 2rem;
  line-height: 2.5rem;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .works-title {
    font-size: 3rem;
    line-height: 1;
  }
}

.works-underline {
  height: 0.2rem;
  width: 5rem;
  background-color: hsl(var(--foreground));
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  row-gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile Projects Grid */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    row-gap: 2rem;
    max-width: 100%;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .projects-grid {
    gap: 1rem;
    row-gap: 1.5rem;
    padding: 0 0.5rem;
  }
}

.project-card {
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  animation: slideIn 0.6s ease-out forwards;
  animation-delay: 0.1s;
}

.project-card:nth-child(1) {
  animation-delay: 0.1s;
}

.project-card:nth-child(2) {
  animation-delay: 0.3s;
}

.project-card:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-card-offset {
  transform: translateY(100px);
}

.project-image-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 4/5;
  max-height: 400px;
}

.project-image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  z-index: 10;
}

.project-card:hover .project-image-overlay {
  background-color: transparent;
}

.project-coming-soon {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-text {
  color: hsl(var(--foreground));
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-image-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 4/5;
  max-height: 400px;
  border-radius: 8px;
  transform-style: preserve-3d;
}

/* Mobile Project Image Container */
@media (max-width: 768px) {
  .project-image-container {
    max-height: 300px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .project-image-container {
    max-height: 250px;
    margin-bottom: 0.75rem;
    border-radius: 6px;
  }
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0) scale(1);
  will-change: transform;
  filter: brightness(1) saturate(1);
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateZ(0);
}

/* Mobile Project Info */
@media (max-width: 768px) {
  .project-info {
    padding-top: 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .project-info {
    padding-top: 0.75rem;
    gap: 0.25rem;
  }
}

.project-card:hover .project-info {
  border-top-color: rgba(255, 255, 255, 0.2);
  transform: translateZ(10px);
}

.project-title {
  font-size: 1.5rem;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  letter-spacing: 0.02em;
  transform: translateZ(0);
}

/* Mobile Project Title */
@media (max-width: 768px) {
  .project-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .project-title {
    font-size: 1.1rem;
  }
}

.project-card:hover .project-title {
  color: hsl(var(--primary));
  transform: translateZ(15px) translateX(-2px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.project-type {
  color: hsl(var(--muted-foreground));
  font-family: monospace;
  font-size: 0.875rem;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateZ(0);
}

.project-card:hover .project-type {
  color: hsl(var(--foreground));
  transform: translateZ(10px);
}

.project-year {
  color: hsl(var(--muted-foreground));
  font-family: monospace;
  font-size: 0.875rem;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateZ(0);
}

.project-card:hover .project-year {
  color: hsl(var(--foreground));
  transform: translateZ(10px) translateX(2px);
}

.project-coming-soon {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-card:hover .project-coming-soon {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  backdrop-filter: blur(4px);
}

.coming-soon-text {
  color: hsl(var(--foreground));
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateZ(0);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-card:hover .coming-soon-text {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  transform: translateZ(20px) scale(1.05);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.text-white {
  color: hsl(var(--foreground));
}

.mb-4 {
  margin-bottom: 0.75rem; /* Reduced from 1rem */
}

.h-1 {
  height: 0.2rem; /* Reduced from 0.25rem */
}

.w-24 {
  width: 5rem; /* Reduced from 6rem */
}

.bg-white {
  background-color: hsl(var(--foreground));
}

/* Project Grid - Better Alignment */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\:translate-y-24 {
    transform: translateY(4rem); /* Reduced from 6rem */
  }
  
  .md\:aspect-\[3\/4\] {
    aspect-ratio: 3/4;
  }
  
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

.gap-8 {
  gap: 2rem;
}

@media (min-width: 768px) {
  .md\:gap-y-24 {
    row-gap: 4rem; /* Reduced from 6rem */
  }
}

/* Project Cards */
.group {
  position: relative;
}

.group:hover .group-hover\:bg-transparent {
  background-color: transparent;
}

.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.group:hover .group-hover\:text-primary {
  color: hsl(var(--primary));
}

.cursor-pointer {
  cursor: pointer;
}

.aspect-\[4\/5\] {
  aspect-ratio: 4/5;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.duration-700 {
  transition-duration: 700ms;
}

/* Images */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

/* Coming Soon Overlay */
.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bg-black\/60 {
  background-color: rgba(0, 0, 0, 0.6);
}

.bg-black\/20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.text-white {
  color: hsl(var(--foreground));
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-\[0\.5em\] {
  letter-spacing: 0.5em;
}

.border {
  border-width: 1px;
}

.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Project Info */
.justify-between {
  justify-content: space-between;
}

.items-start {
  align-items: flex-start;
}

.border-t {
  border-top-width: 1px;
}

.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.pt-6 {
  padding-top: 1.5rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.font-display {
  font-family: "Syncopate", sans-serif;
}

.uppercase {
  text-transform: uppercase;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}

.font-mono {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* Works Header */
.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.items-end {
  align-items: flex-end;
}

.mb-24 {
  margin-bottom: 6rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

@media (min-width: 768px) {
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

.font-display {
  font-family: "Syncopate", sans-serif;
}

.uppercase {
  text-transform: uppercase;
}

.font-bold {
  font-weight: 700;
}

.text-white {
  color: hsl(var(--foreground));
}

.mb-4 {
  margin-bottom: 1rem;
}

.h-1 {
  height: 0.25rem;
}

.w-24 {
  width: 6rem;
}

.bg-white {
  background-color: hsl(var(--foreground));
}

/* Animations */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Additional styles for studio and contact pages */
.pt-20 {
  padding-top: 6rem; /* Increased for larger logo */
}

.pt-40 {
  padding-top: 12rem; /* Increased for larger logo */
}

.pb-32 {
  padding-bottom: 8rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.space-y-12 > * + * {
  margin-top: 4rem; /* Increased for better spacing */
}

.space-y-8 > * + * {
  margin-top: 3rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .md\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
  
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  
  .md\:gap-32 {
    gap: 8rem;
  }
  
  .md\:p-12 {
    padding: 3rem;
  }
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.leading-tight {
  line-height: 1.25;
}

.h-px {
  height: 1px;
}

.w-full {
  width: 100%;
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.text-left {
  text-align: left;
}

.mt-20 {
  margin-top: 5rem;
}

.text-white\/30 {
  color: rgba(255, 255, 255, 0.3);
}

.italic {
  font-style: italic;
}

/* Enhanced Contact Form Styles */
.bg-card {
  background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(var(--background)) 100%);
  border: 1px solid hsl(var(--border));
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  margin-top: 2rem; /* Add spacing for name sections */
}

.bg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.p-8 {
  padding: 2rem;
}

.border-white\/5 {
  border-color: rgba(255, 255, 255, 0.05);
}

label {
  display: block;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.bg-transparent {
  background-color: transparent;
}

.border-b {
  border-bottom-width: 1px;
}

.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:border-white:focus {
  border-color: hsl(var(--foreground));
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.resize-none {
  resize: none;
}

.bg-white {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: none;
  position: relative;
  overflow: hidden;
}

.bg-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.bg-white:hover::before {
  left: 100%;
}

.text-black {
  color: hsl(var(--background));
  font-weight: 600;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.font-bold {
  font-weight: 700;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.hover\:bg-gray-200:hover {
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.underline {
  text-decoration-line: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  text-underline-offset: 4px;
  transition: all 0.3s ease;
}

.underline-offset-4 {
  text-underline-offset: 4px;
}

.hover\:text-white:hover {
  color: hsl(var(--foreground));
  text-decoration-color: rgba(255,255,255,0.8);
}

.font-medium {
  font-weight: 500;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

/* Enhanced Email Links */
.text-muted-foreground a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: all 0.3s ease;
  position: relative;
}

.text-muted-foreground a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: hsl(var(--foreground));
  transition: width 0.3s ease;
}

.text-muted-foreground a:hover {
  color: hsl(var(--foreground));
  border-bottom-color: hsl(var(--foreground));
}

.text-muted-foreground a:hover::after {
  width: 100%;
}

/* Icon styles */
.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.items-start {
  align-items: flex-start;
}

.flex {
  display: flex;
}

/* Animations */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  
  .hero-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .logo {
    height: 40px;
  }
}
