/* Pet Bowl Website - Main Stylesheet */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333333;
}

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

/* Navigation */
.nav {
  background: #FFFFFF;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #333333;
  text-decoration: none;
}

.footer .logo {
  color: #FFFFFF;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #20B2AA, #00CCA3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: #20B2AA;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #20B2AA;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  z-index: 1000;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: #333333;
  text-decoration: none;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background: #E0F7FA;
  color: #20B2AA;
}

.cta-btn {
  background: #1FA79E;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-btn:hover {
  background: #178F88;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FFFFFF 0%, #F1DDC2 100%);
  color: #1F1F1F;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) translateY(-50%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #4A3F33;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #1FA79E;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  background: #178F88;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-secondary {
  background: rgba(31, 31, 31, 0.08);
  color: #1F1F1F;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(31, 31, 31, 0.12);
  transform: translateY(-3px);
}

/* Section Styles */
.section {
  padding: 100px 0;
}

.section-light {
  background: #F6EBD7;
}

.section-white {
  background: #FFFFFF;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333333;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #5F5A55;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Cards */
.card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 20px;
}

.card-icon.primary {
  background: #20B2AA;
}

.card-icon.secondary {
  background: #2196F3;
}

.card-icon.accent {
  background: #9C27B0;
}

.card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333333;
}

.card p {
  color: #888888;
  line-height: 1.6;
}

/* App Cards */
.app-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.app-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.app-card-image {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
}

.app-card-image.guinea-pig {
  background: linear-gradient(45deg, #A7D8D2, #E6D3B2);
}

.app-card-image.dog {
  background: linear-gradient(45deg, #C9B29A, #A7D8D2);
}

.app-card-content {
  padding: 30px;
}

.app-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333333;
}

.app-card p {
  color: #888888;
  margin-bottom: 20px;
  line-height: 1.6;
}

.app-card-button {
  background: #1FA79E;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.app-card-button:hover {
  background: #178F88;
  transform: translateY(-2px);
}

/* Phone Mockups */
.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone {
  width: 280px;
  height: 560px;
  background: #000;
  border-radius: 30px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 5px;
  font-size: 0.8rem;
  font-weight: 600;
}

.app-interface {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.app-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #20B2AA, #00CCA3);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(32, 178, 170, 0.3);
}

.welcome-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
}

.welcome-text p {
  color: #888888;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 30px;
}

.skip-btn {
  background: #333333;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Stats */
.stats {
  display: flex;
  gap: 60px;
  margin-top: 40px;
  justify-content: center;
}

.stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #20B2AA;
}

.stat p {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Feature Grids */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Forms */
.contact-form {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #20B2AA;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  background: #1FA79E;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background: #178F88;
  transform: translateY(-2px);
}

/* Founder Cards */
.founder-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.founder-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(45px, #20B2AA, #00CCA3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 20px;
  color: white;
}

.founder-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333333;
}

.founder-card .role {
  color: #20B2AA;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: #20B2AA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 15px;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  padding: 30px;
  border-radius: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
}

.testimonial-card.green {
  background: #E0F7FA;
  color: #20B2AA;
}

.testimonial-card.purple {
  background: #F3E5F5;
  color: #9C27B0;
}

.testimonial-card.blue {
  background: #E3F2FD;
  color: #2196F3;
}

/* Dark Sections */
.section-dark {
  background: #2C2C2C;
  color: white;
}

.section-dark .section-title,
.section-dark h2,
.section-dark h3 {
  color: white;
}

/* Coming Soon Notice */
.coming-soon {
  background: linear-gradient(45deg, #9C27B0, #2196F3);
  color: white;
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  margin-top: 60px;
}

.coming-soon h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.coming-soon p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.coming-soon .btn-secondary {
  background: white;
  color: #333333;
}

/* Footer */
.footer {
  background: #2C2C2C;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 20px;
}

.footer-content .logo {
  justify-self: start;
}

.footer-nav {
  display: flex;
  gap: 30px;
  list-style: none;
  justify-self: center;
}

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

.footer-nav a:hover {
  color: #20B2AA;
}

.social-links {
  display: flex;
  gap: 20px;
}

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

.social-links a:hover {
  color: #20B2AA;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  color: rgba(255,255,255,0.6);
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
      display: none;
  }

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

  .hero-buttons {
      flex-direction: column;
      align-items: center;
  }

  .grid-2 {
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .stats {
      gap: 30px;
  }

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

  .footer-content {
      flex-direction: column;
      gap: 20px;
  }

  .footer-nav {
      flex-wrap: wrap;
      justify-content: center;
  }

  .phone {
      width: 240px;
      height: 480px;
  }
}

/* Screenshots Gallery */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}

.screenshot-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 220px;
  margin: 0 auto;
}

.screenshot-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
  border-radius: 10px;
}

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

.store-badge-link {
  width: 170px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.store-badge {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.store-badge-google {
  transform: scale(1.08);
  transform-origin: center;
}

/* Page-specific badge normalization for guinea pig app CTAs */
.guinea-pig-page .store-badge-link {
  width: 176px;
  height: 56px;
}

.guinea-pig-page .store-badge-apple {
  transform: scale(1);
  transform-origin: center;
}

.guinea-pig-page .store-badge-google {
  transform: scale(1.04);
  transform-origin: center;
}

/* Timeline Styles */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: linear-gradient(180deg, #20B2AA, #00CCA3);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 20px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background: #FFFFFF;
  border: 4px solid #20B2AA;
  top: 30px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.right::after {
  left: -10px;
}

.timeline-content {
  padding: 30px;
  background: #FFFFFF;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-left: 5px solid #20B2AA;
}

.timeline-item.right .timeline-content {
  border-left: none;
  border-right: 5px solid #20B2AA;
}

.timeline-content h3 {
  color: #20B2AA;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.timeline-content p {
  margin: 0;
  color: #333333;
  line-height: 1.6;
}

/* Responsive timeline */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item::after {
    left: 21px;
  }
  
  .timeline-item.right {
    left: 0%;
  }
  
  .timeline-item.right .timeline-content {
    border-right: none;
    border-left: 5px solid #20B2AA;
  }
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
      display: block;
  }
}

/* Legal pages (privacy, terms) */
.legal-content {
  text-align: left;
  color: #333333;
  line-height: 1.7;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
  color: #222;
}

.legal-content h2:first-of-type {
  margin-top: 1.25rem;
}

.legal-content p,
.legal-content li {
  margin-bottom: 0.75rem;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.25rem;
}

.legal-content .legal-note {
  font-size: 0.95rem;
  color: #555;
  padding: 1rem;
  background: #f5f5f5;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}