/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* ===== NAVBAR ===== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background: #111;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    color: #ffb703;
    font-size: 22px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}

.nav-links li a:hover {
    color: #ffb703;
}

/* Hamburger */
.hamburger {
    display: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 20px;
    text-align: center;
}

/* HOME */
.home {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("https://images.unsplash.com/photo-1550547660-d9450f859349") center/cover no-repeat;
    color: white;
}

.home h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.home-buttons {
    display: flex;
    gap: 20px;
}

.home button {
    padding: 12px 30px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
}

.btn-primary {
    background: #ffb703;
    color: #111;
}

.btn-primary:hover {
    background: #e6a600;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white !important;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #111;
}

/* ABOUT */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about p {
    margin-top: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 2.5rem;
    color: #ffb703;
}

.feature-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* MENU */
.menu {
    background: #f9f9f9;
    text-align: center;
}

.section-subtitle {
    margin-bottom: 40px;
    color: #777;
    font-style: italic;
}

.menu-categories {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.menu-categories button {
    padding: 8px 25px;
    border: 2px solid #ffb703;
    background: transparent;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}

.menu-categories button.active,
.menu-categories button:hover {
    background: #ffb703;
    color: white;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    text-align: center;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.menu-img {
    height: 200px;
    background: #fff8e1;
    font-size: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-info {
    padding: 25px;
}

.menu-info h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.menu-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffb703;
    margin-bottom: 15px;
}

.add-btn {
    padding: 10px 25px;
    background: #111;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.add-btn:hover {
    background: #333;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.img-box {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
    background-color: #ddd;
}

.img-box:hover {
    transform: scale(1.02);
}

/* CONTACT */
.contact {
    background: #111;
    color: white;
    text-align: left;
}

.contact h2 {
    text-align: center;
    margin-bottom: 60px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    color: #ffb703;
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.contact-info p {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #ccc;
}

.contact-info i {
    width: 25px;
    color: #ffb703;
    font-size: 1.2rem;
}

.hours-title {
    margin-top: 40px;
}

.contact-form {
    background: #222;
    padding: 40px;
    border-radius: 15px;
}

.contact-form h3 {
    margin-bottom: 25px;
    color: white;
    font-size: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #333;
    border: 1px solid #444;
    color: white;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ffb703;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: #ffb703;
    color: #111;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
    font-size: 1.1rem;
}

.contact-form button:hover {
    background: #e6a600;
}

/* HERO STATS */
.home-stats {
    position: absolute;
    bottom: 50px;
    display: flex;
    gap: 50px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ffb703;
}

.stat-desc {
    font-size: 0.9rem;
    color: #ddd;
}

/* CHEFS SECTION */
.chefs-section {
    margin-top: 80px;
}

.chefs-section h3 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.chefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.chef-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.chef-card:hover {
    transform: translateY(-5px);
}

.chef-img {
    font-size: 60px;
    margin-bottom: 15px;
    background: #fff8e1;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.chef-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.chef-card p {
    color: #777;
    margin-top: 5px;
}

/* TESTIMONIALS */
.testimonials {
    background: #ffb703;
    color: #111;
}

.testimonials h2 {
    color: #111;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-card h4 {
    font-weight: bold;
    font-size: 1rem;
}

.stars {
    margin-top: 10px;
    font-size: 0.9rem;
}

/* CONTACT EXTRA */
.newsletter {
    margin-top: 40px;
    background: #222;
    padding: 25px;
    border-radius: 10px;
}

.newsletter h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: white;
}

.newsletter input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
}

.newsletter button {
    width: 100%;
    padding: 10px;
    background: #ffb703;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.map-container {
    width: 100%;
    max-width: 1100px;
    margin: 60px auto 0;
    border-radius: 15px;
    overflow: hidden;
}

/* FOOTER */
footer {
    background: #0a0a0a;
    color: white;
    padding: 60px 20px 20px;
    text-align: left;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: #ffb703;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.footer-col p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffb703;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
    background: #222;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    background: #ffb703;
    color: #111;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #111;
        width: 100%;
        flex-direction: column;
        display: none;
        padding-bottom: 20px;
    }

    .nav-links li {
        text-align: center;
        padding: 15px 0;
    }

    .hamburger {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
    }

    .home h1 {
        font-size: 2.5rem;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
    }
}