/* <--- Specials Page ---> */
.specials {
    padding: 60px 20px;
    background-color: #f5f0e8;
}

.specials h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #3e2723; 
}

.specials-section {
    margin-bottom: 60px;
}

.specials-section h2 {
    font-size: 28px;
    color: #3e2723;
    margin-bottom: 20px;
    text-align: center;
}

.specials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.special-item {
    background-color: #fff;
    border-radius: 8px;
    border: 2px solid #d4a373;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #d4a373;
}

.special-info {
    padding: 20px;
    text-align: center;
}

.special-info h3 {
    font-size: 24px;
    color: #3e2723;
    margin-bottom: 10px;
}

.special-info p {
    font-size: 16px;
    color: #6d4c41;
    margin-bottom: 10px;
}

.special-info .price {
    font-size: 20px;
    font-weight: bold;
    color: #3e2723;
}

.special-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}
