
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'poppins',sans-serif;
    line-height: 1.6;
    background-color: #fff8f0;
    color: #333;
}
a {
    text-decoration: none;
    color: inherit;
}
header {
    background-color: #ff6f3c;
    color: #fff;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}
header p {
    font-size: 1rem;
    margin-top: 5px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}
nav ul li a {
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
nav ul li a:hover {
    background-color: #fff;
    color: #ff6f3c;
}
section {
    padding: 60px 50px;
}
section h2 {
    font-size: 2rem;
    color: #ff6f3c;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff6f3c;
    display: inline-block;
    padding-bottom: 5px;
}
section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}
#about ul li {
    margin-bottom: 10px;
    font-weight: 500;
}
.menu-items {
    margin-bottom: 40px;
}
.menu-items h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff6f3c;
}
.menu-items ul {
    list-style: circle;
    padding-left: 20px
}
.menu-items ul li  {
    margin-bottom: 5px;
}
#gallery {
    background-color: #fff0e6;
    padding: 60px 50px;
    display: grid;
    grid-template-columns:
    repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
#gallery  .item {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
#gallery img {
    width: 100%;
    max-width: 220px;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
#gallery img:hover{
    transform: scale(1.05);
}
#gallery h4{
    margin-top: 5px;
    font-size: 1.2rem;
    color: #ff6f3c;
}
#gallery span {
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ff6f3c;
}
#why-us {
    text-align: center;
    background-color: #fff8f0;
    padding: 60px 50px;
}
#why-us p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}
#contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#contact input,
#contact textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}
#contact textarea {
    resize: vertical;
    min-height: 120px;
}
#contact button{
    background-color: #ff6f3c;
    color: #fff;
    border:none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
#contact button:hover {
    background-color: #e65b2f;
    transform: translateY(-2px);
}
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 25px 50px;
    margin-top: 40px;
}
@media (max-width:768px) {
    header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    nav ul{
        flex-direction: column;
        gap: 15px;
    }
    section {
        padding: 40px 20px;
    }
}