/* Responsive Styles - Mobile First Approach */

/* Extra Small devices (phones, 576px and up) */
@media (min-width: 576px) {
    .hero-title {
        font-size: 2.54rem;
    }
    
    .service-card,
    .team-card,
    .review-card {
        margin-bottom: 1.73rem;
    }
}

/* Small devices (landscape phones, 768px and up) */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.33rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .navbar-nav {
        flex-direction: row;
    }
    
    .navbar-nav .nav-link {
        margin: 0 1rem;
    }
    
    .gallery-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium devices (tablets, 992px and up) */
@media (min-width: 992px) {
    .hero-title {
        font-size: 3.53rem;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .feature-card,
    .service-card,
    .team-card,
    .review-card {
        margin-bottom: 0;
    }
    
    .gallery-layout {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-form {
        padding: 3rem;
    }
}

/* Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section {
        padding: 6rem 0;
    }
    
    .gallery-layout {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Extra large devices (large desktops, 1400px and up) */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 4.54rem;
    }
    
    .container {
        max-width: 1320px;
    }
}

/* Mobile Specific Styles */
@media (max-width: 767px) {
    .navbar-collapse {
        background: var(--bg-primary);
        border-radius: 8px;
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 9px 6px rgba(0,0,0,0.1);
    }
    
    .hero {
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    padding-top: 175px;
}
    
    .section-title {
        font-size: 1.89rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .service-card,
    .team-card,
    .review-card,
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .btn-primary {
        width: 100%;
        margin-top: 1rem;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .gallery-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
    
    .price-card {
        margin-bottom: 2rem;
    }
}

/* Tablet Specific Styles */
@media (min-width: 768px) and (max-width: 991px) {
    .hero {
        padding: 3rem 0;
    }
    
    .service-card,
    .team-card,
    .review-card {
        margin-bottom: 2rem;
    }
    
    .gallery-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .hero-title,
    .section-title {
        color: #000;
    }
    
    .hero-subtitle,
    .section-subtitle,
    .hero-desc,
    .section-desc {
        color: #393636;
    }
    
    .service-card,
    .team-card,
    .review-card,
    .feature-card {
        border: 1px solid #cacaca;
        margin-bottom: 1rem;
    }
} 