/* ==========================================
   FONT FACE
   ========================================== */
@font-face {
    font-family: 'Amsterdam';
    src: url('Amsterdam.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f5dcc4;
    color: #ffffff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 1rem 1rem 0;
}

/* ==========================================
   LOGO SECTION
   ========================================== */
.logo-container {
    display: flex;
    justify-content: center;
    padding: 2rem 0 1.5rem;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================
   DELIVERY & PICKUP BUTTONS
   ========================================== */
.delivery-buttons {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 1.5rem 1rem 0;
}

.delivery-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    min-height: 110px;
}

.delivery-btn:hover .btn-icon {
    transform: translateY(-5px) scale(1.05);
}

.btn-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.btn-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2E3333;
    text-align: center;
}

/* Platform-specific colors - Official Brand Colors */
.glovo-btn .btn-icon {
    background: #F6C61C;
    color: #ffffff;
}

.ubereats-btn .btn-icon {
    background: #09BA62;
    color: #ffffff;
}

.justeat-btn .btn-icon {
    background: #ffffff;
    color: #ffffff;
}

.pickup-btn .btn-icon {
    background: #fb821a;
    color: #ffffff;
}

/* Platform icon images */
.platform-icon {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

/* Best Price Badge - Simple & Clean */
.best-price-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF4444;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 10px;
    white-space: nowrap;
    z-index: 10;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}



.pickup-btn {
    position: relative;
}





/* ==========================================
   MAIN MENU CONTAINER
   ========================================== */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* ==========================================
   MENU SECTIONS
   ========================================== */
.menu-section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    margin-left: 1rem;
    height: 4rem;
}

.title-script {
    font-family: 'Amsterdam', cursive;
    font-size: 2.4rem;
    font-weight: 400;
    color: #ffe6b7;
    letter-spacing: 0.02em;
    position: absolute;
    left: 0;
    top: 2.5rem;
    z-index: 2;
    -webkit-text-stroke: 3px #fb821a;
    paint-order: stroke fill;
    text-shadow:
        2px 2px 0 #fb821a,
        -2px -2px 0 #fb821a,
        2px -2px 0 #fb821a,
        -2px 2px 0 #fb821a;
}

.title-bold {
    font-family: 'Anton', sans-serif;
    font-size: 4.8rem;
    font-weight: 400;
    color: #fb821a;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: absolute;
    left: 3.5rem;
    top: 1rem;
    z-index: 1;
}

/* ==========================================
   MENU GRID
   ========================================== */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* ==========================================
   MENU CARDS
   ========================================== */
