/* --- NAVIGATION --- */
header {
    position: fixed;
    top: 0; width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5% 2px;
}
header nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.logo { font-size: 1.5rem; font-weight: 900; color: var(--primary-dark); letter-spacing: 1px; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo-img { height: 100px; width: auto; }
nav ul { list-style: none; display: flex; gap: 20px; }
nav ul li a { font-weight: 600; font-size: 1.1rem; transition: color 0.3s; }
nav ul li a:hover { color: var(--accent-warm); }
.nav-order-btn { padding: 10px 20px; font-size: 0.8rem; }

/* --- SECTIONS --- */
section { padding: 50px 5% 40px 5%; max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 2.5rem; color: var(--primary-dark); margin-bottom: 40px; text-align: center; }

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(30, 63, 43, 0.7), rgba(30, 63, 43, 0.7)), url('../images/skyview.webp') center/cover;
    color: var(--white);
    padding: 0 20px;
    max-width: 100%;
}
.hero h1 { font-size: 4rem; margin-bottom: 15px; letter-spacing: 2px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; font-weight: 600; }

/* --- MENU SECTION --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--primary-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-5px); }
.card-img { width: 100%; height: 350px; object-fit: cover; }
.card-content { padding: 25px; text-align: center; }
.card-content h3 { color: var(--primary-dark); margin-bottom: 10px; font-size: 1.5rem; }
.price { font-weight: 900; color: var(--accent-warm); font-size: 1.2rem; display: block; margin-bottom: 2px; }
.insta-link { color: var(--accent-warm); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.price-qty { font-size: 0.85rem; font-weight: 600; color: #888; display: block; margin-top: -8px; margin-bottom: 5px; }
.card-img-placeholder { width: 100%; height: 350px; background-color: var(--bg-color); }

/* --- MEAL COMPOSITION --- */
.composition-section { margin-top: 40px; background: var(--white); padding: 40px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.composition-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.composition-col h3 { color: var(--accent-warm); font-size: 1.2rem; margin-bottom: 15px; border-bottom: 2px solid var(--bg-color); padding-bottom: 10px; }
.composition-col ul { list-style: none; }
.composition-col ul li { margin-bottom: 10px; font-weight: 600; font-size: 0.95rem; }
.composition-col ul li span { font-weight: 400; font-size: 0.85rem; color: #555; display: block; }

/* --- SAUCES BANNER --- */
.sauces-banner {
    background: var(--white);
    border: 2px solid var(--primary-dark);
    border-radius: 8px;
    padding: 20px 40px;
    margin-top: 30px;
    text-align: center;
}
.sauces-banner h3 { color: var(--primary-dark); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.sauces-list { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); }
.sauces-list li { font-weight: 600; font-size: 0.95rem; text-align: center; padding: 8px 10px; border-right: 1px solid #ddd; }
.sauces-list li:nth-child(4n) { border-right: none; }
.sauces-list li:nth-child(n+5) { border-top: 1px solid #ddd; }

@media (max-width: 768px) {
    .sauces-list { grid-template-columns: repeat(2, 1fr); }
    .sauces-list li:nth-child(4n) { border-right: 1px solid #ddd; }
    .sauces-list li:nth-child(2n) { border-right: none; }
    .sauces-list li:nth-child(n+5) { border-top: none; }
    .sauces-list li:nth-child(n+3) { border-top: 1px solid #ddd; }
}

/* --- LOGISTICS BANNER --- */
.logistics-banner {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 50px 20px;
    text-align: center;
    border-radius: 8px;
    margin-top: 50px;
}
.logistics-banner h2 { color: var(--accent-warm); font-size: 2.2rem; margin-bottom: 15px; }
.logistics-banner p { margin-bottom: 10px; font-size: 1.1rem; }
.logistics-banner .btn { margin-top: 15px; }

/* --- CAROUSEL --- */
.carousel { position: relative; overflow: hidden; border-radius: inherit; }
.carousel img { width: 100%; height: 420px !important; object-fit: cover; object-position: center 40%; display: block; transition: opacity 0.3s ease; }
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 63, 43, 0.75);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.carousel-arrow:hover { background: var(--accent-warm); }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

/* --- SPLIT SECTIONS (About & Story) --- */
.split-section { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; margin-bottom: 20px; }
.split-content { flex: 1; min-width: 300px; }
.split-content h2 { color: var(--primary-dark); margin-bottom: 20px; }
.split-img { flex: 1; min-width: 300px; border-radius: 8px; overflow: hidden; }
.split-img img { width: 100%; height: auto; display: block; }
.img-caption { text-align: center; font-size: 0.85rem; color: #666; font-style: italic; padding: 8px 0; }

/* --- PAYMENT INFO --- */
.payment-steps { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.step { background: var(--white); padding: 30px; border-radius: 8px; flex: 1; min-width: 250px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.step h3 { color: var(--accent-warm); margin-bottom: 15px; }

/* --- FOOTER --- */
footer { background-color: var(--primary-dark); color: var(--white); text-align: center; padding: 30px 20px; margin-top: 40px; }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    header { flex-direction: column; gap: 8px; padding: 8px 15px; }
    header nav { position: static; transform: none; padding-top: 0; margin-top: -12px; }
    .hero h1 { font-size: 2.5rem; }
    nav ul { flex-wrap: wrap; justify-content: center; }
    .section-title { font-size: 1.9rem !important; }
    .logistics-banner h2 { font-size: 1.9rem; }
    .mobile-break { display: block; }
}
