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

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color:#fff5ee;
    color:#4b2e2e;
}

/* NAVBAR */
.one nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background-color:#8d3d19;
    padding:15px 60px;
}

.logo{
    font-size:26px;
    font-weight:bold;
    color:white;
    text-decoration:none;
}

nav ul{
    display:flex;
    gap:25px;
    list-style:none;
    align-items:center;
}

nav ul li a{
    text-decoration:none;
    color:white;
    font-weight:500;
}

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

/* ORDER BUTTON */
.button{
    padding:8px 18px;
    border:none;
    background:white;
    color:#8d3d19;
    border-radius:6px;
    font-weight:bold;
    cursor:pointer;
}

.button:hover{
    background:#ffe6cc;
}

/* ABOUT SECTION */
.about-container{
    width:90%;
    max-width:1100px;
    margin:70px auto;
    background:#fff8f0;
    padding:40px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.about-container h1{
    text-align:center;
    margin-bottom:35px;
    font-size:36px;
    color:#b34700;
}

/* FLEX LAYOUT */
.about-content{
    display:flex;
    align-items:center;
    gap:40px;
}

/* IMAGE */
.about-image{
    flex:1;
}

.about-img{
    width:100%;
    border-radius:12px;
    box-shadow:0 6px 18px rgba(0,0,0,0.2);
}

/* TEXT */
.about-text{
    flex:1;
}

.about-text p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:18px;
}

.about-text strong{
    color:#8d3d19;
}

/* BUTTON */
.back-btn{
    display:block;
    margin:30px auto 0;
    padding:12px 25px;
    background:#8d3d19;
    border:none;
    color:white;
    font-size:15px;
    border-radius:8px;
    cursor:pointer;
}

.back-btn:hover{
    background:#a4481d;
}

/* FOOTER */
.footer{
    background:#4b2e2e;
    color:white;
    padding:40px 0;
    margin-top:60px;
}

.footer .end{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:30px;
}

.footer h3{
    margin-bottom:12px;
    color:#ffb366;
}

.footer p{
    line-height:1.7;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    margin-bottom:8px;
}

.footer ul li a{
    text-decoration:none;
    color:white;
}

.footer ul li a:hover{
    color:#ffe6cc;
}

/* RESPONSIVE DESIGN */
@media(max-width:900px){

.about-content{
    flex-direction:column;
}

.about-text{
    text-align:center;
}

.footer .end{
    flex-direction:column;
    text-align:center;
}

}