/* Responsive CSS for Ocean Plastic Skate Deck */

/* Mobile First Responsive Design */

/* Extra Small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2rem;
    padding-top: 200px;
}
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .feature-card,
    .service-card,
    .pricing-card {
        margin-bottom: 1.5rem;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.25rem;
    padding-top: 200px;
}
    
    .section-padding {
        padding: 50px 0;
    }
    
    .team-member img {
        width: 120px;
        height: 120px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    padding-top: 200px;
}
    
    .section-padding {
        padding: 60px 0;
    }
    
    .team-member img {
        width: 130px;
        height: 130px;
    }
    
    .contact-form {
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1.02);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-section {
        text-align: left;
    }
    
    .hero-section h1 {
        font-size: 2.75rem;
    padding-top: 200px;
}
    
    .section-padding {
        padding: 70px 0;
    }
    
    .contact-form {
        margin-bottom: 0;
    }
    
    .pricing-card.featured {
        transform: scale(1.05);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-section h1 {
        font-size: 3rem;
    padding-top: 200px;
}
    
    .section-padding {
        padding: 80px 0;
    }
    
    .team-member img {
        width: 150px;
        height: 150px;
    }
}

/* Ultra wide screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-section h1 {
        font-size: 3.5rem;
    padding-top: 200px;
}
}

/* Landscape orientation adjustments */
@media screen and (orientation: landscape) and (max-height: 600px) {
    .hero-section {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .section-padding {
        padding: 40px 0;
    }
}

/* Print styles */
@media print {
    .navbar,
    .breadcrumb-nav,
    #gallery,
    .footer {
        display: none;
    }
    
    .hero-section {
        background: none;
        color: black;
    }
    
    .section-padding {
        padding: 20px 0;
    }
    
    a {
        text-decoration: underline;
    }
    
    .feature-card,
    .service-card,
    .pricing-card {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-section {
        background: #000;
        color: #fff;
    }
    
    .feature-card,
    .service-card,
    .pricing-card {
        border: 2px solid #000;
    }
    
    .btn-primary {
        background: #000;
        color: #fff;
        border: 2px solid #fff;
    }
}

/* Dark mode support */

/* Focus improvements for accessibility */
@media (prefers-reduced-motion: no-preference) {
    .feature-card:focus-within,
    .service-card:focus-within,
    .pricing-card:focus-within {
        transform: translateY(-5px);
        transition: transform 0.3s ease;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .service-card:hover,
    .pricing-card:hover {
        transform: none;
    }
    
    .btn-primary,
    .btn-outline-primary {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 1rem;
    }
} 