/* Tailwind CSS imports */
@import 'https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css';

/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Base styles */
body {
  font-family: 'Montserrat', sans-serif;
}

/* Custom utility classes */
.formatted {
  white-space: pre-wrap;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Project card image square aspect ratio */
.project-card .aspect-square {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%; /* Creates a square aspect ratio */
}

.project-card .aspect-square img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Custom hover effects for project cards */
.project-card {
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.project-card img {
  transition: transform 0.3s ease;
}

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

/* Navigation link hover effects */
.nav-link {
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #1f2937;
}

/* Header title hover effect */
.header-title {
  transition: color 0.2s ease;
}

.header-title:hover {
  color: #374151;
} 