/* UNBC Stephen Website - Responsive Styles */

/* Mobile First Approach */

/* Small devices (phones, 576px and up) */
@media (max-width: 575.98px) {
    .container {
        padding: 0 10px;
    }
    
    .header__content {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        padding-left: 5%;
        min-height: 60px;
        align-items: center;
    }
    
    .header__logo {
        position: static;
        transform: none;
        flex-shrink: 0;
    }
    
    .header__menu-icon {
        height: 40px;
        width: 80px;
    }
    
    .nav__list {
        flex-direction: row;
        flex-wrap: wrap;
        width: auto;
        gap: 4px;
        margin-top: 0;
        margin-left: 10px;
    }
    
    .nav__link {
        display: inline-block;
        text-align: center;
        padding: 4px 6px;
        font-size: 10px;
        white-space: nowrap;
    }
    
    .hero__images {
        justify-content: center;
    }
    
    .hero__image {
        width: 100px;
        height: 70px;
    }
    
    .hero__wide-image {
        height: 150px;
        border-radius: 6px;
    }
    
    .content {
        padding: 20px 15px;
    }
    
    .content__title {
        font-size: 24px;
    }
    
    .contact__links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact__link {
        margin: 5px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .header__content {
        padding-left: 12%;
        min-height: 70px;
    }
    
    .header__menu-icon {
        height: 60px;
        width: 150px;
    }
    
    .nav__list {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px;
    }
    
    .nav__link {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .hero__image {
        width: 110px;
        height: 75px;
    }
    
    .hero__wide-image {
        height: 180px;
    }
    
    .content {
        padding: 25px 20px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .nav__list {
        gap: 15px;
    }
    
    .hero__image {
        width: 115px;
        height: 78px;
    }
    
    .hero__wide-image {
        height: 220px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 992px) {
    .nav__list {
        gap: 20px;
    }
    
    .hero__image {
        width: 120px;
        height: 80px;
    }
    
    .hero__wide-image {
        height: 250px;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .nav,
    .contact__links {
        display: none;
    }
    
    .content {
        border: none;
        background: white;
        padding: 0;
    }
    
    .content__title {
        color: black;
        border-bottom: 1px solid black;
    }
    
    .content__link {
        color: black;
        text-decoration: underline;
    }
    
    .territorial-acknowledgement,
    .contact {
        border: 1px solid black;
        background: white;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .content {
        border: 2px solid #000;
    }
    
    .nav__link,
    .content__link {
        text-decoration: underline;
    }
    
    .nav__link:hover,
    .nav__link--active {
        background-color: #000;
        color: #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support - disabled for now to maintain original design */