.menu-card {
    background: #fb821a;
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: row;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-text {
    position: relative;
    z-index: 2;
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.25rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.card-description {
    font-size: 0.9rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0.95;
    flex: 1;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.02em;
    background: #e97300;
    display: inline-block;
    padding: 0.35rem 1.25rem;
    border-radius: 50px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   PROMOTIONAL DISCLAIMER
   ========================================== */
.promo-disclaimer {
    background: linear-gradient(135deg, #ff7f4d 0%, #fb821a 100%);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    margin: 2rem auto 2.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(251, 130, 26, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.promo-disclaimer p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.01em;
}

.promo-disclaimer strong {
    font-family: 'Amsterdam', cursive;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Product Images with Bottom Gradient Shadow */
.card-image {
    flex: 0 0 50%;
    background: #fb821a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Layered drop-shadows for gradient effect at bottom following image shape */
.card-image img {
    filter:
        drop-shadow(0 4px 3px rgba(0, 0, 0, 0.4)) drop-shadow(0 8px 6px rgba(0, 0, 0, 0.3)) drop-shadow(0 12px 10px rgba(0, 0, 0, 0.2)) drop-shadow(0 16px 14px rgba(0, 0, 0, 0.1));
}

/* 2x1 Badge */
.badge-2x1 {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: 'Amsterdam', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: #fb821a;
    background: #ffe6b7;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);

    transform: rotate(-8deg);

    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   FOOTER
   ========================================== */
.menu-footer {
    background: transparent;
    color: #ff7f4d;
    padding: 2.5rem 1rem 2rem;
    text-align: center;
    margin-top: 2rem;
    border-top: 2px solid rgba(255, 127, 77, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.footer-icon {
    font-size: 0.85rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-icon a {
    color: #ff7f4d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-icon a:hover {
    color: #fb821a;
    text-decoration: underline;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
}

.social-link {
    color: #ff7f4d;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #fb821a;
    transform: translateY(-3px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}


/* ==========================================
   RESPONSIVE DESIGN - TABLET
   ========================================== */
@media (min-width: 768px) {
    body {
        padding: 1.5rem 2rem 0;
    }

    .logo-circle {
        width: 140px;
        height: 140px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .section-title {
        font-size: 2.75rem;
        margin-bottom: 3rem;
        height: 4.5rem;
    }

    .title-script {
        font-size: 2.6rem;
        -webkit-text-stroke: 3.2px #fb821a;
        top: 2.7rem;
    }

    .title-bold {
        font-size: 5.2rem;
        color: #fb821a;
        letter-spacing: -0.02em;
        left: 3.8rem;
        top: 1.1rem;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .card-description {
        font-size: 0.95rem;
        max-width: 85%;
    }

    .card-price {
        font-size: 1.6rem;
    }

    .promo-disclaimer {
        padding: 1.2rem 2rem;
    }

    .promo-disclaimer p {
        font-size: 1.15rem;
    }

    .promo-disclaimer strong {
        font-size: 1.5rem;
    }

    .badge-2x1 {
        font-size: 2.2rem;
        padding: 0.35rem 0.9rem;
        top: 12px;
        right: 12px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

/* ==========================================
   RESPONSIVE DESIGN - DESKTOP
   ========================================== */
@media (min-width: 1024px) {
    body {
        padding: 2rem 3rem 0;
    }

    .logo-circle {
        width: 150px;
        height: 150px;
    }

    .menu-grid {
        gap: 2rem;
    }

    .menu-card {
        min-height: 190px;
        padding: 1.85rem 1.35rem;
    }

    .section-title {
        font-size: 3rem;
        margin-bottom: 3rem;
        height: 5rem;
    }

    .title-script {
        font-size: 2.8rem;
        -webkit-text-stroke: 3.5px #fb821a;
        top: 2.9rem;
    }

    .title-bold {
        font-size: 5.6rem;
        color: #fb821a;
        letter-spacing: -0.02em;
        left: 4.2rem;
        top: 1.2rem;
    }

    .card-title {
        font-size: 1.45rem;
    }

    .card-price {
        font-size: 1.7rem;
    }

    .promo-disclaimer p {
        font-size: 1.2rem;
    }

    .promo-disclaimer strong {
        font-size: 1.6rem;
    }

    .badge-2x1 {
        font-size: 2.4rem;
        padding: 0.4rem 1rem;
        top: 15px;
        right: 15px;
    }
}

/* ==========================================
   RESPONSIVE DESIGN - LARGE DESKTOP
   ========================================== */
@media (min-width: 1200px) {
    .section-title {
        font-size: 3.25rem;
        height: 5.5rem;
        margin-bottom: 3rem;
    }

    .title-script {
        font-size: 3rem;
        top: 3rem;
    }

    .title-bold {
        font-size: 6rem;
        color: #fb821a;
        letter-spacing: -0.02em;
        left: 4.5rem;
        top: 1.3rem;
    }
}

/* ==========================================
   SUBTLE ANIMATIONS
   ========================================== */
@media (prefers-reduced-motion: no-preference) {
    .menu-card {
        animation: fadeInUp 0.5s ease-out backwards;
    }

    .menu-section:nth-child(1) .menu-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .menu-section:nth-child(1) .menu-card:nth-child(2) {
        animation-delay: 0.15s;
    }

    .menu-section:nth-child(1) .menu-card:nth-child(3) {
        animation-delay: 0.2s;
    }

    .menu-section:nth-child(1) .menu-card:nth-child(4) {
        animation-delay: 0.25s;
    }

    .menu-section:nth-child(1) .menu-card:nth-child(5) {
        animation-delay: 0.3s;
    }

    .menu-section:nth-child(1) .menu-card:nth-child(6) {
        animation-delay: 0.35s;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.menu-card:focus-within {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}