/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #eff7f1d8;
}

/* --- HERO SECTION --- */
.hero {
    /* Background Image setup */
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/c1.jpg'); 
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 1.5rem;
    font-weight: 300;
}

/* --- SECTIONS COMMON --- */
.section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #e74c3c;
    margin: 10px auto 0;
}

/* --- ABOUT SECTION --- */
.about-text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* --- GALLERY SECTION --- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.gallery img:hover {
    transform: scale(1.03);
}

/* --- RESTAURANT SECTION --- */
.food {
    background-color: #fff;
    border-radius: 15px;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.food-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.food-card img {
    flex: 1 1 400px;
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.food-text {
    flex: 1 1 400px;
    padding: 20px;
}

.food-text h3 {
    font-size: 1.8rem;
    color: #d35400;
    margin-bottom: 15px;
}

/* --- MENU GRID --- */
.menu-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.menu-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.menu-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.menu-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background-color: #ddd; /* Image load na huda yo color aaucha */
}

.menu-card p {
    padding: 15px;
    font-weight: bold;
    color: #444;
}

/* --- FOOTER --- */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

/* --- RESPONSIVE (Mobile ko lagi) --- */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .section {
        padding: 40px 15px;
    }
    .food-card {
        flex-direction: column;
    }
}