/**
 * Hotel by Taino Estudio - Additional Responsive Styles
 *
 * @package Hotel_By_Taino
 */

/* Print styles */
@media print {
    .hbt-header,
    .hbt-mobile-nav,
    .hbt-mobile-overlay,
    .hbt-booking-bar,
    .hbt-newsletter,
    .hbt-footer-social,
    .hbt-hamburger {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .hbt-hero {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }

    .hbt-section {
        padding: 30px 0;
    }
}

/* High DPI / Retina */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hbt-logo img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Prefers reduced motion */
@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;
    }

    .hbt-fade-in,
    .hbt-fade-in-left,
    .hbt-fade-in-right {
        opacity: 1;
        transform: none;
    }

    .hbt-hero-slide {
        transition: none;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Reserved for future dark mode implementation */
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--hbt-primary);
    outline-offset: 2px;
}

/* Landscape phone */
@media (max-width: 812px) and (orientation: landscape) {
    .hbt-hero {
        min-height: 350px;
        max-height: 500px;
    }

    .hbt-page-hero {
        min-height: 300px;
    }
}
