/* Mobile First Responsive Design */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 5.5rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .container {
        padding: 0 40px;
    }
    
    nav {
        padding: 1rem 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-card {
        padding: 2.5rem 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 9, 11, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .nav-links.mobile-open {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
        background: none;
        border: none;
    }
    
    nav {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 0 1rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .section-card {
        padding: 2rem 1rem;
        margin: 1rem 0;
        border-radius: 15px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .section-content {
        font-size: 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card i {
        font-size: 2rem;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .install-prompt {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .install-prompt span {
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    footer {
        padding: 2rem 0 1rem;
    }
    
    .hours-table {
        font-size: 0.9rem;
        text-align: center;
        margin: 1.5rem auto;
        max-width: 280px;
    }
    
    .hours-table div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .hours-table div:last-child {
        border-bottom: none;
    }
    
    .hours-table span:first-child {
        font-weight: 600;
        color: var(--primary-gold);
    }
}

/* Small mobile (up to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    nav {
        padding: 0.8rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .section-card {
        padding: 1.5rem 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-card i {
        font-size: 1.8rem;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .hours-table {
        font-size: 0.8rem;
        text-align: center;
        margin: 1.2rem auto;
        max-width: 260px;
    }
    
    .hours-table div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .hours-table div:last-child {
        border-bottom: none;
    }
    
    .hours-table span:first-child {
        font-weight: 600;
        color: var(--primary-gold);
        font-size: 0.9rem;
    }
}

/* Extra small mobile (up to 320px) */
@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-content {
        font-size: 0.9rem;
    }
    
    .info-card {
        padding: 0.8rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
    
    .hours-table {
        font-size: 0.75rem;
        text-align: center;
        margin: 1rem auto;
        max-width: 240px;
    }
    
    .hours-table div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.15rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .hours-table div:last-child {
        border-bottom: none;
    }
    
    .hours-table span:first-child {
        font-weight: 600;
        color: var(--primary-gold);
        font-size: 0.85rem;
    }
}

/* Landscape mobile orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .tagline {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    
    .btn {
        margin-top: 1rem !important;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-content h1 {
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }
    
    .logo {
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
}

/* Print styles */
@media print {
    header {
        position: static;
        background: white;
        color: black;
    }
    
    .hero {
        height: auto;
        background: white;
        color: black;
    }
    
    .section-card {
        background: white;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .install-prompt,
    .mobile-menu {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}