*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(229, 142, 38, .08), transparent 35%),
        radial-gradient(circle at bottom right, rgba(229, 142, 38, .08), transparent 35%),
        #0b0b0b;
        
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 60px;
    width: 100%;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid #E58E26;
    position: sticky;
    top: 0px;
    z-index: 1000;
}

#logo{
    height: auto;
    width: 180px;
}

nav {
    display: flex;
    gap: 15px;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 20px;
    transition: 0.3s;
}

nav a:hover {
    color: orange;
}

#about {
    border-left: 5px solid #E58E26;
    padding: 80px 8%;
}

.story {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.story-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.story-img {
    flex: 1;
}

.story-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    transition: .4s;
}

.story-img img:hover {
    transform: scale(1.03);
}

.story-text {
    flex: 1;
}

.story-text h2 {
    color: #E58E26;
    font-size: 40px;
    margin-bottom: 20px;
}

.story-text p {
    color: #ddd;
    font-size: 18px;
    line-height: 1.8;
}

@media(max-width:900px) {

    .story-box,
    .story-box.reverse {
        flex-direction: column;
    }

    .story-img img {
        height: 300px;
    }

    .story-text h2 {
        font-size: 30px;
    }
}

#friendly-staff {
    padding: 100px 8%;
    
}

.staff-container {
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 25px;
    display: flex;
    align-items: center;
}

.staff-image,
.staff-content {
    flex: 1;
}

.staff-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(229, 142, 38, 0.25);
}

.staff-content h2 {
    color: #E58E26;
    font-size: 42px;
    margin-bottom: 25px;
}

.staff-content p {
    color: #ddd;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 15px;
}

@media (max-width: 900px) {

    .staff-container {
        flex-direction: column-reverse;
    }

    .staff-image img {
        height: 300px;
    }

    .staff-content h2 {
        font-size: 30px;
    }

}

#catering {
    padding: 100px 8%;
   
}

.catering-heading {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 60px;
}

.catering-heading h2 {
    color: #E58E26;
    font-size: 42px;
    margin-bottom: 20px;
}

.catering-heading p {
    color: #ddd;
    font-size: 18px;
    line-height: 1.8;
}

.catering-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.catering-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: .4s;
}

.catering-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(229, 142, 38, .25);
}

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

.catering-card h3 {
    color: #E58E26;
    padding: 20px 20px 10px;
    font-size: 24px;
}

.catering-card p {
    color: #ddd;
    padding: 0 20px 25px;
    line-height: 1.8;
}

@media(max-width:900px) {

   .catering-cards {
        grid-template-columns: 1fr;
    }

    .catering-heading h2 {
        font-size: 32px;
    }
}

#menu {
    padding: 100px 8%;
}

.menu-heading {
    text-align: center;
    margin-bottom: 50px;
}

.menu-heading h2 {
    color: #E58E26;
    font-size: 42px;
    margin-bottom: 15px;
}

.menu-heading p {
    color: #ddd;
    font-size: 18px;
    line-height: 1.8;
}

.menu-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.menu-gallery img {
    width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
    transition: .4s;
}

.menu-gallery img:hover {
    transform: translateY(-10px);
}

@media(max-width:900px) {

     .menu-heading h2 {
        font-size: 32px;
    }

    .menu-gallery {
        flex-direction: column;
        align-items: center;
    }

    .menu-gallery img {
        width: 90%;
        max-width: 350px;
    }

}

#online-order {
    padding: 100px 8%;
   
    text-align: center;
}

.online-order-content {
    background: linear-gradient(135deg,
            #E58E26,
            #ff6b00);

    padding: 60px;
    border-radius: 30px;
}

.online-order-content h2,
.online-order-content p {
    color: white;
}

.note {
    color: #ffb347;
    font-weight: 600;
}

.order-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: #E58E26;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

.order-btn:hover {
    transform: translateY(-5px);
}

#community {
    padding: 100px 8%;
}

.community-container {
    max-width: 700px;
    margin: auto;
    text-align: center;
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 25px;
}

.community-container h2 {
    color: #25D366;
    font-size: 40px;
    margin-bottom: 20px;
}

.community-container p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 18px;
}

.community-container img {
    width: 220px;
    margin: 30px auto;
    border-radius: 15px;
    background: white;
    padding: 10px;
}

.community-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.community-btn:hover {
    transform: translateY(-5px);
}

#footer {
    background: #000;
    border-top: 2px solid #E58E26;
    margin-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 60px 8%;
    border-top: 1px solid rgba(229, 142, 38, .2);
}

.footer-box {
    padding: 20px;
}

.footer-box h3 {
    color: #E58E26;
    margin-bottom: 20px;
    font-size: 24px;
}

.footer-box p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.copyright p {
    color: #999;
    font-size: 15px;
}

@media(max-width:900px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media(max-width:900px) {

    header {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 16px;
        padding: 8px 12px;
    }
}

img {
    max-width: 100%;
    display: block;
}

.section-title {
    text-align: center;
    color: #E58E26;
    font-size: 48px;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.story-box,
.staff-container,
.menu-container {
    gap: clamp(20px, 5vw, 80px);
}