/* ============================================
   HEM Hotels - Responsive Stylesheet
   Media Queries for Tablet and Desktop
   ============================================ */

/* ============================================
   Tablet Styles (768px and up)
   ============================================ */
@media (min-width: 768px) {
    /* Typography */
    :root {
        --font-size-h1: 3rem;      /* 48px */
        --font-size-h2: 2.25rem;   /* 36px */
        --font-size-h3: 1.75rem;   /* 28px */
    }
    
    /* Container */
    .container {
        padding: 0 var(--spacing-md);
    }
    
    /* Header */
    .header-content {
        flex-wrap: nowrap;
    }
    
    .header-phone {
        display: block;
        order: 2;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    /* Navigation */
    .nav {
        width: auto;
        order: 3;
        max-height: none;
        overflow: visible;
    }
    
    .nav-list {
        flex-direction: row;
        gap: var(--spacing-sm);
    }
    
    .nav-item {
        border-top: none;
    }
    
    .nav-link {
        padding: var(--spacing-xs) var(--spacing-sm);
        border-radius: var(--border-radius);
    }
    
    .nav-link-cta {
        margin-top: 0;
    }
    
    /* Hero Section */
    .hero {
        padding: 5rem 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-info {
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-lg);
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Rooms Grid */
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Location Content */
    .location-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
    
    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* CTA Buttons */
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Desktop Styles (1024px and up)
   ============================================ */
@media (min-width: 1024px) {
    /* Container */
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    /* Hero Section */
    .hero {
        padding: 6rem 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Rooms Grid */
    .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Room Image */
    .room-image {
        height: 300px;
    }
    
    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   Large Desktop Styles (1440px and up)
   ============================================ */
@media (min-width: 1440px) {
    /* Hero Section */
    .hero-title {
        font-size: 4rem;
    }
    
    /* Room Image */
    .room-image {
        height: 350px;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .header,
    .nav,
    .mobile-menu-toggle,
    .hero-cta,
    .cta-section,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
    
    a {
        text-decoration: underline;
    }
    
    .container {
        max-width: 100%;
    }
}

/* ============================================
   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;
    }
}

/* ============================================
   High Contrast Mode
   ============================================ */
@media (prefers-contrast: high) {
    :root {
        --color-primary: #000080;
        --color-secondary: #ff8c00;
        --color-accent: #008000;
    }
    
    .btn {
        border-width: 3px;
    }
    
    a:focus {
        outline-width: 3px;
    }
}

/* ============================================
   Dark Mode Support (Optional)
   ============================================ */
@media (prefers-color-scheme: dark) {
    /* Uncomment to enable dark mode */
    /*
    :root {
        --color-white: #1f2937;
        --color-light: #374151;
        --color-dark: #f3f4f6;
        --color-text: #f3f4f6;
    }
    
    body {
        background-color: var(--color-white);
        color: var(--color-text);
    }
    
    .header {
        background-color: #111827;
    }
    
    .feature-card,
    .room-card,
    .testimonial-card {
        background-color: #374151;
    }
    */
}