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

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            color: #444;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

      
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 60px;
            background-color: #fff;
            border-bottom: 1px solid #e0d5c1;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #3b2f2f;
            letter-spacing: 2px;
        }

        .logo span {
            display: block;
            font-size: 11px;
            text-align: center;
            letter-spacing: 3px;
            color: #8b7355;
        }

        .logo-icon {
            text-align: center;
            font-size: 28px;
            line-height: 1;
        }

         .banner {
            width: 100%;
            height: 350px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-align: center;
            position: relative;
        }

        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .banner h2 {
            position: relative;
            font-size: 42px;
            font-weight: normal;
            font-style: italic;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .banner p {
            position: relative;
            font-size: 18px;
            font-weight: 300;
        }

        /* Different banner images for each section */
        .banner-coffee {
            background-image: url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?w=1600');
        }

        .banner-pastries {
            background-image: url('https://images.unsplash.com/photo-1509440159596-0249088772ff?w=1600');
        }

        .banner-sandwiches {
            background-image: url('https://images.unsplash.com/photo-1528735602780-2552fd46c7af?w=1600');
        }

        .banner-desserts {
            background-image: url('https://images.unsplash.com/photo-1488477181946-6428a0291777?w=1600');
        
        }
      
        .menu-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 40px;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px 50px;
        }

        .menu-item {
            padding-bottom: 20px;
        }

        .menu-item-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #d4c5a9;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }

        .menu-item-header h3 {
            font-size: 18px;
            font-weight: bold;
            color: #3b2f2f;
            font-style: italic;
        }

        .menu-item-header .price {
            font-size: 16px;
            color: #8b7355;
            font-weight: bold;
        }

        .menu-item p {
            font-size: 14px;
            color: #777;
            line-height: 1.8;
        }


.container {
   width: 100% ;
    max-width: 1500px;
    margin: 0 auto ;
    padding: 0  40px ;
    box-sizing: border-box ;
}

footer {
    background-color: #3b3936;
    color: #aaa;
    padding: 60px 0 20px;
    font-family: Arial, sans-serif;
    font-size: 15px;
}

.footer-top {
   display: flex;                
    justify-content: space-between;
    padding: 50px 0;              
    margin-bottom: 30px;
}

.footer-top::after {
    content: "";
    display: table;
    clear: both;
}

.footer-col {
    flex: 1;
    margin-right: 40px;
}

.footer-col.last-col {
    margin-right: 0; 
}

.footer-col h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 25px;;
    text-transform: capitalize;
    padding-left: 0px;
    text-align: left;
}

.footer-col p {
    line-height: 1.8;
}

.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hours-list li {
    padding: 10px 0;
    border-bottom: 1px solid #4a4845;
}

.hours-list li:before {
    content: "› ";
    margin-right: 8px;
    color: #dcb38a;
    font-weight: bold;
}

.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact-list li {
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
    text-align: left;
    padding-top: 20px;
}

.footer-icon {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
    color: #888;
    padding-top: 22px;
}

.icon-red { color: #ff5e6c; }
.icon-blue { color: #5bc0de; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #4a4845;
    padding-top: 20px;
    clear: both;
}

.footer-logo {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.social-icons {
    margin-top: 25px;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: #2b2b2b;
    color: #666;
    border-radius: 50%;
    line-height: 36px;
    text-align: center;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #dcb38a;
    color: #fff;
}

@media (max-width: 768px) {
    .footer-col {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .footer-top {
        flex-direction: column;
        padding: 30px 0;
    }
}
