/* Main Styles for PawPaw Pet Shop */

:root {
  --primary-color: #f8956d;
  --secondary-color: #f5f5f5;
  --accent-color: #ff6347;
  --text-color: #333;
  --light-text: #757575;
  --border-color: #e0e0e0;
  --white: #ffffff;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  background-color: var(--white);
  line-height: 1.6;
}

/* Navigation */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar-brand {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
}

.navbar-brand i {
  color: var(--primary-color);
  margin-right: 5px;
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-color);
}

.btn-link {
  color: var(--text-color);
  font-size: 18px;
  margin: 0 5px;
}

.btn-link:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  padding: 60px 0;
  background-color: #ffeee6;
  overflow: hidden;
}

.pet-image img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
  border: 4px solid var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.discount-info h1 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.discount-info p {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--text-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

/* Featured Products */
.featured-products {
  padding: 60px 0;
}

.product-card {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
  height: 180px;
  object-fit: cover;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-color);
}

.card-text {
  color: var(--primary-color);
  font-size: 18px;
  margin-bottom: 15px;
}

.btn-secondary {
  background-color: var(--text-color);
  border-color: var(--text-color);
  padding: 10px 25px;
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: var(--light-text);
  border-color: var(--light-text);
}

/* Categories */
.category-item {
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-icon img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.category-item h5 {
  color: var(--text-color);
  font-weight: 600;
  font-size: 16px;
}

/* Testimonials */
.testimonial-card {
  padding: 20px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.testimonial-text {
  font-style: italic;
  color: var(--light-text);
  margin: 15px 0;
}

.customer-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-color);
}

/* Footer */
.footer {
  background-color: #f5f5f5;
  color: var(--text-color);
  padding: 60px 0 30px;
}

.footer h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .discount-info {
      text-align: center;
      margin-top: 30px;
  }
  
  .discount-info h1 {
      font-size: 36px;
  }
  
  .discount-info p {
      font-size: 22px;
  }
  
  .pet-image img {
      max-width: 200px;
  }
}