/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Body */
body {
    background: #fffdf7;
    color: #333;
    scroll-behavior: smooth;
}

/* Flags Section */
.flags-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.flag img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-style: solid;
    border-color: #000000;
}

.flag p {
    text-align: center;
    margin-top: 5px;
}

/* Header */
header {
    background: #222121;
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

header h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}


header nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

header nav a:hover {
    color: #ffd166;
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #001381 0%, #b10000 100%);
    gap: 40px;
}

.hero-content {
    color: white;
    max-width: 500px;
    text-align: left;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: fadeInLeft 2s ease forwards;
}

.hero-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.cta-button {
    background: #ff0000;
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.cta-button:hover {
    transform: scale(1.1);
    background: #ff4646;
    color: #ffffff;
}

.hero-image img {
    max-width: 400px;
    border-radius: 20px;
    animation: fadeInRight 1s ease forwards;
}

/* Menu Section */
.menu-section {
    padding: 60px 20px;
    text-align: center;
}

.menu-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #0003a0;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.menu-item {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.menu-item img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.menu-item h3 {
    margin-bottom: 10px;
    color: #333;
}

.add-btn {
    padding: 10px 25px;
    border: none;
    background: #003496;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.add-btn:hover {
    background: #0040a0;
    transform: scale(1.05);
}

/* Order Sidebar */
.order-section {
    position: fixed;
    right: 20px;
    top: 120px;
    width: 300px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.order-section h2 {
    margin-bottom: 20px;
    color: #ef476f;
}

#order-list {
    list-style: none;
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

#order-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

#order-list button {
    border: none;
    background: #ef476f;
    color: white;
    border-radius: 50px;
    padding: 5px 10px;
    cursor: pointer;
}

.order-summary p {
    font-weight: bold;
    margin: 5px 0;
}

#checkout-btn {
    width: 100%;
    padding: 15px;
    border: none;
    background: #0300be;
    color: white;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 15px;
}

#checkout-btn:hover {
    background: #2f2bff;
}

/* Footer */
footer {
    background: #001883;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}

/* Animations */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px);}
    to { opacity: 1; transform: translateX(0);}
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px);}
    to { opacity: 1; transform: translateX(0);}
}

/* Responsive */
@media(max-width: 1024px){
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .order-section {
        position: static;
        width: 90%;
        margin: 40px auto;
    }
}

/* About / Address / Opening Hours styling */
.Address,
.Opening.Hours,
.about {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(180deg, #ffffff, #fff8f6);
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.Address h2,
.Opening.Hours h2,
.about h2 {
    font-size: 1.6rem;
    color: #001381;
    margin-bottom: 12px;
}

.Address p {
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

.Opening.Hours p {
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
    margin: 6px 0;
}

.about p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 12px;
}

.Map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Small screens: stack and reduce padding */
@media (max-width: 768px) {
    .Address,
    .Opening.Hours,
    .about {
        padding: 20px;
        margin: 20px;
    }
    .Map iframe {
        height: 300px;
    }
}
