body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0d0d0d;
    color: white;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
}

nav h1 {
    margin: 0;
    font-size: 28px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

nav a:hover {
    color: #cccccc;
}

/* HERO */
.hero {
    position: relative;
    height: 500px;
    background-image: url("images/sakura.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* NO BLUR */
.hero::before {
    display: none;
}

/* LIGHT OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* TEXT */
.hero h2 {
    font-size: 90px;
    margin: 0;
    letter-spacing: 4px;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 22px;
    margin-top: 15px;
    text-shadow: 0 0 10px rgba(0,0,0,0.4);
}

/* SEARCH BAR */
.hero input {
    margin-top: 25px;
    padding: 12px 15px;
    width: 280px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
}

/* CATEGORIES */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 40px;
}

.card {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card a {
    text-decoration: none;
    color: white;
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.card h3 {
    padding: 18px;
    margin: 0;
    font-size: 22px;
}

/* HOVER EFFECT */
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* PAGE HEADER */
.page-header {
    text-align: center;
    padding: 60px 20px 30px;
}

.page-header h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.page-header p {
    color: #d0d0d0;
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
}

/* CONTENT PAGES */
.food-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 30px 60px;
}

.food-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #1e1e1e;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 30px;
}

.food-card img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.food-text {
    padding: 20px;
}

.food-text h3 {
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 10px;
}

/* LINK FIX */
.food-text a:link {
    color: white;
    text-decoration: none;
}

.food-text a:visited {
    color: white;
}

.food-text a:hover {
    color: #cccccc;
    text-decoration: underline;
}

.food-text p {
    color: #dddddd;
    line-height: 1.7;
}

.tag {
    display: inline-block;
    background-color: #2a2a2a;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a;
    color: #bdbdbd;
}

/* MOBILE */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        height: 420px;
    }

    .hero h2 {
        font-size: 56px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero input {
        width: 90%;
        max-width: 300px;
    }

    .food-card {
        flex-direction: column;
    }

    .food-card img {
        width: 100%;
        height: 220px;
        border-radius: 0;
    }

    .page-header h2 {
        font-size: 36px;
    }
}


/* CONTACT PAGE */
.contact-page {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.contact-form {
    width: 100%;
    max-width: 500px;
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: #2a2a2a;
    color: white;
    font-size: 16px;
}

.contact-form button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: white;
    color: black;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #cccccc;
}



/* CONTACT PAGE */
.contact-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 60px;
}

.contact-box {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 14px;
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
}

.contact-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-box input,
.contact-box textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: white;
    font-size: 14px;
}

.contact-box input::placeholder,
.contact-box textarea::placeholder {
    color: #aaaaaa;
}

.contact-box button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: white;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-box button:hover {
    background-color: #cccccc;
}

/* CONTACT INFO */
.contact-info {
    text-align: center;
    color: #cccccc;
}

.contact-info h3 {
    margin-bottom: 10px;
}


footer {
    text-align: center;
    padding: 25px;
    background-color: #141414;
    color: #aaaaaa;
    font-size: 14px;
    margin-top: 40px;
    border-top: 1px solid #222;
}


/* NEWSLETTER */
.newsletter {
    margin-top: 30px;
    text-align: center;
    background-color: #1e1e1e;
    padding: 25px;
    border-radius: 14px;
    max-width: 500px;
    width: 100%;
}

.newsletter h3 {
    margin-bottom: 10px;
}

.newsletter p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: white;
    margin-bottom: 10px;
}

.newsletter button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: white;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    background-color: #cccccc;
}