/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.header {
    background-color: #000;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background-color: #000;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
    line-height: 1.6;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 2rem !important;
}

.download-btn {
    margin-top: 2rem;
}

.download-btn img {
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.download-btn img:hover {
    transform: scale(1.05);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 400px;
    width: 100%;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #111;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.about h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    color: #fff;
}

.about p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
    line-height: 1.6;
}

.about ul {
    list-style: none;
    margin-bottom: 2rem;
}

.about li {
    margin-bottom: 0.8rem;
    color: #ccc;
    line-height: 1.6;
}

.about li strong {
    color: #ff6b35;
}

.about-image img {
    border-radius: 10px;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: #000;
}

.reviews h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.review-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.review-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: #111;
}

.gallery h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.gallery > .container > p {
    color: #ccc;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    /* height: 250px; */
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem 1rem 1rem;
    color: #fff;
    font-weight: 600;
}

/* Recipe Section */
.recipe {
    padding: 80px 0;
    background-color: #000;
}

.recipe h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
    text-align: center;
}

.recipe-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.recipe-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.recipe-step p {
    color: #ccc;
    line-height: 1.6;
}

.recipe-footer {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6b35;
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #111;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
    text-align: center;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact input {
    padding: 1rem;
    border: 2px solid #333;
    border-radius: 5px;
    background-color: #000;
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.contact input:focus {
    outline: none;
    border-color: #ff6b35;
}

.contact input::placeholder {
    color: #666;
}

.contact button {
    padding: 1rem;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact button:hover {
    background-color: #ff6b35;
    color: #fff;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 2rem 0;
    border-top: 1px solid #333;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 2rem;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
  text-decoration: none;
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #ff6b35;
}

.footer-links {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid #333;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .recipe-steps {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-menu {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about, .reviews, .gallery, .recipe, .contact {
        padding: 60px 0;
    }

    .about h2, .reviews h2, .gallery h2, .recipe h2, .contact h2 {
        font-size: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Active nav menu item */
.nav-menu a.active {
    color: #ff6b35;
}

.privacy{
  margin: 63px 0 0;
  padding: 60px 0;
}

.privacy-title {
  font-family: Inter;
font-weight: 600;
font-style: 800;
font-size: clamp(32px,5vw,44px);
line-height: 100%;
letter-spacing: 0%;
margin-bottom: 24px;

}
.privacy-text {
      font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
    line-height: 1.6;
}