/* Responsive CSS for DogTrail Adventures */

/* Large Devices (992px and up) */
@media (min-width: 992px) {
    .hero-title {
        font-size: 2.87rem;
    }
}

/* Medium Devices (768px and up) */
@media (min-width: 768px) {
    .hero-title {
        font-size: 2.52rem;
    }
    
    .hero-subtitle {
        font-size: 1.54rem;
    }
    
    .feature-card {
        padding: 2.5rem 2rem;
    }
    
    .team-photo {
        width: 180px;
        height: 180px;
    }
}

/* Small Devices (576px and up) */
@media (min-width: 576px) {
    .hero-title {
        font-size: 2.24rem;
    }
    
    .hero-subtitle {
        font-size: 1.32rem;
    }
    
    .navbar-brand {
        font-size: 1.63rem;
    }
    
    .feature-icon {
        font-size: 3.03rem;
    }
}

/* Mobile First - Extra Small Devices (less than 576px) */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.91rem;
        margin-bottom: 1.18rem;
    }
    
    .hero-subtitle {
        font-size: 1.13rem;
        margin-bottom: 1.18rem;
    }
    
    .hero-description {
        font-size: 0.91rem;
    }
    
    h2 {
        font-size: 1.66rem;
    }
    
    h3 {
        font-size: 1.24rem;
    }
    
    h4 {
        font-size: 1.15rem;
    }
    
    p {
        font-size: 0.91rem;
    }
    
    .navbar-brand {
        font-size: 1.24rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        text-align: center;
    }
    
    .hero-section {
  padding-top: 50px;
        min-height: 70vh;
        padding: 2rem 0;
    }
    
    .hero-section .row {
        flex-direction: column-reverse;
    }
    
    .hero-section .col-lg-6:first-child {
        text-align: center;
        margin-top: 2.21rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.64rem;
    }
    
    .feature-icon {
        font-size: 2.06rem;
    }
    
    .service-card {
        margin-bottom: 2.15rem;
    }
    
    .service-content {
        padding: 1.2rem;
    }
    
    .price {
        font-size: 1.63rem;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
    
    .team-member {
        padding: 1.5rem 1rem;
        margin-bottom: 1.64rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-control {
        padding: 0.7rem 0.8rem;
    }
    
    .btn-primary {
        padding: 0.7rem 1.5rem;
        width: 100%;
    }
    
    footer {
        text-align: center;
    }
    
    footer .col-lg-4 {
        margin-bottom: 2.15rem;
    }
    
    .blog-card {
        margin-bottom: 2.15rem;
    }
    
    .blog-content {
        padding: 1.2rem;
    }
}

/* Very small devices (less than 400px) */
@media (max-width: 399.98px) {
    .hero-title {
        font-size: 1.66rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .navbar-brand {
        font-size: 1.13rem;
    }
    
    h2 {
        font-size: 1.54rem;
    }
    
    h3 {
        font-size: 1.13rem;
    }
    
    .feature-card,
    .service-card .service-content,
    .team-member,
    .contact-form {
        padding: 1rem;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
    
    .price {
        font-size: 1.32rem;
    }
    
    .feature-icon {
        font-size: 2.06rem;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    footer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h2 {
        font-size: 18pt;
    }
    
    h3 {
        font-size: 16pt;
    }
    
    h4 {
        font-size: 14pt;
    }
    
    .hero-section {
  padding-top: 50px;
        background: none !important;
        color: black !important;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-description {
        color: black !important;
    }
    
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
}