/* Responsive Design - Essential Media Queries */

/* Large Devices */
@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 2.88rem;
    }
    section {
        padding: 4rem 0;
    }
}

/* Medium Devices - Tablets */
@media (max-width: 991.98px) {
    .hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
        min-height: 80vh;
        padding: 2rem 0;
    }
    .hero-section h1 {
        font-size: 2.63rem;
        text-align: center;
    }
    .hero-section p {
        text-align: center;
    }
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    section {
        padding: 3rem 0;
    }
    h2 {
        text-align: center;
    }
}

/* Small Devices - Mobile */
@media (max-width: 767.98px) {
    .hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
        min-height: 70vh;
        padding: 1.5rem 0;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .navbar-brand {
        font-size: 1.35rem !important;
    }
    section {
        padding: 2.5rem 0;
    }
    h2 {
        font-size: 1.67rem;
    }
    .card {
        margin-bottom: 1.57rem;
    }
    .card-img-top {
        height: 160px;
    }
    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    .fa-3x {
        font-size: 2rem !important;
    }
    footer .col-md-3,
    footer .col-md-6 {
        margin-bottom: 2rem;
        text-align: center;
    }
}

/* Extra Small Devices */
@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 1.91rem;
    }
    .navbar-brand {
        font-size: 1.24rem !important;
    }
    section {
        padding: 2rem 0;
    }
    h2 {
        font-size: 1.62rem;
    }
    .card-img-top {
        height: 140px;
    }
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Touch Devices */
@media (hover: none) and (pointer: coarse) {
    .card:hover {
        transform: none;
    }
    .btn:hover {
        transform: none;
    }
    .btn {
        min-height: 44px;
    }
    .form-control {
        min-height: 44px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
    html {
        scroll-behavior: auto;
    }
} 