/* Plant-Based Pet Treat Manufacturing - Responsive CSS */

/* Mobile-First Responsive Design */

/* Extra Small Devices (Portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-blob-1, .hero-blob-2 {
    display: none;
  }
  
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.3rem; }
  
  .section {
    padding: 60px 0;
  }
  
  .service-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .team-photo {
    height: 200px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .custom-navbar-brand {
    font-size: 1.2rem;
  }
}

/* Small Devices (Landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .hero-blob-1 {
    width: 200px;
    height: 200px;
  }
  
  .hero-blob-2 {
    width: 150px;
    height: 150px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  
  .section {
    padding: 70px 0;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    height: 220px;
  }
}

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 95vh;
  }
  
  .hero-blob-1 {
    width: 250px;
    height: 250px;
  }
  
  .hero-blob-2 {
    width: 180px;
    height: 180px;
  }
  
  .section {
    padding: 75px 0;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    height: 240px;
  }
  
  .gallery-img {
    height: 200px;
  }
}

/* Large Devices (Desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    height: 250px;
  }
  
  .gallery-img {
    height: 230px;
  }
}

/* Extra Large Devices (Large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .hero-blob-1 {
    width: 350px;
    height: 350px;
  }
  
  .hero-blob-2 {
    width: 250px;
    height: 250px;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    height: 250px;
  }
  
  .gallery-img {
    height: 250px;
  }
}

/* Responsive Navigation */
@media (max-width: 991.98px) {
  .custom-navbar-collapse {
    background-color: white;
    border-radius: 8px;
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .custom-nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-sage);
    display: block;
  }
  
  .custom-nav-link:last-child {
    border-bottom: none;
  }
}

/* Responsive Grid Adjustments */
@media (max-width: 767.98px) {
  .custom-responsive-grid {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }
  
  .custom-col-spacing {
    margin-bottom: 1rem;
  }
  
  .custom-col-spacing-lg {
    margin-bottom: 1.5rem;
  }
}

/* Responsive Typography */
@media (max-width: 575.98px) {
  .display-4 { font-size: 2rem; }
  .display-5 { font-size: 1.8rem; }
  .display-6 { font-size: 1.5rem; }
  
  .lead {
    font-size: 1rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
}

/* Responsive Spacing */
@media (max-width: 767.98px) {
  .py-5 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .my-5 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  
  .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Responsive Contact Form */
@media (max-width: 575.98px) {
  .contact-form .row {
    margin-bottom: 1rem;
  }
  
  .custom-btn-primary {
    width: 100%;
    padding: 1rem;
  }
}

/* Responsive Gallery */
@media (max-width: 575.98px) {
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-img {
    height: 200px;
  }
}

/* Responsive Footer */
@media (max-width: 767.98px) {
  .footer {
    text-align: center;
  }
  
  .footer .custom-footer-col {
    margin-bottom: 2rem;
  }
}

/* Responsive Team Section */
@media (max-width: 991.98px) {
  .team-card {
    margin-bottom: 2rem;
  }
}

/* Responsive Reviews Section */
@media (max-width: 767.98px) {
  .review-card {
    margin-bottom: 1.5rem;
  }
}

/* Responsive FAQ Section */
@media (max-width: 575.98px) {
  .faq-card {
    padding: 1rem;
  }
}

/* Responsive Features Section */
@media (max-width: 767.98px) {
  .feature-item {
    margin-bottom: 2rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
}

/* Responsive Hero Text */
@media (max-width: 575.98px) {
  .hero-section .custom-hero-col {
    text-align: center;
  }
  
  .hero-section .custom-hero-btn {
    margin-top: 1rem;
  }
}

/* Responsive Service Cards */
@media (max-width: 991.98px) {
  .service-card {
    text-align: center;
  }
}

/* Responsive Price Plans */
@media (max-width: 767.98px) {
  .price-card {
    margin-bottom: 2rem;
  }
}

/* Responsive Process/Timeline */
@media (max-width: 575.98px) {
  .process-item, .timeline-item {
    text-align: center;
    margin-bottom: 2rem;
  }
}

/* Responsive Case Studies */
@media (max-width: 767.98px) {
  .case-study-card {
    margin-bottom: 2rem;
  }
}

/* Responsive Career Section */
@media (max-width: 575.98px) {
  .career-item {
    margin-bottom: 2rem;
  }
} 

.hero-section h1 {
    padding-top: 100px;
}