﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #faf7f2;
    font-family: 'Inter', sans-serif;
    color: #2c1810;
}

/* SkyIT Bar */
.skyit-bar {
    background: #2c1810;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    color: #d4a574;
}

    .skyit-bar a {
        color: #e8c9a3;
        text-decoration: none;
        margin-left: 15px;
    }

#app {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #e8d5c0;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c1810;
    letter-spacing: 2px;
}

.logo span {
    color: #c45a3c;
    font-style: italic;
}

.logo p {
    font-size: 0.8rem;
    color: #8b6f5c;
    letter-spacing: 4px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.reservation-btn {
    background: #c45a3c;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

    .reservation-btn:hover {
        background: #2c1810;
    }

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.3rem;
    color: #2c1810;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    background: #c45a3c;
    color: white;
    font-size: 0.7rem;
    padding: 3px 7px;
    border-radius: 20px;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 20px 0;
    flex-wrap: wrap;
}

    .nav a {
        text-decoration: none;
        color: #5c3d2e;
        font-weight: 500;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 2px;
        padding-bottom: 5px;
        border-bottom: 2px solid transparent;
        transition: all 0.2s;
    }

        .nav a.active {
            color: #c45a3c;
            border-bottom-color: #c45a3c;
        }

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #2c1810;
    line-height: 1.2;
    margin-bottom: 20px;
}

    .hero-content h2 em {
        color: #c45a3c;
        font-style: italic;
    }

.hero-content p {
    color: #5c3d2e;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #c45a3c;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #c45a3c;
    color: #c45a3c;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
}

.hero-image {
    background: linear-gradient(135deg, #e8d5c0, #d4b89c);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}

/* Info Bar */
.info-bar {
    display: flex;
    justify-content: space-around;
    background: white;
    padding: 25px;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #faf0e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c45a3c;
    font-size: 1.3rem;
}

.info-text h4 {
    font-weight: 600;
}

.info-text p {
    color: #8b6f5c;
    font-size: 0.9rem;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.tab {
    padding: 10px 24px;
    background: white;
    border: 1px solid #e8d5c0;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

    .tab:hover {
        border-color: #c45a3c;
    }

    .tab.active {
        background: #c45a3c;
        color: white;
        border-color: #c45a3c;
    }

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0 25px;
}

    .section-header h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        color: #2c1810;
    }

        .section-header h3 i {
            color: #c45a3c;
            margin-right: 10px;
        }

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.menu-item {
    background: white;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid #f0e6dc;
}

    .menu-item:hover {
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        border-color: #c45a3c;
    }

.menu-image {
    width: 80px;
    height: 80px;
    background: #f5ebe2;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.menu-content {
    flex: 1;
}

.menu-title {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
}

.menu-desc {
    color: #8b6f5c;
    font-size: 0.85rem;
    margin: 5px 0 10px;
}

.menu-price {
    color: #c45a3c;
    font-weight: 700;
    font-size: 1.2rem;
}

.add-btn {
    background: #faf0e6;
    border: none;
    color: #c45a3c;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 8px;
}

/* Specials Banner */
.specials-banner {
    background: linear-gradient(135deg, #2c1810, #4a2c20);
    border-radius: 30px;
    padding: 40px;
    margin: 50px 0;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.specials-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.specials-content .highlight {
    color: #e8c9a3;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f0e6dc;
}

    .testimonial-card i {
        color: #c45a3c;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

.testimonial-text {
    color: #5c3d2e;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
}

/* Footer */
.footer {
    background: #2c1810;
    color: #e8d5c0;
    margin-top: 60px;
    padding: 50px 5%;
    border-radius: 30px 30px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col h4 {
    color: #e8c9a3;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin: 10px 0;
}

.footer-col a {
    color: #d4a574;
    text-decoration: none;
}

.newsletter-box {
    display: flex;
    margin-top: 15px;
}

    .newsletter-box input {
        flex: 1;
        padding: 12px;
        background: #4a2c20;
        border: none;
        color: white;
        border-radius: 30px 0 0 30px;
        outline: none;
    }

    .newsletter-box button {
        background: #c45a3c;
        color: white;
        border: none;
        padding: 0 25px;
        border-radius: 0 30px 30px 0;
        cursor: pointer;
    }

.footer-bottom {
    grid-column: 1 / -1;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #4a2c20;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

    .footer-bottom i {
        color: #c45a3c;
        margin-right: 8px;
    }

/* Responsive */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .specials-banner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .nav {
        gap: 20px;
    }

    .info-bar {
        flex-direction: column;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }
}
