/* ====================================
   BOTICA BISTRO - RESPONSIVE STYLES
   ==================================== */

/* Mobile hero overlay — subtle fade so text is readable without killing the illustration */
@media (max-width: 768px) {
    .hero::before {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.45) 100%
        );
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .nav {
        flex-direction: row;
        gap: var(--spacing-md);
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        gap: var(--spacing-sm);
    }

    .section-title {
        font-size: 2rem;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .location-info {
        padding-right: 0;
    }

    .manifesto {
        padding: var(--spacing-lg);
    }

    .social-links {
        gap: var(--spacing-lg);
    }

    .social-link {
        width: 100px;
        height: 100px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .menu-photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-xxl: 2.5rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .header {
        position: relative;
    }

    .header-content {
        padding: var(--spacing-sm) 0;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .tagline {
        font-size: 0.7rem;
    }

    .nav {
        font-size: 0.75rem;
        gap: var(--spacing-sm);
        width: 100%;
    }

    .nav-item {
        padding: 4px 0;
        border-bottom: 1px solid transparent;
        font-size: 0.8rem;
    }

    .language-selector {
        width: 100%;
        justify-content: center;
    }

    .lang-btn {
        padding: var(--spacing-xs) 0.5rem;
        font-size: 0.65rem;
    }

    section {
        padding: var(--spacing-xl) var(--spacing-sm);
    }

    .hero {
        padding: var(--spacing-xl) var(--spacing-sm);
        min-height: 400px;
    }

    .hero -title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-lg);
    }

    .manifesto {
        padding: var(--spacing-lg);
        border-radius: 4px;
    }

    .manifesto p {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-md);
    }

    .menu-tabs {
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-lg);
    }

    .menu-tab {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .menu-items {
        gap: var(--spacing-md);
    }

    .menu-item {
        padding: var(--spacing-md);
        border-radius: 4px;
    }

    .menu-item-name {
        font-size: 1.1rem;
    }

    .menu-item-description {
        font-size: 0.85rem;
    }

    .info-block h3 {
        font-size: 1.2rem;
    }

    .info-block p {
        font-size: 0.9rem;
    }

    .map-container {
        height: auto;
    }

    .map-container iframe {
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .social-link {
        width: 90px;
        height: 90px;
        font-size: 0.7rem;
    }

    .footer p {
        font-size: 0.8rem;
    }
}

/* Small screens (320px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .social-link {
        width: 80px;
        height: 80px;
        font-size: 0.65rem;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .nav,
    .language-selector,
    .btn,
    .order-buttons,
    .social-links {
        display: none;
    }

    body {
        background: white;
    }

    section {
        page-break-inside: avoid;
    }
}
