/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #2d2d2d;
}

h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #2d2d2d;
}

p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.nav-logo h2 {
  font-size: 1.8rem;
  background: url('attached_assets/image_1756512320009.jpeg');
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  background: url('attached_assets/image_1756512320009.jpeg');
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: url('attached_assets/image_1756512320009.jpeg');
  background-size: cover;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  color: white;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
  background: url('attached_assets/image_1756512320009.jpeg');
  background-size: cover;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
  background: url('attached_assets/image_1756512320009.jpeg');
  background-size: cover;
  filter: brightness(0.8);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease-out 0.6s both;
  padding: 100px;
}

.cat-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

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

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-circle,
.floating-square,
.floating-triangle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  animation: float 8s ease-in-out infinite;
}

.floating-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 20%;
  right: 10%;
  animation-delay: -2s;
}

.floating-square {
  width: 40px;
  height: 40px;
  top: 60%;
  left: 10%;
  animation-delay: -4s;
  transform: rotate(45deg);
}

.floating-triangle {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 43px solid rgba(255, 255, 255, 0.1);
  top: 10%;
  left: 20%;
  animation-delay: -6s;
}

/* Cat-themed border elements - COMEDIC SIZE! */
.cat-border-element {
  position: absolute;
  font-size: 3em !important;
  opacity: 0.95;
  pointer-events: none;
  z-index: 15;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
  animation: catComedyBounce 4s ease-in-out infinite;
}

/* Top border elements */
.cat-toy-mouse {
  top: -5px;
  left: 20%;
  animation-delay: -1s;
}

.cat-toy-fish {
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -3s;
}

.cat-toy-yarn {
  top: -5px;
  right: 20%;
  animation-delay: -5s;
}

/* Right border elements */
.cat-toy-ball {
  top: 20%;
  right: -5px;
  animation-delay: -2s;
}

.cat-toy-treat {
  top: 50%;
  right: -4px;
  transform: translateY(-50%);
  animation-delay: -4s;
}

.cat-toy-feather {
  bottom: 20%;
  right: -5px;
  animation-delay: -6s;
}

/* Bottom border elements */
.cat-toy-paw {
  bottom: -5px;
  right: 20%;
  animation-delay: -7s;
}

.cat-toy-bell {
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -1.5s;
}

.cat-toy-heart {
  bottom: -5px;
  left: 20%;
  animation-delay: -3.5s;
}

/* Left border elements */
.cat-toy-whiskers {
  top: 20%;
  left: -5px;
  animation-delay: -8s;
}

.cat-toy-collar {
  top: 50%;
  left: -4px;
  transform: translateY(-50%);
  animation-delay: -2.5s;
}

.cat-toy-catnip {
  bottom: 20%;
  left: -5px;
  animation-delay: -4.5s;
}

@keyframes catToyFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.8;
  }
  25% {
    transform: translateY(-15px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-25px) rotate(180deg);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-10px) rotate(270deg);
    opacity: 1;
  }
}

@keyframes catComedyBounce {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.95;
  }
  25% {
    transform: translateY(-30px) rotate(15deg) scale(1.1);
    opacity: 1;
  }
  50% {
    transform: translateY(-45px) rotate(-10deg) scale(1.2);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-20px) rotate(25deg) scale(1.05);
    opacity: 1;
  }
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-line {
  width: 80px;
  height: 4px;
  background: url('attached_assets/image_1756512320009.jpeg');
  background-size: cover;
  margin: 1rem auto;
  border-radius: 2px;
}

/* Mission Section */
.mission {
  background: white;
}

.mission-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-text h3 {
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.mission-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  color: white;
  transition: transform 0.3s ease;
}

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

.stat h4 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.stat p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* About Section */
.about {
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-3px);
}

.feature h4 {
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.feature p {
  margin: 0;
  color: #666;
}

.about-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid;
  border-image: url('attached_assets/image_1756512320009.jpeg') 1;
}

.about-card h3 {
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.about-card ul {
  list-style: none;
}

.about-card li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.about-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  background: url('attached_assets/image_1756512320009.jpeg');
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
}

/* Team Section */
.team {
  background: white;
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: #666;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.member-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.team-member h4 {
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.role {
  background: url('attached_assets/image_1756512320009.jpeg') !important;
  background-size: cover;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
  font-weight: 600;
  margin-bottom: 1rem !important;
}

.bio {
  font-size: 0.95rem;
  margin: 0;
}

/* Move The AI's image up */
.team-member:first-child .member-photo {
  transform: translateY(-25px);
}

/* Portfolio Section */
.portfolio {
  background: #f8f9fa;
}

.portfolio-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: #666;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-image {
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
}

.portfolio-content {
  padding: 2rem;
}

.portfolio-content h4 {
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.portfolio-content p {
  margin-bottom: 1.5rem;
}

.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.portfolio-tags span {
  background: url('attached_assets/image_1756512320009.jpeg');
  background-size: cover;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Contact Section */
.contact {
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-details {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item h4 {
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.contact-item p {
  margin: 0;
  color: #666;
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  margin-bottom: 1rem;
}

.project-textarea-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.project-textarea-row input,
.project-textarea-row textarea {
  margin-bottom: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: 2px solid;
  border-image: url('attached_assets/image_1756512320009.jpeg') 1;
}

.submit-button {
  background: url('attached_assets/image_1756512320009.jpeg');
  background-size: cover;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-button:hover {
  background: url('attached_assets/image_1756512320009.jpeg');
  background-size: cover;
  filter: brightness(0.8);
  transform: translateY(-2px);
}

/* Wanted Team Section */
.wanted-team {
  background: #f8f9fa;
  padding: 5rem 0;
}

.wanted-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: #666;
}

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

.wanted-member {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid;
  border-image: url('attached_assets/image_1756512320009.jpeg') 1;
}

.wanted-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.wanted-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.wanted-member h4 {
  text-align: center;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.wanted-role {
  text-align: center;
  background: url('attached_assets/image_1756512320009.jpeg') !important;
  background-size: cover;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
  font-weight: 600;
  margin-bottom: 1rem !important;
  font-size: 1rem;
}

.wanted-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.wanted-perks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wanted-perks span {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.wanted-cta {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.wanted-cta a {
  background: url('attached_assets/image_1756512320009.jpeg');
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-decoration: none;
  font-weight: 600;
}

.wanted-cta a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  background: url('attached_assets/image_1756512320009.jpeg');
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-links h4,
.footer-social h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  background: url('attached_assets/image_1756512320009.jpeg');
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  background: url('attached_assets/image_1756512320009.jpeg');
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes catToyBounce {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.1);
  }
}

/* Wanted Team Section */
.wanted-team {
  background: #f8f9fa;
}

.wanted-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: #666;
}

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

.wanted-member {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.wanted-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #ccc;
}

.wanted-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.wanted-member h4 {
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.wanted-role {
  color: #666;
  font-weight: 600;
  margin-bottom: 1rem;
  font-style: italic;
}

.wanted-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.wanted-perks {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.wanted-perks span {
  background: url('attached_assets/image_1756512320009.jpeg');
  background-size: cover;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.wanted-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.wanted-cta a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
}

.wanted-cta a:hover {
  background: url('attached_assets/image_1756512320009.jpeg');
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .mission-content,
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cat-image {
    max-width: 300px;
  }
  
  section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .hero-text p {
    font-size: 1.1rem;
  }
  
  .cat-image {
    max-width: 250px;
  }
  
  .team-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}