/* ===================================
   Responsive Styles
   =================================== */

/* Tablet Styles */
@media (max-width: 992px) {
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Hero */
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    /* Franchise Section */
    .franchise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .franchise-benefits {
        grid-template-columns: 1fr;
    }
    
    /* Menu Grid */
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Section Padding */
    .section-padding {
        padding: 60px 0;
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-cta {
        width: 100%;
        margin-top: 20px;
    }
    
    .nav-cta .btn {
        width: 100%;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Hero */
    .hero {
        min-height: 500px;
        height: 100vh;
    }

    /* Disable parallax on mobile — fill container normally */
    .hero-bg {
        top: 0;
        height: 100%;
        will-change: auto;
        transform: none !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Buttons */
    .btn-lg {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    /* About Section */
    .about-badge {
        width: 80px;
        height: 80px;
        padding: 15px;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .about-features {
        gap: 15px;
    }
    
    /* Menu Grid */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-image {
        height: 200px;
    }
    
    /* Franchise Section */
    .franchise-text p {
        font-size: 1rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    /* Locations */
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-hours li {
        flex-direction: column;
        gap: 5px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    /* Typography */
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Hero */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 12px 25px;
    }
    
    /* Menu Card */
    .menu-content {
        padding: 20px;
    }
    
    .menu-content h3 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    /* Location Card */
    .location-card {
        padding: 30px 20px;
    }
    
    .location-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    /* Testimonial */
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-rating i {
        font-size: 1rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-scroll,
    .chatbot-widget,
    .footer {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }
    
    .section-padding {
        padding: 30px 0;
    }
    
    * {
        box-shadow: none !important;
    }
}
