/* Navbar Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
    /* padding: 7px 10px; */
}

.nav-links {
    display: flex;
    list-style: none;
    margin-right: 50px;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    transition: color 0.3s;
    padding: 7px 12px;

}

.nav-links a:hover {
    color: deeppink;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        height: calc(100vh - 60px);
        transition: right 0.3s ease-in-out;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    .menu-icon {
        display: block;
    }
}

/* Hero Section Styles */
#hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 20px;
    background: #f9f9f9;
}

#hero-section .text {
    max-width: 50%;
}

#hero-section .text h1 {
    font-size: 54px;
    color: #333;
}

#hero-section .text p {
    font-size: 24px;
    color: #666;
    margin: 20px 0;
}

#hero-section .text .btn {
    background: deeppink;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s;
}

#hero-section .text .btn:hover {
    background: #ff1493;
}

#hero-section .visual img {
    max-width: 100%;
    display: block;
    border-radius: 50%;
    height: auto;
    width: 600px;
}

/* Section Meals Styles */
.section-meals {
    padding: 50px 20px;
    background: #fff;
}

.section-meals .txt h1 {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
}

.container.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.meal {
    background: #f9f9f9;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all 0.4s;
}

.meal:hover {
    transform: translateY(-1.2rem);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.meal-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.meal-content {
    padding: 24px;
}

.meal-tags {
    margin-bottom: 10px;
}

.tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    background-color: #51cf66;
    color: #333;
    border-radius: 100px;
    font-weight: 600;
}

.tag--vegetarian {
    background: #51cf66;;
}

.tag--vegan {
    background: #94d82d;
}

.tag--paleo {
    background: #ffd43b;
}

.meal-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 1.2rem;
}

.meal-attributes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.meal-attribute {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.meal-icon {
    height: 2.4rem;
    width: 2.4rem;
    color: #e67e22;
}

/* How It Works Styles */
#how-it-works {
    padding: 50px 20px;
    background: #f9f9f9;
}

#how-it-works .txt h1 {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
}

.container.flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1 1 250px;
    transition: 0.5s ease;
    cursor: pointer;
}

.box:hover {
    transform: rotate(5deg);
}

.box.active {
    background: rgb(252, 104, 173);
    color: white;
}

.box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.box ion-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.box p {
    font-size: 18px;
    color: black;
}

/* About Section Styles */
#about {
    padding: 50px 20px;
    background: #fff;
}

#about .container.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

#about .visual img {
    display: block;
    border-radius: 50%;
    height: 500px;
    width: 500px; 
    margin-right: auto;
}

#about .visual img:hover {
    height: 500px;
    width: 500px;
    border-radius: 50%;
    box-shadow: 8px 8px 10px grey , -8px -8px 10px  rgb(116, 96, 96);
}

#about .text {
    max-width: 50%;
}

#about .text .secondary {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

#about .text h2 {
    font-size: 48px;
    color: #333;
    margin: 10px 0;
}

#about .text h3 {
    font-size: 24px;
    color: black;
    margin: 10px 0
}

#about .text p {
    font-size: 18px;
    color: black;
    margin: 20px 0;
}

#about .text .btn {
    background: deeppink;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
    border-radius: 5px;
}

#about .text .btn:hover {
    background: #ff1493;
}

/* Restaurant Menu Styles */
#menu {
    padding: 50px 20px;
    background: #f9f9f9;
}

.container-menu {
    max-width: 1200px;
    margin: 0 auto;
}

.category {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.category li {
    margin: 0 10px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.category li.active {
    background: deeppink;
    color: white;
}

.restaurant-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(333px, 1fr));
    gap: 20px;
}

.menu-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-item .title {
    font-size: 20px;
    color: #333;
    margin: 10px;
}

.menu-item .location {
    font-size: 14px;
    color: #666;
    margin: 10px;
}

.menu-item .order {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.menu-item .price {
    font-size: 18px;
    color: #333;
}

.menu-item .btn-menu {
    background: deeppink;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.menu-item .btn-menu:hover {
    background: #ff1493;
}

/* FAQ Section Styles */
#faq {
    padding: 50px 20px;
    background: #fff;
}

#faq h2 {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
}

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq details {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.faq summary {
    padding: 1em;
    border: 1px solid #b2b2b2;
    margin-bottom: 1em;
    cursor: pointer;
    outline: none;
    border-radius: 0.3em;
    font-weight: 600;
}


.faq .content {
    font-size: 16px;
    color: #666;
    padding: 10px 0;
}

/* App Section Styles */
#app {
    padding: 50px 20px;
    background: #f9f9f9;
}

#app .container.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

#app .app-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

#app .text {
    max-width: 50%;
}

#app .text h2 {
    font-size: 44px;
    color: #333;
    margin-bottom: 20px;
}

#app .text p {
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 10px;
}

.download {
    display: flex;
    gap: 20px;
}

.app-store {
    background: #000;
    margin: 0 10px;
    padding: 4px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #fff; 
    cursor: pointer;
}

.app-store:hover {
    background: #555;
}

.app-store ion-icon {
    font-size: 24px;
    margin-right: 10px;
}

.app-store p {
    margin-top: 8px;
    color: white;
}

.app-store span {
    font-size: 18px;
    line-height: 25px;
    color: white;
}

/* Footer Styles */
.footer {
    padding: 50px 20px;
    background: #333;
    color: white;
}

.footer .container.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-about,
.footer-category,
.quick-links,
.get-in-touch {
    flex: 1 1 250px;
}

.footer h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: deeppink;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #ccc;
}

