/* about-styles.css - Styles for the About Us page */

/* Page Layout */
.about-us {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-us h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: #4e3b6a;
  position: relative;
}

.about-us h1:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #f78fb3, #b197fc);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Hero Section */
.hero-banner {
  position: relative;
  background: url('../images/kitten-hero.jpg') no-repeat center center;
  background-size: cover;
  height: 380px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  color: #fff;
  z-index: 1;
  max-width: 800px;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Company Intro */
.company-intro {
  margin-bottom: 60px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.company-intro h2 {
  font-size: 1.8rem;
  color: #4e3b6a;
  margin-bottom: 20px;
}

.company-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Our Story */
.our-story {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.story-content {
  flex: 1;
}

.story-content h2 {
  font-size: 1.8rem;
  color: #4e3b6a;
  margin-bottom: 20px;
}

.story-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.story-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.story-image:hover img {
  transform: scale(1.03);
}

/* Expertise Grid */
.our-expertise {
  margin-bottom: 60px;
  text-align: center;
}

.our-expertise h2 {
  font-size: 1.8rem;
  color: #4e3b6a;
  margin-bottom: 40px;
  text-align: center;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.expertise-item {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.expertise-item i {
  font-size: 2.5rem;
  color: #f78fb3;
  margin-bottom: 20px;
}

.expertise-item h3 {
  font-size: 1.3rem;
  color: #4e3b6a;
  margin-bottom: 15px;
}

.expertise-item p {
  color: #666;
  line-height: 1.6;
}

/* Our Commitment */
.our-commitment {
  background-color: #f9f4ff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 60px;
}

.our-commitment h2 {
  font-size: 1.8rem;
  color: #4e3b6a;
  margin-bottom: 25px;
  text-align: center;
}

.our-commitment p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.commitment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.commitment-item {
  display: flex;
  align-items: flex-start;
}

.commitment-icon {
  color: #b197fc;
  font-size: 1.5rem;
  margin-right: 15px;
}

.commitment-text {
  flex: 1;
}

.commitment-text h3 {
  font-size: 1.2rem;
  color: #4e3b6a;
  margin-bottom: 8px;
}

.commitment-text p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Testimonials */
.testimonials {
  margin-bottom: 60px;
  text-align: center;
}

.testimonials h2 {
  font-size: 1.8rem;
  color: #4e3b6a;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-item {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-item::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: #f78fb380;
  line-height: 1;
}

.testimonial-content {
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-author-info h4 {
  font-size: 1.1rem;
  color: #4e3b6a;
  margin: 0;
}

.testimonial-author-info p {
  font-size: 0.9rem;
  color: #888;
  margin: 5px 0 0;
}

/* CTA Section */
.cta {
  background: linear-gradient(to right, #fff4f8, #f9f4ff);
  padding: 50px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cta h2 {
  font-size: 1.8rem;
  color: #4e3b6a;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(to right, #f78fb3, #b197fc);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 10px rgba(177, 151, 252, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(177, 151, 252, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .our-story {
    flex-direction: column;
  }
  
  .story-content, .story-image {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-us h1 {
    font-size: 2rem;
  }
  
  .hero-banner {
    height: 300px;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .expertise-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .commitment-list {
    grid-template-columns: 1fr;
  }
}

/* Animation Effects */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Paw Print Background */
.paw-background {
  position: relative;
  overflow: hidden;
}

.paw-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/paw-pattern.png');
  background-size: 300px;
  opacity: 0.03;
  z-index: -1;
}