* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-image: linear-gradient(rgba(120, 101, 101, 0.548), rgba(0, 0, 0, 0.7)), url(images/231960491_199652678858251_8711298147177512549_n.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center; 
    color: #333; 
}

header {
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: top 0.2s; 
}

.logo {
    max-width: 180px; 
    height: 50px;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2em;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #f9ca24;
}



.header {
    text-align: center;
    padding: 180px;
    color: #fff; 
}

.header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.header p {
    font-style: italic;
    margin-bottom: 15px;
}

.flavors {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.item {
    text-align: center; 
}

.item img {
    width: 100px; 
    height: auto;
    margin-top: 5px; 
}

.flavors span {
    background: #f39c12;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1em;
    font-weight: bold;
    color: #000;
}


.details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px 0;
    padding: 20px;
    background: rgba(51, 51, 51, 0.9); 
    border-radius: 10px;
    color: #fff;
}

.category h2 {
    font-size: 1.8em;
    color: #f39c12;
    margin-bottom: 10px;
}

.category p {
    font-size: 1.2em;
    margin: 8px 0;
    display: flex;
    justify-content: space-between;
    width: 300px;
}

.order {
    text-align: center;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

/* Grid Patterns */
.order::before,
.order::after {
    content: '';
    position: absolute;
    background-image: linear-gradient(to right, #f5b301 1px, transparent 1px), 
                      linear-gradient(to bottom, #f5b301 1px, transparent 1px);
    background-size: 20px 20px;
    width: 150px;
    height: 150px;
    z-index: -1;
}

.order::before {
    top: 20px;
    left: 20px;
}

.order::after {
    bottom: 20px;
    right: 20px;
}

/* Heading */
.order h1 {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
}

/* Image Container */
.order-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.order-options img {
    width: 50px; /* Adjust image size */
    height: 50px;
}


.facebook-btn {
    display: inline-block;
    padding: 25px 30px;
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 15px;
    margin-top: 20px;
    font-weight: bold;
}

.facebook-btn:hover {
    background-color: #0056b3;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
}

.gallery img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.1);
}


footer {
    background: #000;
    text-align: center;
    padding: 10px;
    color: #f39c12;
}