*{
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

/* NAVBAR */
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    background-color: rgb(242, 223, 187);
}

.logo{
    font-size:26px;
    font-weight:bold;
}

.logo span{
    color:rgb(130, 92, 23);
}

nav ul{
    list-style:none;
    display:flex;
}

nav ul li{
    margin:0 15px;
}

nav ul li a{
    text-decoration:none;
    color:#333;
    font-weight:500;
}

.btn{
    background:orange;
    color:white;
    border:none;
    padding:12px 22px;
    border-radius:25px;
    cursor:pointer;
}

/* HERO SECTION */

.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:60px;
}

.discount{
    color:orange;
    font-weight:bold;
    margin-bottom:10px;
}

.hero-text h1{
    font-size:64px;
    line-height:1.1;
    color:#333;
}

.shop-btn{
    margin-top:25px;
    background:orange;
    color:white;
    border:none;
    padding:14px 28px;
    font-size:16px;
    border-radius:30px;
    cursor:pointer;
}

.hero-img img{
    width:420px;
}

/* CATEGORY SECTION */


.categories{
    display:flex;
    justify-content:space-around;
    padding:40px 80px;
    text-align:center;
}

.item img{
    width:80px;
}

.item p{
    margin-top:10px;
    font-weight:600;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

/* TOP BAR */


.top-bar{
    background:#d99e31;
    color:#fff;
    display:flex;
    justify-content:space-around;
    padding:20px;
    text-align:center;
}

.info-box h4{
    font-size:18px;
}
.info-box p{
    font-size:13px;
    opacity:0.9;
}

/* PRODUCTS */
.products{
    padding:60px;
    text-align:center;
    background:#f9f9f9;
}

.badge{
    background:#f3c892;
    padding:6px 15px;
    border-radius:20px;
    font-size:12px;
}

.products h2{
    margin:15px 0 40px;
    font-size:32px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(500px,1fr));
    gap:30px;
}

.product-card{
    background:#fff;
    padding:20px;
    border-radius:10px;
    transition:0.5s;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-card img{
    width:100px;
    height:100px;
    object-fit:contain;
}

.product-card h4{
    margin:15px 0 8px;
}

.price{
    color:#c62828;
    font-weight:bold;
}

.price span{
    text-decoration:line-through;
    color:#888;
    font-size:13px;
    margin-left:5px;
}

/* OFFER */
.offer{
    background:#fff3e0;
    padding:80px 40px;
    text-align:center;
}

.offer h3{
    color:#f3b858;
    margin-bottom:10px;
}

.offer h1{
    font-size:36px;
    margin-bottom:20px;
}

.offer h1 span{
    color:#eca64a;
}

.offer button{
    background:#f5a623;
    border:none;
    padding:12px 30px;
    border-radius:25px;
    font-size:16px;
    cursor:pointer;
}
/* LASTEST NEWS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #faf7f2;
}

.blog-section {
    padding: 60px 8%;
    text-align: center;
}

.subtitle {
    color: #d49a6a;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.title {
    font-size: 36px;
    margin-bottom: 50px;
    color: #222;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    padding: 20px;
    text-align: left;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 15px;
}

.date {
    color: #d49a6a;
    font-size: 13px;
    margin-bottom: 8px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #222;
}

.btn {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #d49a6a;
    color: #d49a6a;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn:hover {
    background: #d49a6a;
    color: #fff;
}
/* BOOK OUR RESERVATION */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #faf7f2;
}

/* Reservation Section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #faf7f2;
}

/* Reservation Section */
.reservation-section {
    padding: 70px 8%;
    text-align: center;
    background-image: url(reservation-bg.jpg);
}

.small-title {
    color: #d89b62;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.reservation-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #222;
}

/* Form Box */
.form-box {
    background: #f1f1f1;
    padding: 30px;
    border-radius: 6px;
}

.input-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 14px;
    border: none;
    outline: none;
    font-size: 14px;
}

textarea {
    height: 150px;
    resize: none;
    margin-bottom: 25px;
}

button {
    background: #f2a428;
    border: none;
    padding: 14px 35px;
    color: #fff;
    font: 200px;
} 


.footer {
    background: #7b3f12;
    color: #fff;
    padding: 50px 20px 20px;
    background-image: url(images/footer-bg.svg);
}

.footer-box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 30px;
}

.footer-item {
    text-align: center;
    max-width: 250px;
    margin: 20px;
}

.footer-item h4 {
    margin: 15px 0 10px;
    font-size: 18px;
}

.footer-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #f2e6dc;
}

.icon {
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 22px;
}
.icon{
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 15px;
    font-size: 25px;
}

.footer-bottom p {
    color: #f2e6dc;
}

.footer-bottom .links a {
    color: #fff;
    margin-left: 30px;
    text-decoration: none;
}

.footer-bottom .links a:hover {
    text-decoration: underline;
}