* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Phetsarath OT', Arial, sans-serif;
}

body {
    background-color: #fff9f0;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #ff6b6b;
    color: white;
    text-align: center;
    padding: 2rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/image/Restaurant_2-Kopie-copy-1024x683.jpg');
    background-size: cover;
    background-position: center;
}

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

header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

header p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

nav {
    background-color: #333;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style-type: none;
}

nav li {
    margin: 0;
}

nav a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: #ff6b6b;
}

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

.section-title {
    text-align: center;
    margin: 2rem 0;
    color: #ff6b6b;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff6b6b;
    margin: 10px auto;
}

.food-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.food-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.food-card:hover {
    transform: translateY(-5px);
}

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

.food-card-content {
    padding: 20px;
}

.food-card h3 {
    color: #ff6b6b;
    margin-bottom: 10px;
}

.recipe {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.recipe h3 {
    color: #ff6b6b;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 10px;
}

.recipe-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.recipe-info div {
    background-color: #fff9f0;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.ingredients {
    margin-bottom: 20px;
}

.ingredients h4, .instructions h4 {
    margin-bottom: 10px;
    color: #333;
}

.ingredients ul {
    list-style-position: inside;
    margin-left: 20px;
}

.ingredients li {
    margin-bottom: 5px;
}

.instructions ol {
    list-style-position: inside;
    margin-left: 20px;
}

.instructions li {
    margin-bottom: 10px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links {
    margin: 15px 0;
}

.social-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

@media (min-width: 768px) {
    .food-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .recipe-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .food-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}