/* Smokehouse BBQ - Responsive Styles */

/* Large Desktop - 1200px+ */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .container {
        max-width: 1400px;
    }
    
    .menu-categories {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop - 992px to 1199px */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
}

/* Tablet - 768px to 991px */
@media (max-width: 991px) {
    :root {
        --section-padding: 3rem 0;
        --container-padding: 0 1.5rem;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 1rem;
        position: static;
        margin-top: 3rem;
    }
    
    .info-card {
        text-align: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-image {
        order: -1;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .menu-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Large - 576px to 767px */
@media (max-width: 767px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-container {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .hero-content-box {
        padding: 2rem;
    }
    
    .title-main {
        font-size: 3.5rem;
    }
    
    .title-sub {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-card .feature-icon {
        font-size: 2rem;
    }
    
    .hero-info-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .info-divider {
        display: none;
    }
    
    .info-item {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(47, 27, 20, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        gap: 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        height: 100vh;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-location {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-info {
        position: static;
        margin-top: 2rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .story-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .story-card h3 {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .story-content {
        padding: 2rem;
    }
    
    .feature {
        padding: 1.2rem;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-category {
        padding: 1.5rem;
    }
    
    .menu-category h3 {
        font-size: 1.5rem;
    }
    
    .menu-item {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .item-image-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .menu-footer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-note {
        flex-direction: column;
        text-align: center;
    }
    
    .story-stats {
        gap: 1rem;
    }
    
    .about-image {
        max-width: 100%;
    }
    
    .specialties-list {
        justify-content: center;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-highlights {
        gap: 1rem;
    }
    
    .highlight-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .hours-day {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-cta {
        order: -1;
    }
}

/* Mobile Medium - 481px to 575px */
@media (max-width: 575px) {
    .hero-container {
        padding: 1rem;
        gap: 1rem;
    }
    
    .hero-badge-top {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
    }
    
    .badge-established,
    .badge-authentic {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .hero-content-box {
        padding: 1.5rem;
    }
    
    .title-main {
        font-size: 2.8rem;
    }
    
    .title-sub {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .feature-card {
        padding: 0.8rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }
    
    .feature-card .feature-icon {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .feature-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    .feature-card p {
        font-size: 0.75rem;
    }
    :root {
        --section-padding: 2.5rem 0;
        --container-padding: 0 1rem;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .nav-tagline {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .info-card {
        padding: 1.2rem;
    }
    
    .info-card h3 {
        font-size: 1rem;
    }
    
    .info-card p {
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .story-content {
        padding: 1.5rem;
    }
    
    .story-text h3 {
        font-size: 1.5rem;
    }
    
    .story-text .lead {
        font-size: 1.1rem;
    }
    
    .stat-card .stat-number {
        font-size: 2rem;
    }
    
    .features-title {
        font-size: 1.6rem;
    }
    
    .menu-category {
        padding: 1.2rem;
    }
    
    .menu-item {
        padding: 1rem;
    }
    
    .menu-item h4 {
        font-size: 1.1rem;
    }
    
    .contact-card {
        padding: 1.2rem;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
    }
}

/* Mobile Small - 320px to 480px */
@media (max-width: 480px) {
    .nav-menu {
        top: 60px;
    }
    
    .hero {
        height: 90vh;
    }
    
    .title-main {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .title-sub {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .hero-highlights {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .highlight-item {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .menu-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .highlight-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .item-image-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .menu-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .specialties-list {
        justify-content: center;
    }
    
    .hero-location {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .story-card h3 {
        font-size: 1.1rem;
    }
    
    .menu-category h3 {
        font-size: 1.3rem;
    }
    
    .menu-item h4 {
        font-size: 1rem;
    }
    
    .menu-item p {
        font-size: 0.9rem;
    }
    
    .contact-card h3 {
        font-size: 1rem;
    }
    
    .map-container iframe {
        height: 200px;
    }
}

/* Extra Small Mobile - under 320px */
@media (max-width: 319px) {
    .hero-container {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .hero-badge-top {
        display: none;
    }
    
    .hero-content-box {
        padding: 1.2rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .btn-large {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-info-bar {
        font-size: 0.8rem;
    }
    
    .info-label {
        font-size: 0.65rem;
    }
    
    .info-value {
        font-size: 0.8rem;
    }
    .container {
        padding: 0 0.5rem;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-location {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .story-card,
    .feature,
    .menu-category,
    .contact-card {
        padding: 1rem;
    }
    
    .info-card {
        padding: 1rem;
    }
}

/* Landscape Phone */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        padding: 0 1rem;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .hero-location {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
    
    .hero-info {
        display: none;
    }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-size: cover;
    }
}

/* 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;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .contact-card,
    .story-card,
    .feature,
    .menu-item {
        background: #2A2A2A;
        color: #E0E0E0;
    }
    
    .menu-category {
        background: linear-gradient(135deg, #333333 0%, #2A2A2A 100%);
    }
    
    .contact-card h3,
    .story-card h3,
    .feature h4,
    .menu-item h4 {
        color: var(--accent-color);
    }
    
    .contact-card p,
    .story-card p,
    .feature p,
    .menu-item p {
        color: #C0C0C0;
    }
}

/* Print Optimization */
@media print {
    .hero {
        background: none !important;
        color: #000 !important;
        height: auto !important;
        padding: 2rem 0 !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
        color: #000 !important;
    }
    
    .section-header h2 {
        font-size: 1.5rem !important;
        color: #000 !important;
    }
    
    .contact-card,
    .story-card,
    .menu-category {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        background: #fff !important;
        color: #000 !important;
    }
    
    .map-container {
        display: none !important;
    }
    
    .hero-buttons {
        display: none !important;
    }
    
    .menu-full,
    .menu-section {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        background: #fff !important;
        color: #000 !important;
    }
}

/* Full Menu Responsive Styles */
@media (max-width: 991px) {
    .menu-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .menu-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .menu-section {
        padding: 1.5rem;
    }
    
    .menu-section .section-title {
        font-size: 1.2rem;
    }
    
    .menu-list-item .price-group {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .topping-list {
        gap: 0.25rem;
    }
    
    .topping-item {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .menu-section {
        padding: 1rem;
    }
    
    .menu-section .section-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .menu-list-item {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        padding: 1rem 0;
    }
    
    .menu-list-item .item-price {
        margin-left: 0;
    }
    
    .menu-list-item .price-group {
        width: 100%;
        justify-content: space-between;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .menu-list-item .price-label {
        font-size: 0.7rem;
    }
    
    .topping-list {
        justify-content: center;
    }
    
    .topping-item {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}