* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    color: #5d5a4f;
    background: linear-gradient(90deg, rgba(229,244,255,1) 0%, rgba(241,218,241,1) 100%);
    line-height: 1.6;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
}

.logo img {
    height: 100px;
}

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

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #b29985;
}

/* Hero Section */
.hero {
    background-image: url('images/headerbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    margin-bottom: 20px;
    font-family: "Spicy Rice", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 7em;
    color: #ffffff;
    
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.2em;
    color: #ffffff;
}

.btn {
    display: inline-block;
    font-size: 1.2em;
    padding: 10px 20px;
    /* background-color: #b29985; */
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #8b786a;
}

/* Featured Items Section */
.featured-items {
    /* background: rgb(229,244,255); */
    background: linear-gradient(90deg, rgba(229,244,255,1) 0%, rgba(241,218,241,1) 100%);
    padding: 40px 5%;
    text-align: center;
}

.featured-items h2 {
    margin-bottom: 40px;
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3em;
    color: #5d5a4f;
}

.specialty-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.specialty-row {
    flex: 1;
    min-width: 300px;
    margin-bottom: 40px;
}

.specialty-row img{
    width: 50%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.specialty-row h3 {
    margin-bottom: 20px;
    color: #b29985;
    font-size: 1.5em;
}

.item {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px auto;
    max-width: 400px;
}

.item img {
    width: 60%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.item h4 {
    margin-bottom: 10px;
    font-family: "Pacifico", cursive;
    font-weight: 550;
    font-style: normal;
    color: #8b6341;
    font-size: 1.3em;
}

.item p {
    font-family: "Abel", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1em;
    color: #5d5a4f;
}

#about {
    text-align: center;
    padding: 20px;
}

#about .h2 {
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#contact {
    text-align: center;
    padding: 20px;
}

#contact .h2{
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Footer Section */
footer {
    color: #5d5a4f;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}




