/* Add this meta tag to your HTML head section if not present */
/* <meta name="viewport" content="width=device-width, initial-scale=1.0"> */

@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;500;600&family=Lemon&family=Patua+One&family=Poppins:wght@200;400;500;600;700;800;900&display=swap');
* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    width: 100%;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    background-color: white;
}

/* Navigation */
nav .wrapper {
    position: absolute;
    top: 0;
    min-height: 10vh;
    width: 100%;
    padding: 1rem 0;
}

nav .nav-container {
    width: 100%;
    height: 100%;
    margin: 0 2rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

nav .nav-container img {
    width: 4rem;
}

nav .nav-container .links {
    display: flex;
    gap: 1.5rem;
}

nav .nav-container .links a {
    font-size: 1.1rem;
    color: black;
    text-decoration: none;
    transition: 0.2s linear;
}

nav .nav-container .search {
    width: 20rem;
    height: 2.5rem;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid white;
}

button[data-aos="fade-right"] {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, #ff4444, #c0392b);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Patua One', cursive;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    position: relative;
    overflow: hidden;
}

button[data-aos="fade-right"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.6);
    background: linear-gradient(45deg, #c0392b, #ff4444);
}

button[data-aos="fade-right"]:active {
    transform: translateY(0);
    box-shadow: 0 3px 12px rgba(255, 68, 68, 0.4);
}

button[data-aos="fade-right"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    transition: all 0.5s;
}

button[data-aos="fade-right"]:hover::after {
    left: 100%;
}

/* Optional: Add a food icon */
button[data-aos="fade-right"]::before {
    content: '📥';
    margin-right: 0.8rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    button[data-aos="fade-right"] {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}
/* Sections */
section {
    width: 100%;
    min-height: 100vh;
    padding: 2rem 0;
}

/* Landing Page */
.landingpage {
    background-image: url(images/back.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.landingpage .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.landingpage .content .heading {
    max-width: 40rem;
    text-align: center;
    margin-bottom: 2rem;
}

.landingpage .content .heading h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.2;
    margin: 1rem 0;
}

.landingpage .content .image img {
    max-width: 100%;
    height: auto;
    transform: rotate(40deg);
}

/* About Us */
.aboutus .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

.aboutus .container .aboutus-content {
    color: white;
    max-width: 40rem;
    text-align: center;
}

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

/* Food Details */
.details-foods .title h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    width: 90%;
    margin: 0 auto;
}

.details-foods .foods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.details-foods .foods .card {
    max-width: 20rem;
    width: 100%;
    margin: 1rem;
}

/* Download Section */
.download .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
}

.download .container .content {
    max-width: 40rem;
    text-align: center;
}

.download .container .content h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
}

.download .container .content .icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.download .container .content .icons img {
    max-width: 12rem;
    height: auto;
}

/* Media Queries */
@media (max-width: 768px) {
    nav .nav-container {
        margin: 0 1rem;
        justify-content: center;
        gap: 1rem;
    }

    nav .nav-container .links {
        gap: 1rem;
    }

    nav .nav-container .search {
        width: 100%;
        max-width: 20rem;
    }

    .landingpage .content .image img {
        transform: rotate(30deg);
        max-width: 80%;
    }

    .aboutus .container .aboutus-content h1 {
        font-size: 2.5rem;
    }

    .details-foods .foods .card {
        max-width: 100%;
    }

    .download .container .image img {
        max-width: 15rem;
    }
}

@media (max-width: 480px) {
    nav .nav-container .links a {
        font-size: 0.9rem;
    }

    .landingpage .content .heading button {
        width: 90%;
        max-width: 18rem;
    }

    .aboutus .container .aboutus-content h1 {
        font-size: 2rem;
    }

    .aboutus .container .aboutus-content p {
        font-size: 1.1rem;
    }

    .download .container .content .icons img {
        max-width: 10rem;
    }
}
