/* ===== Tiny Paw Solutions — Portfolio Styles ===== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
  --pink: #e91e8c;
  --purple: #7c3aed;
  --dark-purple: #4c1d95;
  --bg-page: #f5f0f7;
  --bg-card: #ffffff;
  --text-primary: #2d2d3a;
  --text-muted: #8a7a9a;
  --text-accent: #4a148c;
  --gradient: linear-gradient(135deg, #e91e8c, #7c3aed);
  --gradient-hover: linear-gradient(135deg, #f43f9e, #8b5cf6);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  cursor: url('../images/logo-cursor-resize.png'), auto;
  overflow-x: hidden;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(124, 58, 237, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(233, 30, 140, 0.05) 0%, transparent 60%),
    var(--bg-page);
}

.hero-logo {
  width: 180px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px rgba(124, 58, 237, 0.25));
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero .tagline {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .tagline {
    font-size: 1rem;
  }

  .hero-logo {
    width: 130px;
  }
}

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