/* ========================================
   Premium Restaurant Menu Site - 2026
   White + Orange Theme, Helvetica Stack
   ======================================== */

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: Helvetica, Arial, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    background: #FF6A00;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    z-index: 10000;
}

.skip-link:focus {
    top: 16px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Sticky Contact Bar
   ======================================== */

.contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.contact-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 32px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 140px;
}

.contact-btn-whatsapp {
    background: #FF6A00;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.3);
}

.contact-btn-whatsapp:hover {
    background: #E55F00;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 106, 0, 0.4);
}

.contact-btn-whatsapp:active {
    transform: translateY(0);
}

.contact-btn-call {
    background: #ffffff;
    color: #FF6A00;
    border: 2px solid #FF6A00;
}

.contact-btn-call:hover {
    background: #FFF5F0;
    transform: translateY(-2px);
}

.contact-btn-call:active {
    transform: translateY(0);
}

.contact-btn:focus-visible {
    outline: 3px solid rgba(255, 106, 0, 0.4);
    outline-offset: 3px;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    padding: 80px 0 64px;
    background: linear-gradient(180deg, #FFF5F0 0%, #ffffff 100%);
}

.hero-header-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 32px;
}

.wolt-cta-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FF6A00;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.25);
}

.wolt-cta-header:hover {
    background: #E55F00;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 106, 0, 0.35);
}

.wolt-cta-header:focus-visible {
    outline: 3px solid rgba(255, 106, 0, 0.4);
    outline-offset: 3px;
}

.wolt-cta-header:active {
    transform: translateY(0);
}

.hero-content {
    text-align: center;
}

.logo {
    max-width: 280px;
    margin: 0 auto 24px;
}

.hero-title {
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-slogan {
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 600;
    color: #FF6A00;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: #666;
    margin-bottom: 32px;
}

.hero-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 15px;
}

.hero-info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.hero-info-item:hover {
    color: #FF6A00;
}

.hero-info-item svg {
    flex-shrink: 0;
}

/* ========================================
   Deals Section
   ======================================== */

.deals-section {
    padding: 64px 0 0;
    /* padding bottom handled by next section top padding usually, or add logic */
    background: #ffffff;
}

.deals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.deal-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.deal-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Language Section
   ======================================== */

.language-section {
    padding: 56px 0;
    background: #ffffff;
}

.section-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.language-switcher {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.lang-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 20px 32px;
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 120px;
}

.lang-code {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.lang-name {
    font-size: 13px;
    color: #666;
}

.lang-btn:hover {
    border-color: #FF6A00;
    background: #FFF5F0;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.15);
}

.lang-btn.active,
.lang-btn-active {
    background: #FF6A00;
    border-color: #FF6A00;
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.3);
}

.lang-btn.active .lang-code,
.lang-btn.active .lang-name,
.lang-btn-active .lang-code,
.lang-btn-active .lang-name {
    color: #ffffff;
}

.lang-btn:focus-visible {
    outline: 3px solid rgba(255, 106, 0, 0.4);
    outline-offset: 3px;
}

.lang-btn:active {
    transform: translateY(0);
}

