/* Eco-friendly Pet Accessories Brand - Main Stylesheet */

:root {
  /* Primary colors - pastel high-contrast palette */
  --primary-green: #89d648;
  --primary-brown: #8e796c;
  --primary-blue: #81c5e9;
  --primary-yellow: #eddebb;
  --primary-coral: #ffb19c;
  
  /* Shades */
  --primary-green-light: #a7cc6a;
  --primary-green-dark: #60a042;
  --primary-brown-light: #c8b3ac;
  --primary-brown-dark: #78463d;
  --primary-blue-light: #bfd9ff;
  --primary-blue-dark: #6db9ff;
  --primary-yellow-light: #fffbf5;
  --primary-yellow-dark: #ffea40;
  --primary-coral-light: #ffcdac;
  --primary-coral-dark: #ff8272;
  
  /* Text colors */
  --text-dark: #54342f;
  --text-medium: #543a36;
  --text-light: #d6d3d2;
  
  /* Background colors */
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
  --bg-accent: #f9fffa;
}

/* Global Styles */
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-medium);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

a {
  color: var(--primary-green-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-green);
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 50px;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: var(--primary-green);
  transform: translateX(-50%);
}

/* Header */
.navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green-dark);
}

.navbar-nav .nav-link {
  color: var(--text-medium);
  font-weight: 600;
  padding: 10px 15px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-green-dark);
}

/* Hero Section */
.hero {
  background-color: var(--bg-accent);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 150px;
}

.hero-title {
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.hero-desc {
  margin-bottom: 30px;
}

.hero-image {
  position: relative;
  z-index: 1;
}

/* About Section */
.about {
  background-color: var(--bg-white);
}

.about-feature {
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.about-feature i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 15px;
}

/* Services Section */
.services {
  background-color: var(--bg-accent);
}

.services-item {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.services-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.services-item-image {
  height: 200px;
  background-color: var(--primary-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-item-content {
  padding: 25px;
}

.services-item-name {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.services-item-desc {
  margin-bottom: 15px;
}

.services-item-features {
  margin-bottom: 15px;
}

.services-item-price {
  font-weight: 700;
  color: var(--primary-green-dark);
  font-size: 1.25rem;
}

/* Features Section */
.features {
  background-color: var(--bg-white);
}

.features-item {
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
}

.features-item i {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.features-item-name {
  margin-bottom: 15px;
}

/* Price Plan Section */
.priceplan {
  background-color: var(--bg-accent);
}

.priceplan-item {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.priceplan-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.priceplan-item-name {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.priceplan-item-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green-dark);
  margin-bottom: 20px;
}

.priceplan-item-features {
  margin-bottom: 25px;
}

.priceplan-item-features ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.priceplan-item-features ul li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.priceplan-item-features ul li:before {
  content: "\f00c";
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-green);
}

/* Team Section */
.team {
  background-color: var(--bg-white);
}

.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-member-image {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.team-member-name {
  margin-bottom: 5px;
}

.team-member-role {
  color: var(--primary-green);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background-color: var(--bg-accent);
}

.reviews-item {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.reviews-item-text {
  font-style: italic;
  margin-bottom: 15px;
  position: relative;
}

.reviews-item-text:before {
  content: "\f10d";
  font-family: 'FontAwesome';
  position: absolute;
  left: -15px;
  top: -15px;
  font-size: 1.5rem;
  color: var(--primary-green-light);
  opacity: 0.3;
}

.reviews-item-author {
  font-weight: 700;
  display: flex;
  align-items: center;
}

/* Case Studies Section */
.casestudy {
  background-color: var(--bg-white);
}

.casestudy-item {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.casestudy-item-image {
  height: 250px;
  background-color: var(--primary-blue-light);
}

.casestudy-item-content {
  padding: 25px;
}

.casestudy-item-title {
  margin-bottom: 15px;
}

/* Process Section */
.process {
  background-color: var(--bg-accent);
}

.process-item {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.process-item-number {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.process-item-title {
  margin-bottom: 15px;
}

/* Timeline Section */
.timeline {
  background-color: var(--bg-white);
}

.timeline-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
  border-left: 3px solid var(--primary-green);
}

.timeline-item-year {
  position: absolute;
  left: -10px;
  top: 0;
  background: var(--primary-green);
  color: var(--bg-white);
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 700;
}

.timeline-item-title {
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Career Section */
.career {
  background-color: var(--bg-accent);
}

.career-item {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.career-item-title {
  margin-bottom: 15px;
}

.career-item-role {
  color: var(--primary-green);
  margin-bottom: 15px;
  font-weight: 600;
}

/* Core Info Section */
.coreinfo {
  background-color: var(--bg-white);
}

.coreinfo-item {
  text-align: center;
  margin-bottom: 30px;
}

.coreinfo-item i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.coreinfo-item-title {
  margin-bottom: 15px;
}

/* Contact Form Section */
.contact {
  background-color: var(--bg-accent);
}

.contact-form {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form .form-control {
  border: 1px solid #f4f4f4;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.contact-form .form-check {
  margin-bottom: 20px;
}

.contact-form .btn-submit {
  background: var(--primary-green);
  border: none;
  color: var(--bg-white);
  padding: 12px 30px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.contact-form .btn-submit:hover {
  background: var(--primary-green-dark);
}

.contact-info {
  background: var(--primary-green);
  color: var(--bg-white);
  padding: 30px;
  border-radius: 8px;
  height: 100%;
}

.contact-info h4 {
  color: var(--bg-white);
  margin-bottom: 20px;
}

.contact-info-item {
  margin-bottom: 15px;
}

.contact-info-item i {
  margin-right: 10px;
}

/* Blog Section */
.blog {
  background-color: var(--bg-white);
}

.blog-item {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-item-image {
  height: 200px;
  background-color: var(--primary-yellow-light);
}

.blog-item-content {
  padding: 25px;
}

.blog-item-title {
  margin-bottom: 15px;
}

.blog-item-excerpt {
  margin-bottom: 15px;
}

.blog-item-link {
  color: var(--primary-green-dark);
  font-weight: 600;
}

/* FAQ Section */
.faq {
  background-color: var(--bg-accent);
}

.faq-card {
  background: var(--bg-white);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-green-dark);
}

/* Gallery Section */
.gallery {
  background-color: var(--bg-white);
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Footer */
.footer {
  background-color: var(--primary-brown-dark);
  color: var(--text-light);
  padding: 60px 0 30px;
}

.footer h4 {
  color: var(--bg-white);
  margin-bottom: 20px;
}

.footer-about {
  margin-bottom: 30px;
}

.footer-about h3 {
  color: var(--bg-white);
  margin-bottom: 15px;
}

.footer-policies {
  margin-bottom: 30px;
}

.footer-policies ul {
  list-style: none;
  padding-left: 0;
}

.footer-policies ul li {
  margin-bottom: 10px;
}

.footer-policies ul li a {
  color: var(--text-light);
}

.footer-policies ul li a:hover {
  color: var(--primary-green-light);
}

.footer-contact {
  margin-bottom: 30px;
}

.footer-disclaimer {
  margin-bottom: 30px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Breadcrumbs */
.breadcrumbs {
  background-color: var(--bg-accent);
  padding: 20px 0;
}

.breadcrumbs img {
  max-height: 30px;
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  background-color: var(--bg-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Additional Pages */
.additional-section {
  padding: 80px 0;
}

.additional-section:nth-child(odd) {
  background-color: var(--bg-white);
}

.additional-section:nth-child(even) {
  background-color: var(--bg-accent);
} 


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
