/* ======== 1. GENERAL DEFAULTS & THEME ======== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

:root {
    --navy: #000b3d;
    --red: #ff6b6b;
    --dark-red: #ee5253;
    --white: #ffffff;
}

/* ======== 2. HEADER & NAVIGATION ======== */
header {
    width: 220px;
    margin: 0 auto 20px;
    border: 4px solid #000;
    background: var(--white);
    text-align: center;
    padding: 10px;
}

.rectangle {
    width: 100%;
    background-color: var(--navy);
    border-radius: 12px;
    padding: 10px 0;
    margin-bottom: 30px;
}

nav div, .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 16px;
    transition: 0.3s;
}

nav a:hover {
    background-color: var(--red);
    border-radius: 8px;
}

/* ======== 3. BUTTONS & INPUTS ======== */
button, .add-btn, .order-btn {
    background-color: var(--red);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.2s ease;
}

button:hover {
    background-color: var(--dark-red);
    transform: translateY(-2px);
}

.main-cta {
    background-color: var(--navy);
    border-radius: 12px;
    padding: 15px 35px;
    color: white;
}

/* Quantity Input Styling */
.qty-input {
    width: 65px;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid #ddd;
    margin-right: 10px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

input[type="text"], input[type="number"], input[type="tel"] {
    width: 100%;
    padding: 12px;
    margin: 8px 0 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* ======== 4. HERO & ABOUT IMAGES ======== */
.hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 40px;
}

/* FEATURE: Extra Large About Us Image */
.About_Us_Image {
    position: relative;
    width: 100%;
    height: 850px; 
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 40px;
}

.hero::before, .About_Us_Image::before {
    content: "";
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero img, .About_Us_Image img {
    width: 100%; height: 100%; object-fit: cover;
}

.hero-text, .About_Us-Text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    text-align: center;
    width: 80%;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.6);
}

/* ======== 5. CENTERED MENU HEADING ======== */
.Menu {
    text-align: center;
    margin: 50px auto 30px;
    width: 100%;
}

.Menu h2 {
    background-color: var(--navy);
    color: white;
    display: inline-block;
    padding: 15px 60px;
    border-radius: 50px;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 11, 61, 0.2);
    border-bottom: 4px solid var(--red);
}

/* ======== 6. FOOD CARDS & GRIDS ======== */
.Menu_Items, .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.Menu_Item {
    background-color: var(--navy);
    color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
}

.product-card {
    background: white;
    border: 2px solid var(--navy);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}

.product-card:hover { transform: translateY(-8px); box-shadow: 0 12px 25px rgba(0,0,0,0.1); }

.Menu_Item img, .product-card img {
    width: 100%; height: 200px; object-fit: cover; border-radius: 12px; margin-bottom: 15px;
}

/* ======== 7. GET STARTED (PREMIUM LOOK) ======== */
.hero-simple {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #000b3d 0%, #001a80 100%);
    color: white;
    border-radius: 20px;
}

.step-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.step-number {
    background: var(--red);
    color: white;
    width: 50px; height: 50px; line-height: 50px;
    border-radius: 50%; margin: 0 auto 20px;
    font-weight: bold; font-size: 24px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.price-box {
    background: white;
    border: 2px solid var(--navy);
    padding: 50px 30px;
    border-radius: 25px;
    width: 320px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.price-box.featured {
    border-color: var(--red);
    transform: scale(1.05);
    z-index: 2;
}

.price-box.featured::after {
    content: "Most Popular";
    position: absolute;
    top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--red); color: white;
    padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: bold;
}

.price { font-size: 44px; font-weight: 800; color: var(--navy); margin: 20px 0; }
.price span { font-size: 16px; color: #888; }

.price-box ul { list-style: none; text-align: left; margin: 20px 0; }
.price-box li { padding: 8px 0; border-bottom: 1px solid #eee; }
.price-box li::before { content: "✓ "; color: #2ecc71; font-weight: bold; }

/* ======== 8. CHECKOUT SUMMARY & CARD DETECTION ======== */
.option-box, .Contact_details, .content, .box {
    background: white;
    max-width: 750px;
    margin: 30px auto;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--navy);
}

#cart-items-list p {
    display: flex;
    justify-content: space-between;
    padding: 15px 10px;
    border-bottom: 1px solid #ddd;
    align-items: center;
}

#total-price {
    font-size: 26px;
    font-weight: 800;
    text-align: left;
    margin: 25px 10px;
    color: var(--navy);
}

/* Card Input Styling */
.card-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

#card-brand-badge {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    color: white;
    background-color: var(--navy);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.visa-style { border: 2px solid #1a1f71 !important; box-shadow: 0 0 5px rgba(26, 31, 113, 0.3); }
.mastercard-style { border: 2px solid #eb001b !important; box-shadow: 0 0 5px rgba(235, 0, 27, 0.3); }

/* ======== 9. FOOTER ======== */
.Footer {
    text-align: center;
    padding: 40px;
    border: 4px solid #000;
    border-radius: 20px;
    margin-top: 60px;
    background: var(--white);
} 

@media (max-width: 800px) {
    .pricing-container { flex-direction: column; align-items: center; }
    .price-box.featured { transform: scale(1); }
    .About_Us_Image { height: 400px; }
}