.menu-action-container {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.view-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 32px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.view-menu-btn:hover {
    background: #FF6A00;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.3);
}

.view-menu-btn:active {
    transform: translateY(0);
}

/* ========================================
   Menu Viewer
   ======================================== */

.menu-viewer {
    padding: 0 0 64px;
    background: #ffffff;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.menu-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.3s ease;
}

.menu-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.menu-image {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.menu-note {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-top: 16px;
}

/* ========================================
   Delivery Section
   ======================================== */

.delivery-section {
    padding: 64px 0;
    background: #ffffff;
}

.delivery-card {
    background: linear-gradient(135deg, #FFF5F0 0%, #ffffff 100%);
    border-radius: 24px;
    padding: clamp(40px, 8vw, 64px) clamp(32px, 6vw, 48px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 106, 0, 0.1);
}

.delivery-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.delivery-content h2 {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.delivery-text {
    font-size: clamp(16px, 3vw, 20px);
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.delivery-subtext {
    font-size: clamp(14px, 2.5vw, 16px);
    color: #999;
    margin-bottom: 32px;
    line-height: 1.5;
}

.wolt-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #FF6A00;
    padding: 16px 36px;
    border-radius: 28px;
    font-weight: 700;
    font-size: 17px;
    border: 2px solid #FF6A00;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.15);
}

.wolt-cta-secondary:hover {
    background: #FF6A00;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 106, 0, 0.3);
}

.wolt-cta-secondary:focus-visible {
    outline: 3px solid rgba(255, 106, 0, 0.4);
    outline-offset: 3px;
}

.wolt-cta-secondary:active {
    transform: translateY(0);
}

/* Wolt Image CTA (Delivery Section) */
.wolt-image-cta {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wolt-image-cta img {
    display: block;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.2);
}

.wolt-image-cta:hover {
    transform: translateY(-3px) scale(1.02);
}

.wolt-image-cta:hover img {
    box-shadow: 0 6px 24px rgba(255, 106, 0, 0.35);
}

.wolt-image-cta:focus-visible {
    outline: 3px solid rgba(255, 106, 0, 0.5);
    outline-offset: 4px;
    border-radius: 12px;
}

.wolt-image-cta:active {
    transform: translateY(-1px) scale(1);
}

@media (max-width: 767px) {
    .wolt-image-cta img {
        max-height: 52px;
        width: auto;
    }
}

/* ========================================
   Info Section
   ======================================== */

.info-section {
    padding: 64px 0;
    background: #FAFAFA;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.info-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #FF6A00;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.info-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.info-card-link {
    display: block;
    position: relative;
}

.info-card-link:hover h3 {
    color: #FF6A00;
}

.info-card-arrow {
    position: absolute;
    top: 32px;
    right: 32px;
    color: #FF6A00;
    opacity: 0;
    transition: all 0.3s ease;
}

.info-card-link:hover .info-card-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: 64px 0 32px;
    background: #1a1a1a;
    color: #999;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

.footer-slogan {
    font-size: 15px;
    font-weight: 600;
    color: #FF6A00;
    font-style: italic;
    margin-top: 8px;
}

/* Footer Contact */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: #FF6A00;
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: #FF6A00;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #FF6A00;
    padding-left: 8px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #2a2a2a;
    border-radius: 50%;
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #FF6A00;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.3);
}

.footer-social-link:focus-visible {
    outline: 2px solid rgba(255, 106, 0, 0.5);
    outline-offset: 3px;
}

.footer-wolt-icon {
    font-weight: 700;
    font-size: 18px;
}

.wolt-icon {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 700;
}

/* Footer Social Bottom (Copyright & Credits) */
.footer-social-bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #333;
}

.footer-copyright {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-credit {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

.footer-creator-link {
    color: #FF6A00;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.footer-creator-link:hover {
    color: #FF8533;
    text-shadow: 0 0 8px rgba(255, 106, 0, 0.3);
    border-bottom-color: #FF6A00;
}

.footer-creator-link:focus-visible {
    outline: 2px solid rgba(255, 106, 0, 0.5);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ========================================
   Mobile Sticky Wolt Bar
   ======================================== */

.wolt-mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding-bottom: env(safe-area-inset-bottom);
    animation: slideUpMobile 0.3s ease-out;
}

@keyframes slideUpMobile {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.wolt-mobile-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.wolt-badge {
    width: 48px;
    height: 48px;
    background: #FF6A00;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

.wolt-mobile-cta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF6A00;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 28px;
    font-weight: 700;
    font-size: 16px;
    margin-left: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.3);
    min-height: 52px;
}

.wolt-mobile-cta:active {
    transform: scale(0.98);
}

.wolt-mobile-cta:focus-visible {
    outline: 3px solid rgba(255, 106, 0, 0.4);
    outline-offset: 3px;
}

@media (max-width: 767px) {
    .wolt-mobile-sticky {
        display: block;
    }
    
    body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
    }
}

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

@media (min-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }

    .logo {
        max-width: 360px;
    }

    .hero-info {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }

    .contact-bar-inner {
        padding: 20px 24px;
    }

    .contact-btn {
        min-width: 160px;
        padding: 16px 40px;
    }

    .info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    @media (min-width: 1024px) {
        .deals-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .footer {
        padding: 80px 0 48px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

/* ========================================
   Accessibility
   ======================================== */

@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;
    }
}

*:focus-visible {
    outline: 3px solid rgba(255, 106, 0, 0.4);
    outline-offset: 3px;
}

::selection {
    background-color: #FF6A00;
    color: #ffffff;
}