* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fffaf5;
    color: #333;
    line-height: 1.6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #e67e22;
}

.logo span {
    color: #333;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: #e67e22;
}

.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to right, #fff5eb, #fff);
}

.hero h1 {
    font-size: 56px;
    font-weight: 600;
}

.hero h1 span {
    color: #e67e22;
}

.hero p {
    margin-top: 10px;
    font-size: 18px;
    color: #666;
}

.btn {
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #e67e22;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background-color: #cf6d17;
}

/* === Responsive menyu === */
@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 70px;
        right: -100%;
        background: #fff;
        width: 200px;
        text-align: center;
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: 0.3s ease;
    }

    nav.show {
        right: 20px;
        /* menyu chiqadi */
    }

    .navbar ul {
        flex-direction: column;
        gap: 15px;
    }

    .menuIcon {
        display: block;
        cursor: pointer;
    }

    nav ul li a {
        display: block;
        font-size: 16px;
    }
}

/* Desktopda menyu doim ochiq, icon yashirin */
@media (min-width: 769px) {
    .menuIcon {
        display: none;
    }
}

/* === Responsive menyu (1024px gacha) === */
@media (max-width: 1024px) {
    nav {
        position: absolute;
        top: -300px;
        /* menyu boshida yashirin */
        right: 0;
        background: #fff;
        width: 100%;
        text-align: center;
        flex-direction: column;
        gap: 20px;
        padding: 25px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: top 0.3s ease;
        z-index: 99;
    }

    nav.show {
        top: 70px;
        /* menyu tepada chiqadi */
    }

    .navbar ul {
        flex-direction: column;
        gap: 15px;
    }

    .menuIcon {
        display: block;
        cursor: pointer;
        color: #333;
    }

    .navbar a {
        font-size: 16px;
    }
}

/* 1025px dan katta ekranlarda icon yashirin bo‘ladi */
@media (min-width: 1025px) {
    .menuIcon {
        display: none;
    }
}



/* menu css start */
.menu {
    padding: 80px 60px;
    text-align: center;
    background: #fffdf9;
}

.menu h1 {
    font-size: 36px;
    color: #e67e22;
    margin-bottom: 40px;
}

.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.menu-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s;
    padding-bottom: 20px;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.menu-card h3 {
    margin: 15px 0 5px;
    color: #333;
}

.menu-card p {
    color: #777;
    font-size: 14px;
    padding: 0 15px;
}

.price {
    display: block;
    font-weight: 600;
    color: #e67e22;
    margin: 10px 0;
}

/* menu css end */

/* about section start */
.about {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #fff5eb, #fff);
    padding: 80px 60px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 38px;
    color: #e67e22;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.about-img img:hover {
    transform: scale(1.03);
}

@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text h1 {
        font-size: 32px;
    }
}


/* about section end */

/* contact section start */
.contact {
    min-height: 90vh;
    background: linear-gradient(to right, #fff5eb, #fff);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 60px;
}

.contact-container {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    width: 100%;
    align-items: flex-start;
}

.contact-form {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: #e67e22;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #e67e22;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: #e67e22;
    margin-bottom: 10px;
}

.contact-info p {
    color: #555;
    margin-bottom: 10px;
}

.social {
    margin-top: 20px;
}

.social a {
    display: inline-block;
    margin-right: 15px;
    text-decoration: none;
    color: #e67e22;
    font-weight: 500;
    transition: color 0.3s;
}

.social a:hover {
    color: #cf6d17;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }
}

/* contact section end */

/* MEDIA HEADER NAVBAAR  */
/* 

/* @media (max-width: 767px) {
    .navbar ul li {
        display: none;
    }

    #menuIcon {
        display: block;
    }
} */
/* */